
/* ============================================================
   === BASE: PRODUTOS / NAVBAR / FOOTER / GERAL ===
   ============================================================ */

/* ===================== BASE ANTI-BUG DE ESPAÇAMENTO ===================== */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

/* Remove comportamento problemático de 100vw */
img, video, svg {
  max-width: 100%;

}

:root {

--primary-green: #002657;

--primary-green-hover: #c57206;

--text-dark: #333333;

--text-light: #777777;

--border-color: #e0e0e0;

--bg-color: #6d7d8341; 

--navy-dark:   #071d31;

--navy:        #0f2d4a;

  --navy-mid:    #1a4165;
  --yellow:      #f5c518;
  --red:         #c0392b;
  --gray-border: #dde3ea;
  --text:        #1a1a2e;
  --blueclar:    #d6711f;
  --blue-accent: #4fc3ff;
}





* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Barlow', sans-serif;
  background: #f4f6f8;
  color: #1a1a2e;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
}



/* Container */

.container{
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}



/* Breadcrumb */

/* ===================== TOPBAR ===================== */
.topbar {
  background: #0B1628;
  border-bottom: 1px solid rgba(0,201,228,0.12);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  position: relative;
  overflow: hidden;
}
.topbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00C9E4, transparent);
  animation: scanline 3s linear infinite;
}
@keyframes scanline {
  0%   { transform: translateX(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}
.topbar-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.topbar-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00C9E4;
  box-shadow: 0 0 6px #00C9E4;
  animation: pulse-dot 2s ease-in-out infinite;
}
.topbar-item .dot.teal { background: #00A896; box-shadow: 0 0 6px #00A896; animation-delay: 0.6s; }
.topbar-item .dot.blue { background: #4A90D9; box-shadow: 0 0 6px #4A90D9; animation-delay: 1.2s; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}
.topbar-item strong { color: #fff; font-weight: 700; }

/* ===================== HEADER ===================== */
.header {
  background: rgba(11,22,40,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0; z-index: 100;
  border-bottom: 1px solid rgba(0,201,228,0.18);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
/* LOGO */
.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0; text-decoration: none;
}
.logo-drop {
  width: 42px; height: 42px;
  position: relative; flex-shrink: 0;
}
.logo-drop svg { width: 100%; height: 100%; }
.logo-drop::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(0,201,228,0.3);
  animation: ring-spin-h 8s linear infinite;
}
@keyframes ring-spin-h {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 23px; font-weight: 700;
  color: #fff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.logo-name em {
  font-style: normal;
  background: linear-gradient(90deg, #00C9E4, #00A896);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-size: 9px; font-weight: 600;
  color: rgba(0,201,228,0.5);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
/* DIVIDER */
.vd {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, transparent, rgba(0,201,228,0.18), transparent);
  flex-shrink: 0;
}
/* NAV */
.header-inner nav { flex: 1; }
.nav { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav a {
  color: rgba(255,255,255,0.55);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  display: flex; align-items: center; gap: 4px;
  transition: color 0.2s, background 0.2s;
  position: relative;
  text-decoration: none;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1.5px;
  background: #00C9E4;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover { color: #fff; background: rgba(0,201,228,0.06); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.active { color: #00C9E4; }
.nav a.active::after { transform: scaleX(1); }
/* SEARCH */
.search-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 0 14px;
  height: 40px; gap: 9px;
  min-width: 200px;
  transition: border-color 0.2s, background 0.2s;
}
.search-wrap:focus-within {
  border-color: rgba(0,201,228,0.45);
  background: rgba(0,201,228,0.04);
}
.search-wrap svg { opacity: 0.35; flex-shrink: 0; }
.search-wrap input {
  background: none; border: none; outline: none;
  color: #fff; font-size: 12.5px; width: 100%;
  font-family: inherit;
}
.search-wrap input::placeholder { color: rgba(255,255,255,0.28); }
/* ACTIONS */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-ghost {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.78); font-size: 12px; font-weight: 700;
  letter-spacing: 0.6px; text-transform: uppercase;
  padding: 9px 14px; border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.1);
  background: none; text-decoration: none;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  cursor: pointer;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
.btn-cart {
  display: flex; align-items: center; gap: 8px;
  color: #0B1628; font-size: 12px; font-weight: 800;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 9px 18px; border-radius: 5px; border: none;
  background: linear-gradient(135deg, #00C9E4, #00A896);
  position: relative; overflow: hidden;
  transition: opacity 0.15s, transform 0.1s;
  cursor: pointer;
}
.btn-cart::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #00A896, #00C9E4);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-cart:hover { transform: translateY(-1px); }
.btn-cart:hover::before { opacity: 1; }
.btn-cart > span { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; }
.btn-cart .cart-badge {
  background: #0B1628; color: #00C9E4;
  font-size: 10px; font-weight: 900;
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  position: static;
}
/* RESPONSIVO HEADER */
@media(max-width:900px){ .search-wrap { min-width: 140px; } }
@media(max-width:768px){
  .header-inner { padding: 0 16px; height: 60px; gap: 12px; }
  .nav { display: none; }
  .search-wrap { display: none; }
  .btn-ghost { display: none; }
  .topbar { gap: 16px; height: auto; min-height: 34px; }
  .topbar-item { font-size: 10px; }
  .topbar-item:nth-child(3) { display: none; }
}




/* GRID PRINCIPAL */

.product-wrapper {

display: grid;

grid-template-columns: 1fr 1fr;

gap: 20px;



align-items: start; /* 🔥 CORREÇÃO PRINCIPAL */

}



/* CARDS */

.card {

background-color: #fff;

border-radius: 8px;

box-shadow: 0 2px 10px rgba(0,0,0,0.05);

padding: 30px;



height: fit-content; /* 🔥 evita esticar */

}



/* GALERIA */

.gallery-container {

display: flex;

gap: 20px;

}



.thumbnails {

display: flex;

flex-direction: column;

gap: 10px;

}



.thumbnail {

width: 60px;

height: 60px;

border: 1px solid var(--border-color);

border-radius: 4px;

cursor: pointer;

object-fit: cover;

transition: 0.2s;

}



.thumbnail:hover,

.thumbnail.active {

border-color: var(--primary-green);

}



/* IMAGEM PRINCIPAL */

.main-image-container {

flex: 1;

width: 100%;

height: 420px;

position: relative;

overflow: hidden;

border-radius: 8px;

background: #fff;

}



/* 🔥 AGORA PREENCHE O QUADRO */

.main-image {

width: 100%;

height: 100%;

object-fit: cover; /* 👈 ESSA LINHA FAZ ENCHER */

transition: transform 0.2s ease;

}



/* ZOOM TEXTO */

.zoom-hint {

position: absolute;

bottom: 10px;

left: 10px;

font-size: 12px;

color: var(--text-light);

}



/* --- SEÇÃO DE DETALHES E PREÇOS (AJUSTADA) --- */

.info-container {
    display: flex;
    flex-direction: column;
    gap: 12px; /* 🔥 Cria um respiro uniforme entre os blocos */
}

.sold-by { 
    font-size: 13px; 
    color: var(--text-light); 
    margin-bottom: 2px;
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin: 0;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

/* Bloco de Preços */
.pricing {
    display: flex;
    flex-direction: column;
    gap: 4px; /* 🔥 Ajusta distância entre preço antigo, novo e parcelas */
    margin: 10px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 14px;
}

.current-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-green);
}

.discount-badge {
    color: var(--text-light);
    font-size: 14px;
    font-weight: normal;
}

.installments {
    font-size: 15px;
    color: var(--text-dark);
}

/* Quantidade */
.quantity-selection {
    display: flex;
    flex-direction: column; /* 🔥 Coloca o texto em cima do seletor */
    gap: 8px;
    margin: 10px 0 20px 0;
}

.quantity-label {
    font-size: 14px;
    color: var(--text-dark);
}

.quantity-controls {
    display: flex;
    width: fit-content;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

/* Botões */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.btn {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #5e35b1; /* Roxo da imagem de referência */
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
}



/* QUANTIDADE */

/* Container de Seleção */
.quantity-selection {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quantity-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Caixa Única de Controles */
.qty-controls-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 160px; /* Largura maior conforme a imagem */
    height: 45px;
    border: 1px solid #e0e0e0; /* Borda cinza clara e fina */
    border-radius: 4px;
    padding: 0 10px;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.qty-btn:hover {
    color: var(--primary-green);
}

.qty-input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    background: transparent;
    outline: none;
    -moz-appearance: textfield; /* Remove setas padrão no Firefox */
}

/* Remove as setas padrão do input number no Chrome/Safari */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* BOTÕES */

.action-buttons {

display: flex;

flex-direction: column;

gap: 15px;

}



.btn {

width: 100%;

padding: 15px;

border-radius: 30px;

font-weight: bold;

cursor: pointer;

}



.btn-buy {

background-color: var(--primary-green);

color: #fff;

border: none;

}



.btn-buy:hover {

background-color: var(--primary-green-hover);

}



.btn-add {

background: #fff;

border: 2px solid var(--primary-green);

color: var(--primary-green);

}



/* WHATS */

.whatsapp-float {

position: fixed;

bottom: 30px;

right: 30px;

background-color: #25d366;

color: white;

width: 60px;

height: 60px;

border-radius: 50%;

display: flex;

justify-content: center;

align-items: center;

}




/* RESPONSIVO */

@media (max-width: 900px) {

.product-wrapper {

grid-template-columns: 1fr;

}

}



/* Container de Descrição */

.lista-padrao {
  list-style: none;
  padding-left: 0;
}

.lista-padrao li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #666;
}

.lista-padrao li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
}

.description-container {

margin-top: 30px;

padding: 0; /* Padding será controlado internamente */

overflow: hidden;

}



/* Título Descrição em Negrito */

.description-header {

padding: 20px 50px;

border-bottom: 1px solid #eee; /* Linha sutil separando o título */

}



.description-header h2 {

font-size: 22px;

font-weight: 700; /* Negrito intenso */

color: #333;

position: relative;

}



/* Conteúdo interno */

.description-content {

padding: 30px 50px 50px 50px;

}



.intro-text {

color: #555;

font-size: 15px;

margin-bottom: 30px;

line-height: 1.8;

}



.info-section {

margin-bottom: 25px;

}



.info-section h3 {

font-size: 16px;

color: #333;

font-weight: 700;

margin-bottom: 12px;

}



.info-section ul {

list-style: none;

padding-left: 0;

}



.info-section ul li {

position: relative;

padding-left: 20px;

color: #666;

font-size: 15px;

margin-bottom: 10px;

line-height: 1.6;

}

/* LISTA TÉCNICA PROFISSIONAL */
.lista-tecnica {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

/* cada item */
.lista-tecnica li {
  counter-increment: item;
  position: relative;

  padding-left: 35px;
  margin-bottom: 14px;

  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* numeração alinhada estilo ABNT */
.lista-tecnica li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;

  font-weight: 700;
  color: #1f4e79; /* azul técnico */
  width: 25px;
  text-align: right;
}

/* título do item */
.lista-tecnica strong {
  color: #2c3e50;
  font-weight: 700;
}

/* dica destacada */
.dica {
  margin-top: 25px;
  padding: 15px 20px;

  background: rgba(0, 174, 255, 0.08);
  border-left: 4px solid #00aeff;

  color: #444;
  line-height: 1.6;
  font-size: 14px;
}


/* Bullet (bolinha) cinza da imagem */

.info-section ul li::before {

content: "";

position: absolute;

left: 0;

top: 8px;

width: 6px;

height: 6px;

background-color: #ccc;

border-radius: 50%;

}



/* Container de Pagamento e Segurança */

.security-container {

margin-top: 20px;

padding: 30px 50px;

}



.security-header {

display: flex;

justify-content: space-between;

align-items: center;

margin-bottom: 25px;

}



.security-title h2 {

font-size: 20px;

font-weight: 700;

color: #333;

}



.security-icon {

font-size: 20px;

color: #333;

}



/* Grade de formas de pagamento */

.payment-methods {

display: flex;

flex-wrap: wrap;

gap: 12px;

margin-bottom: 25px;

}



.method-card {

border: 1px solid #e0e0e0;

border-radius: 6px;

width: 65px;

height: 40px;

display: flex;

align-items: center;

justify-content: center;

background-color: #fff;

}



.method-card img {

max-width: 32px;

height: auto;

}



.method-card i {

font-size: 18px;

color: #555;

margin-right: 4px;

}



.method-card span {

font-size: 10px;

font-weight: bold;

color: #555;

}



/* Texto de segurança */

.security-text {

font-size: 14px;

color: #666;

line-height: 1.6;

}

/* ===== LAYOUT DESCRIÇÃO + PAGAMENTO ===== */
.desc-payment-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

/* Caixa da direita */
.payment-container {
  height: fit-content;
  position: sticky;
  top: 20px;
}

/* título */
.payment-container h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* ícone */
.payment-container .security-icon {
  margin-bottom: 15px;
  display: block;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .desc-payment-wrapper {
    grid-template-columns: 1fr;
  }

  .payment-container {
    position: relative;
  }
}/* ===== LAYOUT DESCRIÇÃO + PAGAMENTO ===== */
.desc-payment-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

/* Caixa da direita */
.payment-container {
  height: fit-content;
  position: sticky;
  top: 20px;
}

/* título */
.payment-container h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* ícone */
.payment-container .security-icon {
  margin-bottom: 15px;
  display: block;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .desc-payment-wrapper {
    grid-template-columns: 1fr;
  }

  .payment-container {
    position: relative;
  }
}



/* ===================== FOOTER LIMPO FINAL ===================== */

/* ===================== FOOTER ===================== */
footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);

  background: linear-gradient(180deg, #0f2736 0%, var(--navy-dark) 100%);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;

  position: relative;
  overflow: hidden;
}

/* glow decorativo premium */
footer::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(58,191,126,0.08);
  filter: blur(120px);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 50px;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}

/* LOGO + DESCRIÇÃO */
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-logo span {
 color: #4fc3ff; 
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

/* TITULOS */
footer h4 {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 8px;
  
}

/* LINKS */
footer ul li {
  margin-bottom: 8px;
  
}

footer ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: 0.2s;
  text-decoration: none;
}

footer ul a:hover {
  color: #4fc3ff;
  padding-left: 4px;
}

/* NEWSLETTER */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 12px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  

  color: #fff;
  font-size: 13px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.newsletter-form button {
  color: #4fc3ff;

  border: none;
  padding: 10px 14px;

  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;

  cursor: pointer;
  transition: 0.2s;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  color: #fff;
  color:  rgba(0, 0, 0, 0.85);
}

/* BOTÃO WHATSAPP OU CONTATO */
.footer-contact {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

/* BOTTOM BAR */
.footer-bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  padding: 16px 24px;

  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===================== REDES SOCIAIS ===================== */

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 10px;

  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;

  text-decoration: none;

  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.social-item span {
  font-size: 16px;
}








/* Ajuste responsivo */

@media (max-width: 600px) {

.security-container {

padding: 20px;

}

.payment-methods {

justify-content: center;

}

}


/* ===== CAIXA FORMAS DE PAGAMENTO ===== */
.payment-box {
  margin-top: 16px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.payment-box-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}
.payment-box-icon {
  background: #27ae60;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.payment-box-icon svg { display: block; }
.payment-box-text { line-height: 1.3; }
.payment-box-text strong {
  display: block;
  font-size: 12px;
  color: #222;
  font-weight: 700;
}
.payment-box-text span {
  font-size: 12px;
  color: #27ae60;
  font-weight: 600;
}
.payment-box-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.payment-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pay-visa       { background:#1a1f71; color:#fff; font-style:italic; font-size:13px; padding:0 10px; }
.pay-master     { background:#eb001b; color:#fff; border-radius:50%; width:24px; height:24px; padding:0; position:relative; overflow:visible; }
.pay-master-wrap{ position:relative; width:36px; height:24px; display:flex; align-items:center; justify-content:center; }
.pay-master-c1  { background:#eb001b; border-radius:50%; width:22px; height:22px; position:absolute; left:0; }
.pay-master-c2  { background:#f79e1b; border-radius:50%; width:22px; height:22px; position:absolute; right:0; opacity:0.9; }
.pay-master-c3  { background:#ff5f00; border-radius:50%; width:14px; height:14px; position:absolute; left:50%; transform:translateX(-50%); }
.pay-amex       { background:#007bc1; color:#fff; font-size:10px; padding: 0 6px; border-radius:3px; }
.pay-elo        { background:#000; color:#ffd700; font-size:11px; border-radius:3px; }
.pay-boleto     { background:#555; color:#fff; font-size:10px; border-radius:3px; }
.pay-pix        { background:#32bcad; border-radius:4px; display:flex; align-items:center; justify-content:center; width:36px; height:24px; }


/* ===================== HAMBURGER ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
  z-index: 201;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.28s ease;
}
.hamburger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media(max-width:768px){ .hamburger{ display:flex; } }

/* Drawer mobile */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(7,29,49,0.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-drawer a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-drawer a:hover{ color: #4fc3ff; }
.mobile-drawer-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* ===================== MP CHECKOUT MODAL ===================== */
.mp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(5px);
}
.mp-overlay.is-open{ display: flex; }

.mp-modal {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  overflow: hidden;
  animation: mpIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes mpIn{
  from{ opacity:0; transform:translateY(40px) scale(0.96); }
  to  { opacity:1; transform:translateY(0)    scale(1);    }
}
.mp-head {
  background: linear-gradient(135deg,#00b800 0%,#007a00 100%);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.mp-head-title{ font-size:15px; font-weight:700; }
.mp-head-sub  { font-size:11px; opacity:0.75; margin-top:2px; }
.mp-close {
  background:none; border:none; color:#fff; font-size:20px;
  cursor:pointer; opacity:0.75; padding:0; line-height:1;
}
.mp-close:hover{ opacity:1; }

.mp-summary {
  display:flex; align-items:center; gap:14px;
  padding:14px 22px;
  background:#f7fafd;
  border-bottom:1px solid #edf0f3;
}
.mp-summary img{
  width:58px; height:58px; object-fit:cover;
  border-radius:10px; border:1px solid #e8ecf0;
}
.mp-sum-name { font-size:14px; font-weight:700; color:#1a1a2e; }
.mp-sum-price{ font-size:22px; font-weight:800; color:#00913a; line-height:1.2; }
.mp-sum-parc { font-size:11px; color:#888; margin-top:2px; }

.mp-options{ padding:14px 22px; display:flex; flex-direction:column; gap:9px; }
.mp-option-label{ font-size:11px; font-weight:700; color:#999; text-transform:uppercase; letter-spacing:.5px; margin-bottom:4px; }

.mp-opt {
  display:flex; align-items:center; gap:14px;
  padding:13px 16px;
  border:1.5px solid #e4e8ee;
  border-radius:12px;
  background:#fff;
  text-decoration:none;
  color:#222;
  font-weight:600;
  font-size:14px;
  transition: border-color .18s, background .18s, transform .1s;
  cursor:pointer;
}
.mp-opt:hover{ border-color:#00b800; background:#f0fff4; transform:translateY(-1px); }
.mp-opt.primary{ background:#00b800; border-color:#00b800; color:#fff; }
.mp-opt.primary:hover{ background:#009500; border-color:#009500; }
.mp-opt-icon {
  width:38px; height:38px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:18px; flex-shrink:0;
}
.mp-opt.primary .mp-opt-icon{ background:rgba(255,255,255,.2); }
.mp-opt:not(.primary) .mp-opt-icon.c-blue  { background:#e8fff0; color:#00913a; }
.mp-opt:not(.primary) .mp-opt-icon.c-green { background:#e6faf7; color:#00b89c; }
.mp-opt:not(.primary) .mp-opt-icon.c-gray  { background:#f2f2f2; color:#555; }
.mp-opt:not(.primary) .mp-opt-icon.c-wa    { background:#e7fbe9; }
.mp-opt-info{ flex:1; }
.mp-opt-info small{ display:block; font-size:11px; font-weight:400; color:inherit; opacity:.7; margin-top:2px; }
.mp-opt.primary .mp-opt-info small{ color:#fff; }
.mp-opt-arrow{ font-size:18px; opacity:.4; }
.mp-separator{
  text-align:center; font-size:11px; color:#bbb;
  text-transform:uppercase; letter-spacing:.5px;
  position:relative; margin:2px 0;
}
.mp-separator::before,.mp-separator::after{
  content:''; position:absolute; top:50%; width:30%; height:1px; background:#f0f0f0;
}
.mp-separator::before{ left:0; }
.mp-separator::after{ right:0; }

.mp-foot{
  padding:10px 22px 18px;
  text-align:center;
  font-size:11px; color:#bbb;
  border-top:1px solid #f0f0f0;
}

/* ===================== TRUST BADGES ===================== */
.trust-row {
  display:flex; flex-wrap:wrap; gap:10px 16px;
  margin-top:14px;
}
.trust-item {
  display:flex; align-items:center; gap:5px;
  font-size:11px; color:#666;
}
.trust-item i{ color:#27ae60; font-size:12px; }

/* ===================== BREADCRUMB ===================== */
.breadcrumb{
  font-size:12px; color:#999;
  padding: 12px 0 0;
  margin-bottom:2px;
}
.breadcrumb a{ color:#999; text-decoration:none; }
.breadcrumb a:hover{ color:var(--primary-green); }
.breadcrumb span{ margin:0 5px; }

/* ===================== ZOOM TEXT ===================== */
.zoom-text{
  position:absolute; bottom:8px; left:50%; transform:translateX(-50%);
  background:rgba(0,0,0,.5); color:#fff; font-size:11px;
  padding:3px 10px; border-radius:20px; white-space:nowrap; pointer-events:none;
}

/* ===================== RESPONSIVE PRODUCT ===================== */
@media(max-width:600px){
  .description-content{ padding:20px 16px; }
  .description-header { padding:16px; }
  .trust-row{ gap:8px; }
  .payment-box{ flex-direction:column; align-items:flex-start; }
}


/* ===================== TABELAS TÉCNICAS ===================== */

.tabela-section {
  margin-top: 35px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: #fff;
}

.tech-table th,
.tech-table td {
  border: 2px solid #222;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.tech-table th {
  background: #f3f3f3;
  font-weight: 700;
  color: #111;
}

.tech-table td strong {
  color: #111;
}

.tech-table tr:nth-child(even) {
  background: #fafafa;
}

/* RESPONSIVO */
@media(max-width:768px){

  .tech-table th,
  .tech-table td{
    font-size: 13px;
    padding: 8px 10px;
  }

}

/* ============================================================
   === INDEX: PÁGINA INICIAL ===
   ============================================================ */

/* =====================================================
   ESTILO.CSS — Folha de estilos da loja
   Importado pelo index.html via <link rel="stylesheet">
   ===================================================== */

/* ===================== VARIÁVEIS DE COR ===================== */
:root {
  --navy:        #0f2d4a;   /* Azul marinho principal */
  --navy-dark:   #071d31;   /* Azul marinho escuro (topbar, footer) */
  --navy-mid:    #1a4165;   /* Azul marinho médio */
  --yellow:      #f5c518;   /* Amarelo (estrelas) */
  --red:         #c0392b;   /* Vermelho (badges de desconto) */
  --bgcolor:     #6d7d8341;  /* Fundo geral da página antigo #01324641;;#01324641;  */
  --gray-border: #dde3ea;   /* Bordas e divisores */
  --text:        #1a1a2e;   /* Texto principal */
  --text-muted:  #5a6475;   /* Texto secundário / suave */
  --white:       #ffffff;
  --blueclar:    #d6711f;    /* Botao de Compra / suave */
}

/* ===================== RESET BÁSICO ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
/* body reset — unified above */
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ================= HERO FINAL LIMPO ================= */

.tech-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 50px;

  background: url('imagensprodutos/banner1.png') no-repeat right center;
  background-size: cover;
}

/* OVERLAY ESCURO PROFISSIONAL */
.tech-hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(7,29,49,1) 0%,
    rgba(7,29,49,0.95) 40%,
    rgba(7,29,49,0.75) 60%,
    rgba(7,29,49,0.35) 75%,
    transparent 100%
  );

  z-index: 1;
}

/* GLOW SUAVE */
.tech-hero::after {
  content: '';
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;

  background: radial-gradient(circle, rgba(79,195,255,0.15), transparent 70%);
  filter: blur(60px);

  z-index: 1;
}

/* CANVAS */
#bgCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.45;
}

/* CONTEÚDO (AGORA CORRETO) */
.tech-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;

  margin-left: 80px;
  margin-right: auto;

  padding: 100px 24px;
}

/* TEXTO */
.tech-hero .hero-text {
  max-width: 520px;
}

/* BADGE */
.tech-hero .hero-badge {
  color: #4fc3ff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
}

/* TÍTULO */
.tech-hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* TEXTO */
.tech-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}

/* BOTÕES */
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BOTÃO */
.btn-cta {
  background: linear-gradient(135deg, #4fc3ff, #2a8ed6);
  color: #071d31;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  font-weight: 800;
  transition: 0.25s;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79,195,255,0.4);
}

/* RESOLVA AGORA */
.btn-resolva {
  background: linear-gradient(135deg, #ff6b35, #e63946);
  color: #fff;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  font-weight: 800;
  letter-spacing: 1px;
  transition: 0.25s;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
}
.btn-resolva:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230,57,70,0.45);
  color: #fff;
}

/* OUTLINE */
.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 16px 32px;
  border-radius: 6px;
  background: transparent;
}

.btn-outline:hover {
  border-color: #4fc3ff;
  color: #4fc3ff;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .tech-hero .hero-inner {
    margin-left: 20px;
  }

  .tech-hero h1 {
    font-size: 36px;
  }
}


/* ===================== SEÇÕES GENÉRICAS ===================== */
.section { max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
.section-white { background: var(--white); }
.section-white .section { padding-top: 40px; padding-bottom: 40px; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 8px;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: linear-gradient(135deg, #4fc3ff, #2a8ed6);
  border-radius: 2px;
}
.ver-tudo {
  font-size: 13px;
  color: var(--navy-mid);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding-bottom: 1px;
  transition: color 0.15s;
}
.ver-tudo:hover { color: #4fc3ff; }

/* ===================== CATEGORIAS ===================== */

.categorias {
  display: block;
  margin-top: 60px;
  padding: 0 24px;
}

/* TÍTULO */
.cat-title {
  position: relative;
  display: block;

  max-width: 1100px;
  margin: 0 auto 25px;
  padding-left: 10px;

  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #071d31;
}

/* LINHA AZUL */
.cat-title::after {
  content: '';
  position: absolute;

  left: 10px;
  bottom: -8px;

  width: 60px;
  height: 3px;

  background: #4fc3ff;
  border-radius: 2px;
}

/* CONTAINER */
.categorias-container {
  display: flex;
  gap: 25px;

  max-width: 1100px;
  margin: 0 auto;

  overflow-x: auto;
  scroll-behavior: smooth;

  padding: 20px 10px;
}

.categorias-container::-webkit-scrollbar {
  display: none;
}

/* ITEM */
.categoria-item {
  min-width: 120px;
  text-align: center;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
  cursor: grab;
}

/* IMAGEM */
.categoria-item img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  transition: 0.3s;
}

/* HOVER */
.categoria-item:hover img {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.categoria-item:hover span {
  color: #4fc3ff;
}

/* TEXTO */
.categoria-item span {
  display: block;
  margin-top: 10px;

  font-size: 12px;
  font-weight: 700;

  color: #222;
  text-transform: uppercase;

  letter-spacing: 0.4px;
  line-height: 1.3;

  max-width: 110px;
  margin-left: auto;
  margin-right: auto;

  transition: 0.3s;
}


/* ===================== GRID DE PRODUTOS ===================== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prod-card {
  cursor: pointer;

}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.prod-btn {
  position: relative;
  z-index: 2;
}
.prod-card:hover { box-shadow: 0 6px 24px rgba(15,45,74,0.12); transform: translateY(-2px); }

.prod-badge {
  position: absolute;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  z-index: 2;
}
.prod-badge.new { background: var(--green-dark); }

.prod-img-box {
  height: 240px;
  background: var(--gray-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aab4c0;
  font-size: 12px;
  gap: 8px;
  border-bottom: 1px solid var(--gray-border);
}
.prod-body   { padding: 14px; }
.prod-name   { font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.45; min-height: 38px; }
.prod-prices { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.prod-price  { font-size: 25px; font-weight: 800; color: var(--navy); }
.prod-old    { font-size: 12px; color: #aaa; text-decoration: line-through; }
.prod-parcel { font-size: 11px; color: var(--text-muted); margin-bottom: 10px; }

.prod-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--navy);
  color: #fff;
  padding: 10px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
}
.prod-btn:hover { background: var(--blueclar); }

/* ===================== BANNER MEIO PROMOÇÃO ===================== */
.banner-meio {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  position: relative;
  overflow: hidden;

  /* IMAGEM DE FUNDO (troque pela sua) */
  background: url("bannerprom/bannermeio.png") center/cover no-repeat;

  background-attachment: fixed; /* efeito parallax simples */
}

/* overlay escuro + verde premium */
.banner-meio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(5, 15, 25, 0.9),
    rgba(0, 174, 255, 0.35)
  );
  z-index: 1;
}

/* blur decorativo moderno */
.banner-meio::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  right: -120px;
  bottom: -120px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 1;
}

.banner-meio-inner {
  max-width: 750px;
  padding: 20px;

  position: relative;
  z-index: 2;

  /* glass effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.banner-meio h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.banner-meio p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 22px;
}

/* botão premium */
.btn-navy {
  background: #0093a6;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-navy:hover {
  transform: translateY(-2px);
  background: #001329;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
/* ===================== DEPOIMENTOS ===================== */
.depoimentos-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);

  padding: 70px 0;
  position: relative;
  overflow: hidden;

  /* IMAGEM DE FUNDO COM PARALLAX */
  background-image: url("bannerprom/banner.png"); /* TROQUE AQUI */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* PARALLAX */
}

/* OVERLAY ESCURO (melhora leitura) */
.depoimentos-wrap::after {
  content: '';
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    rgba(5, 15, 25, 0.9),
    rgba(0, 174, 255, 0.35)
  );

  z-index: 1;
}

/* brilho decorativo (mantido) */
.depoimentos-wrap::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0, 27, 68, 0.2);
  filter: blur(120px);
  top: -200px;
  left: -200px;
  border-radius: 50%;
  z-index: 1;
}

/* CONTEÚDO (CAIXAS) FICA NA FRENTE */
.depoimentos-wrap > * {
  position: relative;
  z-index: 2;
}

.dep-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.dep-title span { color: #4fc3ff; }

.deps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* CARD PREMIUM */
.dep-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.dep-card:hover {
  transform: translateY(-6px);
  border-color: rgb(0, 189, 247);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* glow sutil no hover */
.dep-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(58,191,126,0.12), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.dep-card:hover::after {
  opacity: 1;
}

.dep-stars {
  color: #ffd700;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.dep-text {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 16px;
}

.dep-author {
  font-size: 13px;
  font-weight: 700;
  color: #4fc3ff ;
}

.dep-date {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .deps-grid {
    grid-template-columns: 1fr;
  }
}



/* ===================== TRUST RODAPÉ ===================== */
/* ===================== TRUST RODAPÉ ===================== */
.foot-trust {
  width: 100vw;
  margin-left: calc(-50vw + 50%);

  color: #fff;
  position: relative;
  overflow: hidden;

  /* IMAGEM PARALLAX */
  background-image: url("bannerprom/banner.png"); /* TROQUE AQUI */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* OVERLAY */
.foot-trust::after {
  content: '';
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(10, 25, 35, 0.95),
    rgba(0, 174, 255, 0.25)
  );

  z-index: 1;
}

/* GLOW */
.foot-trust::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(58,191,126,0.12);
  filter: blur(120px);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  z-index: 1;
}

/* CONTEÚDO NA FRENTE */
.foot-trust > * {
  position: relative;
  z-index: 2;
}

.foot-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  justify-content: center;
  gap: 0;
  
}

.ft-item {
  flex: 1;
  max-width: 300px;
  padding: 18px;
  text-align: center;

  font-size: 12px;
  color: #ffffff;

  transition: 0.2s;
}

.ft-item:hover {
  transform: translateY(-3px);
}

.ft-item strong {
  display: block;
  font-size: 14px;
  color: #ffffff;
  font-weight: 800;
  margin: 6px 0;
}

.ft-icon {
  font-size: 28px;
  opacity: 0.9;
}

/* RESPONSIVO */
@media (max-width: 560px) {
  .foot-trust-inner {
    flex-wrap: wrap;
  }

  .ft-item {
    max-width: 50%;
    flex: 1 1 50%;
    padding: 14px;
  }
}

.smart-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 120px 20px;
  position: relative;

  background-image: url("bannerprom/banner.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* OVERLAY ESCURO */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

/* CAIXA AZUL MARINHO */
.box {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  padding: 50px;
  border-radius: 25px;

  background: rgba(15, 23, 42, 0.95); /* azul marinho */
  backdrop-filter: blur(15px);

  box-shadow: 0 20px 60px rgba(0,0,0,0.6);

  text-align: center;
  color: white;
}

/* HEADLINE */
.box h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.box h2 span {
  color: #22c55e;
}

.sub {
  color: #94a3b8;
  margin-bottom: 40px;
}

/* ESCOLHAS */
.choices {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.choice {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 28px;
}

.choice span {
  font-size: 14px;
  margin-top: 8px;
}

.choice:hover {
  background: #22c55e;
  transform: translateY(-8px) scale(1.05);
}

/* RESULTADO */
.result h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.result p {
  color: #cbd5e1;
  margin-bottom: 20px;
}

/* BOTÃO */
.cta {
  padding: 14px 30px;
  border: none;
  border-radius: 12px;
  background: #22c55e;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.cta:hover {
  background: #16a34a;
  transform: scale(1.05);
}

/* BENEFÍCIOS */
.benefits {
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.item {
  font-size: 26px;
  opacity: 0.8;
  transition: 0.3s;
}

.item p {
  font-size: 14px;
  margin-top: 8px;
}

.item:hover {
  opacity: 1;
  transform: translateY(-5px);
}

/* ===================== FOOTER ===================== */
footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);

  background: linear-gradient(180deg, #0f2736 0%, var(--navy-dark) 100%);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;

  position: relative;
  overflow: hidden;
}

/* glow decorativo premium */
footer::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(58,191,126,0.08);
  filter: blur(120px);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 50px;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}

/* LOGO + DESCRIÇÃO */
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-logo span {
 color: #4fc3ff; 
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

/* TITULOS */
footer h4 {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 8px;
  
}

/* LINKS */
footer ul li {
  margin-bottom: 8px;
  
}

footer ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: 0.2s;
  text-decoration: none;
}

footer ul a:hover {
  color: #4fc3ff;
  padding-left: 4px;
}

/* NEWSLETTER */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 12px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  

  color: #fff;
  font-size: 13px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.newsletter-form button {
  color: #4fc3ff;

  border: none;
  padding: 10px 14px;

  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;

  cursor: pointer;
  transition: 0.2s;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  color: #fff;
  color:  rgba(0, 0, 0, 0.85);
}

/* BOTÃO WHATSAPP OU CONTATO */
.footer-contact {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

/* BOTTOM BAR */
.footer-bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  padding: 16px 24px;

  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===================== REDES SOCIAIS ===================== */

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 10px;

  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;

  text-decoration: none;

  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.social-item span {
  font-size: 16px;
}

.social-item:hover {
  transform: translateX(4px);
  border-color: rgba(79,195,255,0.35);
  background: rgba(79,195,255,0.08);
  color: #4fc3ff;
  box-shadow: 0 0 18px rgba(79,195,255,0.12);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* ===================== WHATSAPP FLUTUANTE ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;

  width: 58px;
  height: 58px;

  background: linear-gradient(145deg, #25d366, #1ebd5a);
  color: #fff;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;

  box-shadow: 0 10px 30px rgba(37,211,102,0.35);

  z-index: 999;

  transition: all 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 15px 40px rgba(37,211,102,0.5);
}


/* ===================== CARROSSEL LINHA COMPLETA ===================== */

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-track .prod-card {
  flex: 0 0 calc((100% - 54px) / 4);   /* 4 visíveis por padrão */
  min-width: 220px;
  background: #e4e9ef;
  border: 1px solid var(--gray-border, #e4e9ef);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Botões de seta */
.carousel-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--navy, #0f2d4a);
  background: #fff;
  color: var(--navy, #0f2d4a);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  z-index: 2;
}
.carousel-btn:hover:not(:disabled) {
  background: var(--navy, #0f2d4a);
  color: #fff;
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Dots indicadores */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #c8d4df;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: var(--navy, #0f2d4a);
  transform: scale(1.25);
}

/* Responsivo */
@media (max-width: 1100px) {
  .carousel-track .prod-card {
    flex: 0 0 calc((100% - 36px) / 3);
  }
}
@media (max-width: 768px) {
  .carousel-track .prod-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }
  .carousel-btn { width: 34px; height: 34px; font-size: 15px; }
}
@media (max-width: 480px) {
  .carousel-track .prod-card {
    flex: 0 0 80%;
  }
}

/* ===================== DIAGNÓSTICO INTERATIVO ===================== */

.diag-box {
  max-width: 980px !important;
  padding: 48px 44px !important;
}

/* Badge de etapa */
.diag-badge {
  display: inline-block;
  background: rgba(79,195,255,0.15);
  border: 1px solid rgba(79,195,255,0.35);
  color: #4fc3ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.diag-badge-green {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.4);
  color: #22c55e;
}

/* Passo oculto */
.hidden { display: none !important; }

/* Grid de escolhas */
.diag-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.diag-choice {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 16px 18px;
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: center;
}
.diag-choice:hover,
.diag-choice.selected {
  background: rgba(34,197,94,0.12);
  border-color: #22c55e;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.15);
}
.diag-choice-icon {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1;
}
.diag-choice-label {
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 5px;
}
.diag-choice-desc {
  font-size: 11.5px;
  color: #94a3b8;
  line-height: 1.4;
}

/* Botão voltar */
.diag-back {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 18px;
  display: block;
  padding: 0;
  transition: color 0.2s;
}
.diag-back:hover { color: #4fc3ff; }

/* Card de resultado */
.diag-result-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(34,197,94,0.25);
  border-radius: 20px;
  padding: 28px 28px;
  margin: 24px 0 20px;
  text-align: left;
  animation: fadeSlideUp 0.4s ease;
}
@keyframes fadeSlideUp {
  from { opacity:0; transform: translateY(16px); }
  to   { opacity:1; transform: translateY(0);     }
}

.diag-result-img-wrap {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.diag-result-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.diag-result-info { flex: 1; }

.diag-result-match {
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.diag-result-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.diag-result-problem {
  font-size: 12.5px;
  color: #4fc3ff;
  margin-bottom: 10px;
  font-weight: 600;
}
.diag-result-how {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 16px;
}
.diag-result-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.diag-result-price {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}
.diag-result-old {
  font-size: 14px;
  color: #64748b;
  text-decoration: line-through;
}
.diag-result-parcel {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 18px;
}
.diag-result-btn {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(34,197,94,0.3);
}
.diag-result-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.4);
}

/* Reiniciar */
.diag-restart {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: #94a3b8;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 28px;
}
.diag-restart:hover {
  border-color: #4fc3ff;
  color: #4fc3ff;
}

/* Barra de progresso */
.diag-progress-wrap {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  margin: 28px 0 0;
  overflow: hidden;
}
.diag-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #4fc3ff);
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* Responsivo */
@media (max-width: 768px) {
  .diag-choices { grid-template-columns: repeat(2, 1fr); }
  .diag-result-card { flex-direction: column; align-items: center; text-align: center; }
  .diag-result-prices { justify-content: center; }
  .diag-box { padding: 28px 18px !important; }
}
@media (max-width: 480px) {
  .diag-choices { grid-template-columns: 1fr 1fr; gap: 10px; }
  .diag-choice-desc { display: none; }
}

/* ===================== NAVBAR (index) ===================== */
.navbar {
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.navbar-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  text-decoration: none;
}
.navbar-logo span { color: var(--blue-accent); }

.navbar-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.navbar-links a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  text-decoration: none;
}
.navbar-links a:hover { color: var(--blue-accent); }

/* ── hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
  z-index: 201;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.28s ease;
}
.hamburger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed; inset: 0;
  background: rgba(7,29,49,0.97);
  z-index: 200;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer.is-open { opacity:1; pointer-events:all; }
.mobile-drawer a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px; font-weight: 700;
  color: #fff; text-decoration: none;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-drawer a:hover { color: #4fc3ff; }
.mobile-drawer-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none;
  color: rgba(255,255,255,0.6); font-size: 28px;
  cursor: pointer; line-height: 1;
}

/* TOPBAR */
.topbar{
  background: #071d31;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  text-align: center;
  padding: 6px 24px;
  letter-spacing: 0.4px;
}



@media(max-width:768px){
  .navbar{ padding: 0 16px; height: 60px; }
  .navbar-logo{ font-size:22px; }
  .navbar-links{ display:none; }
  .hamburger{ display:flex; }
  .topbar{ font-size:10px; padding:5px 10px; }
}

/* ===================== PRODUTOS GRID (sem carrossel) ===================== */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 24px;
}
@media(max-width:1100px){ .produtos-grid{ grid-template-columns: repeat(3,1fr); } }
@media(max-width:680px) { .produtos-grid{ grid-template-columns: repeat(2,1fr); } }
@media(max-width:420px) { .produtos-grid{ grid-template-columns: 1fr 1fr; gap:12px; } }


/* ── Botão Adicionar ao Carrinho nos cards da Linha Completa ── */
.prod-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 8px;
  padding: 9px 12px;
  background: #092953;
  color: var(----blueclar, #ffffff);
  border: 1.5px solid var(----blueclar, #ffffff);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.1s;
  white-space: nowrap;
}
.prod-btn-cart:hover {
  background: var(--blueclar, #4fc3ff);
  color: #fff;
  transform: translateY(-1px);
}
.prod-btn-cart.added {
  background: var(--blueclar, #d6711f);
  color: #fff;
  border-color: var(--blueclar, #d6711f);
}

/* ============================================================
   === CARRINHO: DRAWER / PÁGINA / BADGE ===
   ============================================================ */

/* ============================================================
   SMART PROTECTIO — CART SYSTEM STYLES
   ============================================================ */

/* ── Ícone do carrinho na navbar ── */
.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  margin-right: 4px;
}
.cart-icon-btn:hover { color: #4fc3ff; }

.cart-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #e74c3c;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  border: 2px solid #0a2540;
  animation: badgePop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.cart-badge.visible { display: flex; }

@keyframes badgePop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* ── Overlay ── */
.sp-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.sp-cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Drawer ── */
.sp-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: #fff;
  z-index: 401;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.sp-cart-drawer.open {
  transform: translateX(0);
}

/* Drawer header */
.sp-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #0a2540;
  color: #fff;
  flex-shrink: 0;
}
.sp-cart-head-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.sp-cart-head-title i { color: #4fc3ff; }
.sp-cart-count-lbl {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 2px;
}
.sp-cart-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.sp-cart-close:hover { color: #fff; }

/* Drawer body — scrollable items */
.sp-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}
.sp-cart-body::-webkit-scrollbar { width: 4px; }
.sp-cart-body::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

/* Empty state */
.sp-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 14px;
  padding: 40px 20px;
  text-align: center;
}
.sp-cart-empty-icon { font-size: 56px; opacity: 0.3; }
.sp-cart-empty p { font-size: 15px; color: #888; margin: 0; }
.sp-cart-empty-cta {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 24px;
  background: #27ae60;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.sp-cart-empty-cta:hover { background: #1e8449; }

/* Cart item */
.sp-cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
  transition: background 0.15s;
}
.sp-cart-item:hover { background: #fafafa; }
.sp-cart-item:last-child { border-bottom: none; }

.sp-ci-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eee;
  flex-shrink: 0;
}
.sp-ci-info { flex: 1; min-width: 0; }
.sp-ci-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-ci-unit {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}
.sp-ci-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sp-ci-subtotal {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a2e;
}
.sp-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.sp-qty-btn {
  width: 30px;
  height: 30px;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-qty-btn:hover { background: #e8e8e8; }
.sp-qty-val {
  width: 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  line-height: 30px;
}
.sp-ci-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 15px;
  padding: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.sp-ci-remove:hover { color: #e74c3c; }

/* Drawer footer */
.sp-cart-foot {
  padding: 16px 20px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  background: #fff;
}

/* Frete progress bar */
.sp-ship-bar {
  margin-bottom: 14px;
}
.sp-ship-msg {
  font-size: 12px;
  color: #555;
  margin-bottom: 6px;
  text-align: center;
}
.sp-ship-msg strong { color: #27ae60; }
.sp-ship-track {
  height: 5px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
}
.sp-ship-fill {
  height: 100%;
  background: linear-gradient(90deg, #27ae60, #4fc3ff);
  border-radius: 5px;
  transition: width 0.4s ease;
}
.sp-ship-free {
  font-size: 13px;
  font-weight: 600;
  color: #27ae60;
  text-align: center;
  padding: 8px;
  background: #eafaf1;
  border-radius: 8px;
  margin-bottom: 14px;
}

/* Subtotal row */
.sp-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.sp-total-row span { font-size: 14px; color: #666; }
.sp-total-row strong { font-size: 20px; font-weight: 800; color: #1a1a2e; }

/* Botões do drawer */
.sp-btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0f2d4a, #0f2d4a);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
  margin-bottom: 10px;
  box-sizing: border-box;
  text-align: center;
}
.sp-btn-checkout:hover { opacity: 0.92; transform: translateY(-1px); color: #fff; }

.sp-btn-continue {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  padding: 6px;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}
.sp-btn-continue:hover { color: #27ae60; }

/* ============================================================
   PÁGINA DO CARRINHO (carrinho.html)
   ============================================================ */
.cart-page-wrap {
  max-width: 1100px;
  margin: 30px auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}
@media(max-width:860px){ .cart-page-wrap{ grid-template-columns:1fr; } }

.cart-page-hero {
  background: linear-gradient(135deg, #0a2540, #154360);
  color: #fff;
  padding: 40px 20px 50px;
  text-align: center;
}
.cart-page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem,5vw,2.8rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
}

.cart-page-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.cart-page-card-head {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0a2540;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-page-card-head i { color: #27ae60; }

/* Page item */
.cp-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid #f7f7f7;
  align-items: center;
}
.cp-item:last-child { border-bottom: none; }
.cp-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eee;
  flex-shrink: 0;
}
.cp-item-info { flex: 1; }
.cp-item-name { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.cp-item-unit { font-size: 12px; color: #999; margin-bottom: 10px; }
.cp-item-bot {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cp-item-subtotal { font-size: 17px; font-weight: 800; color: #1a1a2e; margin-left: auto; }
.cp-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 16px;
  padding: 4px 8px;
  transition: color 0.2s;
  border-radius: 6px;
}
.cp-remove:hover { color: #e74c3c; background: #fff0f0; }

/* Summary card */
.cart-summary-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 22px;
  position: sticky;
  top: 80px;
}
.cart-summary-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a2540;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}
.cs-row.total {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
  border-top: 2px solid #eee;
  padding-top: 12px;
  margin-top: 4px;
}
.cs-frete-free { color: #27ae60; font-weight: 600; }
.cs-frete-calc { color: #888; font-size: 12px; }
.cs-ship-progress {
  margin: 12px 0;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 10px 14px;
}
.cs-ship-progress p { font-size: 12px; color: #666; margin: 0 0 6px; }
.cs-ship-progress p strong { color: #27ae60; }

.cart-summary-card .sp-ship-track { margin-top: 4px; }

.btn-finalizar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #0f2d4a, #0f2d4a);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 16px;
  transition: opacity 0.2s;
  box-sizing: border-box;
}
.btn-finalizar:hover { opacity: 0.9; }

.btn-continuar-pg {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: #888;
  text-decoration: none;
}
.btn-continuar-pg:hover { color: #27ae60; }

.cart-empty-page {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  grid-column: 1 / -1;
}
.cart-empty-page .icon { font-size: 64px; opacity: 0.25; margin-bottom: 16px; }
.cart-empty-page h2 { font-size: 22px; color: #555; margin-bottom: 10px; }
.cart-empty-page p { color: #888; margin-bottom: 24px; }

/* MP modal no cart */
.cp-mp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 600;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(5px);
}
.cp-mp-overlay.open { display: flex; }

@media(max-width:480px){
  .sp-cart-drawer { width: 100vw; }
  .cp-item-bot { flex-wrap: wrap; }
  .cp-item-subtotal { margin-left: 0; }
}

/* ============================================================
   === POLÍTICAS / SOBRE NÓS / TEXTOS INSTITUCIONAIS ===
   ============================================================ */

/* =====================================================
   POLITICAS.CSS — Folha de estilos das páginas legais
   Smart Protectio
   ===================================================== */

:root {
  --navy:        #0f2d4a;
  --navy-dark:   #071d31;
  --navy-mid:    #1a4165;
  --yellow:      #f5c518;
  --red:         #c0392b;
  --bgcolor:     #f0f4f8;
  --gray-border: #dde3ea;
  --text:        #1a1a2e;
  --text-muted:  #5a6475;
  --white:       #ffffff;
  --blueclar:    #d6711f;
  --blue-accent: #4fc3ff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Barlow', sans-serif; background: var(--bgcolor); color: var(--text); font-size: 15px; line-height: 1.7; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  text-align: center;
  padding: 6px 24px;
  letter-spacing: 0.5px;
}

/* ===================== NAVBAR ===================== */
.navbar {
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.navbar-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.navbar-logo span { color: var(--blue-accent); }

.navbar-links {
  display: flex;
  gap: 28px;
}

.navbar-links a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.navbar-links a:hover { color: var(--blue-accent); }

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 70px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,195,255,0.08), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-hero .breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: var(--blue-accent);
}

.page-hero .breadcrumb a:hover { text-decoration: underline; }

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.page-hero .subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

/* ===================== CONTEÚDO ===================== */
.policy-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.policy-card {
  background: var(--white);
  border-radius: 12px;
  padding: 48px 52px;
  box-shadow: 0 4px 24px rgba(15,45,74,0.08);
  border: 1px solid var(--gray-border);
}

.policy-update {
  display: inline-block;
  background: rgba(79,195,255,0.1);
  color: var(--navy);
  border: 1px solid rgba(79,195,255,0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.policy-section {
  margin-bottom: 36px;
}

.policy-section:last-child { margin-bottom: 0; }

.policy-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section h2 .icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.policy-section p {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.8;
}

.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul {
  list-style: none;
  margin: 12px 0;
}

.policy-section ul li {
  color: var(--text-muted);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.7;
}

.policy-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-accent);
  font-weight: 700;
}

.policy-section strong {
  color: var(--navy);
}

/* INFO BOX */
.info-box {
  background: linear-gradient(135deg, rgba(15,45,74,0.04), rgba(26,65,101,0.06));
  border: 1px solid rgba(79,195,255,0.2);
  border-left: 4px solid var(--blue-accent);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 18px 0;
}

.info-box p {
  color: var(--navy) !important;
  font-size: 14px;
  margin: 0 !important;
}

/* ALERT BOX */
.alert-box {
  background: rgba(214,113,31,0.06);
  border: 1px solid rgba(214,113,31,0.25);
  border-left: 4px solid var(--blueclar);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 18px 0;
}

.alert-box p {
  color: #7a4010 !important;
  font-size: 14px;
  margin: 0 !important;
}

/* TABLE */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}

.policy-table th {
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 13px;
}

.policy-table th:first-child { border-radius: 8px 0 0 0; }
.policy-table th:last-child  { border-radius: 0 8px 0 0; }

.policy-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-border);
  color: var(--text-muted);
}

.policy-table tr:nth-child(even) td { background: rgba(15,45,74,0.02); }
.policy-table tr:last-child td { border-bottom: none; }

/* DIVIDER */
.policy-divider {
  border: none;
  border-top: 1px solid var(--gray-border);
  margin: 36px 0;
}

/* CONTACT BLOCK */
.contact-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 10px;
  padding: 28px 32px;
  margin-top: 24px;
}

.contact-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.contact-block p {
  color: rgba(255,255,255,0.75) !important;
  font-size: 14px;
  margin-bottom: 6px !important;
}

.contact-block a {
  color: var(--blue-accent);
}

/* ===================== FOOTER ===================== */
footer {
  background: linear-gradient(180deg, #0f2736 0%, var(--navy-dark) 100%);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(58,191,126,0.08);
  filter: blur(120px);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--blue-accent); }

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

footer ul { list-style: none; }

footer ul li { margin-bottom: 8px; }

footer ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

footer ul li a:hover { color: var(--blue-accent); }

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 13px;
  font-family: 'Barlow', sans-serif;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-form button {
  background: linear-gradient(135deg, var(--blue-accent), #2a8ed6);
  color: #071d31;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .policy-card { padding: 28px 20px; }
  .page-hero h1 { font-size: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .navbar { padding: 0 20px; }
  .navbar-links { display: none; }
}

/* ============================================================
   === LOGIN ===
   ============================================================ */

/* =====================================================
   LOGIN.CSS — Estilos completos e independentes da página de login
   Não depende de nenhum outro CSS externo
   ===================================================== */

/* ===================== VARIÁVEIS DE COR ===================== */
:root {
  --navy:        #0f2d4a;
  --navy-dark:   #071d31;
  --navy-mid:    #1a4165;
  --yellow:      #f5c518;
  --red:         #c0392b;
  --bgcolor:     #6d7d8341;
  --gray-border: #dde3ea;
  --gray-bg:     #f4f6f8;
  --text:        #1a1a2e;
  --text-muted:  #5a6475;
  --white:       #ffffff;
  --green:       #3abf7e;
  --green-dark:  #28a865;
  --green-light: rgba(58,191,126,0.1);
  --blueclar:    #d6711f;
}

/* ===================== RESET BÁSICO ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
/* body reset — unified above */
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  text-align: center;
  padding: 8px 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* ===================== HEADER ===================== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.logo span { color: var(--green); }

.nav {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.nav a:hover { color: var(--navy-mid); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-actions a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.cart-btn {
  background: var(--navy);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}
.cart-btn:hover { background: var(--navy-mid); }
.active-link { color: var(--green) !important; }

/* ── FUNDO DA PÁGINA ─────────────────────────────────── */
.login-main {
  min-height: calc(100vh - 130px);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px 32px;
  position: relative;
  overflow: hidden;
}

.login-main::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,191,126,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.login-main::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,191,126,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── CARD CENTRAL ────────────────────────────────────── */
.login-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 40px 32px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  position: relative;
  z-index: 1;
}

/* ── MARCA DENTRO DO CARD ────────────────────────────── */
.login-brand {
  text-align: center;
  margin-bottom: 28px;
}
.login-brand .logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
}
.login-brand .logo span { color: var(--green); }
.login-brand-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── ABAS ────────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: 0;
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 28px;
}
.tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.3px;
}
.tab.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.tab:hover:not(.active) { color: var(--navy); }

/* ── PAINÉIS DAS ABAS ────────────────────────────────── */
.tab-panel        { display: none; }
.tab-panel.active { display: block; }

/* ── FORMULÁRIO ──────────────────────────────────────── */
.auth-form { display: flex; flex-direction: column; gap: 0; }

.field-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.field-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field-group input {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: 7px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.field-group input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,191,126,0.15);
}
.field-group input.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.field-group input.ok { border-color: var(--green-dark); }

.input-eye {
  position: relative;
  display: flex;
  align-items: center;
}
.input-eye input {
  flex: 1;
  padding-right: 44px;
}
.eye-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.eye-btn:hover { opacity: 1; }

.fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-error {
  font-size: 12px;
  color: var(--red);
  margin-top: 4px;
  min-height: 16px;
  display: block;
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.link-btn {
  background: none;
  border: none;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--navy-mid);
  cursor: pointer;
  font-weight: 600;
  padding: 0;
  transition: color 0.15s;
}
.link-btn:hover { color: var(--green-dark); }

.link-inline {
  color: var(--navy-mid);
  font-weight: 600;
  text-decoration: underline;
}
.link-inline:hover { color: var(--green-dark); }

/* ── BARRA DE FORÇA DA SENHA ─────────────────────────── */
.strength-bar {
  height: 4px;
  background: var(--gray-border);
  border-radius: 4px;
  margin-top: 8px;
  overflow: hidden;
}
.strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: width 0.3s, background 0.3s;
}
.strength-label {
  font-size: 11px;
  margin-top: 4px;
  font-weight: 600;
  display: block;
}

/* ── BOTÃO PRINCIPAL ─────────────────────────────────── */
.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 4px;
}
.btn-submit:hover   { background: var(--green-dark); }
.btn-submit:active  { transform: scale(0.98); }
.btn-submit.loading { opacity: 0.7; pointer-events: none; }

/* ── DIVISOR "ou" ────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 12px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-border);
}

/* ── BOTÕES SOCIAIS ──────────────────────────────────── */
.social-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1.5px solid var(--gray-border);
  border-radius: 7px;
  background: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-social:hover {
  border-color: var(--navy-mid);
  background: var(--gray-bg);
}

/* ── RODAPÉ DO FORM ──────────────────────────────────── */
.form-footer-text {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ── PAINEL RECUPERAR SENHA ──────────────────────────── */
.recuperar-header { margin-bottom: 20px; }
.back-btn {
  background: none;
  border: none;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
  display: inline-block;
  transition: color 0.15s;
}
.back-btn:hover { color: var(--navy); }
.recuperar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.recuperar-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── MENSAGEM DE SUCESSO ─────────────────────────────── */
.success-msg {
  text-align: center;
  padding: 24px 16px;
  background: var(--green-light);
  border: 1px solid rgba(58,191,126,0.3);
  border-radius: 10px;
  margin-top: 16px;
}
.success-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.success-msg strong { display: block; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.success-msg p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }

/* ── BENEFÍCIOS ABAIXO DO CARD ───────────────────────── */
.login-benefits {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.benefit-item span { font-size: 16px; }

/* ── FOOTER MINI ─────────────────────────────────────── */
.footer-mini {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 14px 24px;
}
.footer-mini-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-mini-links { display: flex; gap: 16px; }
.footer-mini-links a {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  transition: color 0.15s;
}
.footer-mini-links a:hover { color: var(--green); }

/* ── RESPONSIVO ──────────────────────────────────────── */
@media (max-width: 520px) {
  .login-card     { padding: 28px 20px 24px; }
  .fields-row     { grid-template-columns: 1fr; }
  .social-btns    { grid-template-columns: 1fr; }
  .login-benefits { gap: 12px; }
  .form-row       { flex-direction: column; align-items: flex-start; gap: 8px; }
  .topbar         { gap: 12px; font-size: 11px; }
  .nav            { display: none; }
}

/* ============================================================
   === SMART CONCRETO (específico) ===
   ============================================================ */

/* ===================== BASE ANTI-BUG DE ESPAÇAMENTO ===================== */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

/* Remove comportamento problemático de 100vw */
img, video, svg {
  max-width: 100%;

}

:root {

--primary-green: #002657;

--primary-green-hover: #c57206;

--text-dark: #333333;

--text-light: #777777;

--border-color: #e0e0e0;

--bg-color: #6d7d8341; 


}



* {

box-sizing: border-box;

margin: 0;

padding: 0;



}



body {

background-color: var(--bg-color);

color: var(--text-dark);

padding: 20px;

}



/* Container */

.container {

max-width: 1200px;

margin: 0 auto;

}



/* Breadcrumb */

.breadcrumb {

font-size: 13px;

color: var(--text-light);

margin-bottom: 20px;

}

.breadcrumb a {

color: var(--text-light);

text-decoration: none;

}

.breadcrumb a:hover {

text-decoration: underline;

}



/* GRID PRINCIPAL */

.product-wrapper {

display: grid;

grid-template-columns: 1fr 1fr;

gap: 20px;



align-items: start; /* 🔥 CORREÇÃO PRINCIPAL */

}



/* CARDS */

.card {

background-color: #fff;

border-radius: 8px;

box-shadow: 0 2px 10px rgba(0,0,0,0.05);

padding: 30px;



height: fit-content; /* 🔥 evita esticar */

}



/* GALERIA */

.gallery-container {

display: flex;

gap: 20px;

}



.thumbnails {

display: flex;

flex-direction: column;

gap: 10px;

}



.thumbnail {

width: 60px;

height: 60px;

border: 1px solid var(--border-color);

border-radius: 4px;

cursor: pointer;

object-fit: cover;

transition: 0.2s;

}



.thumbnail:hover,

.thumbnail.active {

border-color: var(--primary-green);

}



/* IMAGEM PRINCIPAL */

.main-image-container {

flex: 1;

width: 100%;

height: 420px;

position: relative;

overflow: hidden;

border-radius: 8px;

background: #fff;

}



/* 🔥 AGORA PREENCHE O QUADRO */

.main-image {

width: 100%;

height: 100%;

object-fit: cover; /* 👈 ESSA LINHA FAZ ENCHER */

transition: transform 0.2s ease;

}



/* ZOOM TEXTO */

.zoom-hint {

position: absolute;

bottom: 10px;

left: 10px;

font-size: 12px;

color: var(--text-light);

}



/* --- SEÇÃO DE DETALHES E PREÇOS (AJUSTADA) --- */

.info-container {
    display: flex;
    flex-direction: column;
    gap: 12px; /* 🔥 Cria um respiro uniforme entre os blocos */
}

.sold-by { 
    font-size: 13px; 
    color: var(--text-light); 
    margin-bottom: 2px;
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin: 0;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

/* Bloco de Preços */
.pricing {
    display: flex;
    flex-direction: column;
    gap: 4px; /* 🔥 Ajusta distância entre preço antigo, novo e parcelas */
    margin: 10px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 14px;
}

.current-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-green);
}

.discount-badge {
    color: var(--text-light);
    font-size: 14px;
    font-weight: normal;
}

.installments {
    font-size: 15px;
    color: var(--text-dark);
}

/* Quantidade */
.quantity-selection {
    display: flex;
    flex-direction: column; /* 🔥 Coloca o texto em cima do seletor */
    gap: 8px;
    margin: 10px 0 20px 0;
}

.quantity-label {
    font-size: 14px;
    color: var(--text-dark);
}

.quantity-controls {
    display: flex;
    width: fit-content;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

/* Botões */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.btn {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #5e35b1; /* Roxo da imagem de referência */
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
}



/* QUANTIDADE */

/* Container de Seleção */
.quantity-selection {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quantity-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Caixa Única de Controles */
.qty-controls-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 160px; /* Largura maior conforme a imagem */
    height: 45px;
    border: 1px solid #e0e0e0; /* Borda cinza clara e fina */
    border-radius: 4px;
    padding: 0 10px;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.qty-btn:hover {
    color: var(--primary-green);
}

.qty-input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    background: transparent;
    outline: none;
    -moz-appearance: textfield; /* Remove setas padrão no Firefox */
}

/* Remove as setas padrão do input number no Chrome/Safari */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* BOTÕES */

.action-buttons {

display: flex;

flex-direction: column;

gap: 15px;

}



.btn {

width: 100%;

padding: 15px;

border-radius: 30px;

font-weight: bold;

cursor: pointer;

}



.btn-buy {

background-color: var(--primary-green);

color: #fff;

border: none;

}



.btn-buy:hover {

background-color: var(--primary-green-hover);

}



.btn-add {

background: #fff;

border: 2px solid var(--primary-green);

color: var(--primary-green);

}



/* WHATS */

.whatsapp-float {

position: fixed;

bottom: 30px;

right: 30px;

background-color: #25d366;

color: white;

width: 60px;

height: 60px;

border-radius: 50%;

display: flex;

justify-content: center;

align-items: center;

}



/* RESPONSIVO */

@media (max-width: 900px) {

.product-wrapper {

grid-template-columns: 1fr;

}

}



/* Container de Descrição */

.lista-padrao {
  list-style: none;
  padding-left: 0;
}

.lista-padrao li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #666;
}

.lista-padrao li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
}

.description-container {

margin-top: 30px;

padding: 0; /* Padding será controlado internamente */

overflow: hidden;

}



/* Título Descrição em Negrito */

.description-header {

padding: 20px 50px;

border-bottom: 1px solid #eee; /* Linha sutil separando o título */

}



.description-header h2 {

font-size: 22px;

font-weight: 700; /* Negrito intenso */

color: #333;

position: relative;

}



/* Conteúdo interno */

.description-content {

padding: 30px 50px 50px 50px;

}



.intro-text {

color: #555;

font-size: 15px;

margin-bottom: 30px;

line-height: 1.8;

}



.info-section {

margin-bottom: 25px;

}



.info-section h3 {

font-size: 16px;

color: #333;

font-weight: 700;

margin-bottom: 12px;

}



.info-section ul {

list-style: none;

padding-left: 0;

}



.info-section ul li {

position: relative;

padding-left: 20px;

color: #666;

font-size: 15px;

margin-bottom: 10px;

line-height: 1.6;

}

/* LISTA TÉCNICA PROFISSIONAL */
.lista-tecnica {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

/* cada item */
.lista-tecnica li {
  counter-increment: item;
  position: relative;

  padding-left: 35px;
  margin-bottom: 14px;

  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* numeração alinhada estilo ABNT */
.lista-tecnica li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;

  font-weight: 700;
  color: #1f4e79; /* azul técnico */
  width: 25px;
  text-align: right;
}

/* título do item */
.lista-tecnica strong {
  color: #2c3e50;
  font-weight: 700;
}

/* dica destacada */
.dica {
  margin-top: 25px;
  padding: 15px 20px;

  background: rgba(0, 174, 255, 0.08);
  border-left: 4px solid #00aeff;

  color: #444;
  line-height: 1.6;
  font-size: 14px;
}


/* Bullet (bolinha) cinza da imagem */

.info-section ul li::before {

content: "";

position: absolute;

left: 0;

top: 8px;

width: 6px;

height: 6px;

background-color: #ccc;

border-radius: 50%;

}



/* Container de Pagamento e Segurança */

.security-container {

margin-top: 20px;

padding: 30px 50px;

}



.security-header {

display: flex;

justify-content: space-between;

align-items: center;

margin-bottom: 25px;

}



.security-title h2 {

font-size: 20px;

font-weight: 700;

color: #333;

}



.security-icon {

font-size: 20px;

color: #333;

}



/* Grade de formas de pagamento */

.payment-methods {

display: flex;

flex-wrap: wrap;

gap: 12px;

margin-bottom: 25px;

}



.method-card {

border: 1px solid #e0e0e0;

border-radius: 6px;

width: 65px;

height: 40px;

display: flex;

align-items: center;

justify-content: center;

background-color: #fff;

}



.method-card img {

max-width: 32px;

height: auto;

}



.method-card i {

font-size: 18px;

color: #555;

margin-right: 4px;

}



.method-card span {

font-size: 10px;

font-weight: bold;

color: #555;

}



/* Texto de segurança */

.security-text {

font-size: 14px;

color: #666;

line-height: 1.6;

}


/* Container de Pagamento e Segurança */

.security-container {

margin-top: 20px;

padding: 30px 50px;

}



.security-header {

display: flex;

justify-content: space-between;

align-items: center;

margin-bottom: 25px;

}



.security-title h2 {

font-size: 20px;

font-weight: 700;

color: #333;

}



.security-icon {

font-size: 20px;

color: #333;

}



/* Grade de formas de pagamento */

.payment-methods {

display: flex;

flex-wrap: wrap;

gap: 12px;

margin-bottom: 25px;

}



.method-card {

border: 1px solid #e0e0e0;

border-radius: 6px;

width: 65px;

height: 40px;

display: flex;

align-items: center;

justify-content: center;

background-color: #fff;

}



.method-card img {

max-width: 32px;

height: auto;

}



.method-card i {

font-size: 18px;

color: #555;

margin-right: 4px;

}



.method-card span {

font-size: 10px;

font-weight: bold;

color: #555;

}



/* Texto de segurança */

.security-text {

font-size: 14px;

color: #666;

line-height: 1.6;

}

/* ===================== FOOTER LIMPO FINAL ===================== */





/* Ajuste responsivo */

@media (max-width: 600px) {

.security-container {

padding: 20px;

}

.payment-methods {

justify-content: center;

}

}

/* ============================================================
   === SMART SUPERFICIE (específico) ===
   ============================================================ */

/* ===================== BASE ANTI-BUG DE ESPAÇAMENTO ===================== */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

/* Remove comportamento problemático de 100vw */
img, video, svg {
  max-width: 100%;

}

:root {

--primary-green: #002657;

--primary-green-hover: #c57206;

--text-dark: #333333;

--text-light: #777777;

--border-color: #e0e0e0;

--bg-color: #6d7d8341; 


}



* {

box-sizing: border-box;

margin: 0;

padding: 0;



}



body {

background-color: var(--bg-color);

color: var(--text-dark);

padding: 20px;

}



/* Container */

.container {

max-width: 1200px;

margin: 0 auto;

}



/* Breadcrumb */

.breadcrumb {

font-size: 13px;

color: var(--text-light);

margin-bottom: 20px;

}

.breadcrumb a {

color: var(--text-light);

text-decoration: none;

}

.breadcrumb a:hover {

text-decoration: underline;

}



/* GRID PRINCIPAL */

.product-wrapper {

display: grid;

grid-template-columns: 1fr 1fr;

gap: 20px;



align-items: start; /* 🔥 CORREÇÃO PRINCIPAL */

}



/* CARDS */

.card {

background-color: #fff;

border-radius: 8px;

box-shadow: 0 2px 10px rgba(0,0,0,0.05);

padding: 30px;



height: fit-content; /* 🔥 evita esticar */

}



/* GALERIA */

.gallery-container {

display: flex;

gap: 20px;

}



.thumbnails {

display: flex;

flex-direction: column;

gap: 10px;

}



.thumbnail {

width: 60px;

height: 60px;

border: 1px solid var(--border-color);

border-radius: 4px;

cursor: pointer;

object-fit: cover;

transition: 0.2s;

}



.thumbnail:hover,

.thumbnail.active {

border-color: var(--primary-green);

}



/* IMAGEM PRINCIPAL */

.main-image-container {

flex: 1;

width: 100%;

height: 420px;

position: relative;

overflow: hidden;

border-radius: 8px;

background: #fff;

}



/* 🔥 AGORA PREENCHE O QUADRO */

.main-image {

width: 100%;

height: 100%;

object-fit: cover; /* 👈 ESSA LINHA FAZ ENCHER */

transition: transform 0.2s ease;

}



/* ZOOM TEXTO */

.zoom-hint {

position: absolute;

bottom: 10px;

left: 10px;

font-size: 12px;

color: var(--text-light);

}



/* --- SEÇÃO DE DETALHES E PREÇOS (AJUSTADA) --- */

.info-container {
    display: flex;
    flex-direction: column;
    gap: 12px; /* 🔥 Cria um respiro uniforme entre os blocos */
}

.sold-by { 
    font-size: 13px; 
    color: var(--text-light); 
    margin-bottom: 2px;
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin: 0;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

/* Bloco de Preços */
.pricing {
    display: flex;
    flex-direction: column;
    gap: 4px; /* 🔥 Ajusta distância entre preço antigo, novo e parcelas */
    margin: 10px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 14px;
}

.current-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-green);
}

.discount-badge {
    color: var(--text-light);
    font-size: 14px;
    font-weight: normal;
}

.installments {
    font-size: 15px;
    color: var(--text-dark);
}

/* Quantidade */
.quantity-selection {
    display: flex;
    flex-direction: column; /* 🔥 Coloca o texto em cima do seletor */
    gap: 8px;
    margin: 10px 0 20px 0;
}

.quantity-label {
    font-size: 14px;
    color: var(--text-dark);
}

.quantity-controls {
    display: flex;
    width: fit-content;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

/* Botões */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.btn {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #5e35b1; /* Roxo da imagem de referência */
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
}



/* QUANTIDADE */

/* Container de Seleção */
.quantity-selection {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quantity-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Caixa Única de Controles */
.qty-controls-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 160px; /* Largura maior conforme a imagem */
    height: 45px;
    border: 1px solid #e0e0e0; /* Borda cinza clara e fina */
    border-radius: 4px;
    padding: 0 10px;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.qty-btn:hover {
    color: var(--primary-green);
}

.qty-input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    background: transparent;
    outline: none;
    -moz-appearance: textfield; /* Remove setas padrão no Firefox */
}

/* Remove as setas padrão do input number no Chrome/Safari */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* BOTÕES */

.action-buttons {

display: flex;

flex-direction: column;

gap: 15px;

}



.btn {

width: 100%;

padding: 15px;

border-radius: 30px;

font-weight: bold;

cursor: pointer;

}



.btn-buy {

background-color: var(--primary-green);

color: #fff;

border: none;

}



.btn-buy:hover {

background-color: var(--primary-green-hover);

}



.btn-add {

background: #fff;

border: 2px solid var(--primary-green);

color: var(--primary-green);

}



/* WHATS */

.whatsapp-float {

position: fixed;

bottom: 30px;

right: 30px;

background-color: #25d366;

color: white;

width: 60px;

height: 60px;

border-radius: 50%;

display: flex;

justify-content: center;

align-items: center;

}



/* RESPONSIVO */

@media (max-width: 900px) {

.product-wrapper {

grid-template-columns: 1fr;

}

}



/* Container de Descrição */

.lista-padrao {
  list-style: none;
  padding-left: 0;
}

.lista-padrao li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #666;
}

.lista-padrao li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
}

.description-container {

margin-top: 30px;

padding: 0; /* Padding será controlado internamente */

overflow: hidden;

}



/* Título Descrição em Negrito */

.description-header {

padding: 20px 50px;

border-bottom: 1px solid #eee; /* Linha sutil separando o título */

}



.description-header h2 {

font-size: 22px;

font-weight: 700; /* Negrito intenso */

color: #333;

position: relative;

}



/* Conteúdo interno */

.description-content {

padding: 30px 50px 50px 50px;

}



.intro-text {

color: #555;

font-size: 15px;

margin-bottom: 30px;

line-height: 1.8;

}



.info-section {

margin-bottom: 25px;

}



.info-section h3 {

font-size: 16px;

color: #333;

font-weight: 700;

margin-bottom: 12px;

}



.info-section ul {

list-style: none;

padding-left: 0;

}



.info-section ul li {

position: relative;

padding-left: 20px;

color: #666;

font-size: 15px;

margin-bottom: 10px;

line-height: 1.6;

}

/* LISTA TÉCNICA PROFISSIONAL */
.lista-tecnica {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

/* cada item */
.lista-tecnica li {
  counter-increment: item;
  position: relative;

  padding-left: 35px;
  margin-bottom: 14px;

  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* numeração alinhada estilo ABNT */
.lista-tecnica li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;

  font-weight: 700;
  color: #1f4e79; /* azul técnico */
  width: 25px;
  text-align: right;
}

/* título do item */
.lista-tecnica strong {
  color: #2c3e50;
  font-weight: 700;
}

/* dica destacada */
.dica {
  margin-top: 25px;
  padding: 15px 20px;

  background: rgba(0, 174, 255, 0.08);
  border-left: 4px solid #00aeff;

  color: #444;
  line-height: 1.6;
  font-size: 14px;
}


/* Bullet (bolinha) cinza da imagem */

.info-section ul li::before {

content: "";

position: absolute;

left: 0;

top: 8px;

width: 6px;

height: 6px;

background-color: #ccc;

border-radius: 50%;

}



/* Container de Pagamento e Segurança */

.security-container {

margin-top: 20px;

padding: 30px 50px;

}



.security-header {

display: flex;

justify-content: space-between;

align-items: center;

margin-bottom: 25px;

}



.security-title h2 {

font-size: 20px;

font-weight: 700;

color: #333;

}



.security-icon {

font-size: 20px;

color: #333;

}



/* Grade de formas de pagamento */

.payment-methods {

display: flex;

flex-wrap: wrap;

gap: 12px;

margin-bottom: 25px;

}



.method-card {

border: 1px solid #e0e0e0;

border-radius: 6px;

width: 65px;

height: 40px;

display: flex;

align-items: center;

justify-content: center;

background-color: #fff;

}



.method-card img {

max-width: 32px;

height: auto;

}



.method-card i {

font-size: 18px;

color: #555;

margin-right: 4px;

}



.method-card span {

font-size: 10px;

font-weight: bold;

color: #555;

}



/* Texto de segurança */

.security-text {

font-size: 14px;

color: #666;

line-height: 1.6;

}


/* Container de Pagamento e Segurança */

.security-container {

margin-top: 20px;

padding: 30px 50px;

}



.security-header {

display: flex;

justify-content: space-between;

align-items: center;

margin-bottom: 25px;

}



.security-title h2 {

font-size: 20px;

font-weight: 700;

color: #333;

}



.security-icon {

font-size: 20px;

color: #333;

}



/* Grade de formas de pagamento */

.payment-methods {

display: flex;

flex-wrap: wrap;

gap: 12px;

margin-bottom: 25px;

}



.method-card {

border: 1px solid #e0e0e0;

border-radius: 6px;

width: 65px;

height: 40px;

display: flex;

align-items: center;

justify-content: center;

background-color: #fff;

}



.method-card img {

max-width: 32px;

height: auto;

}



.method-card i {

font-size: 18px;

color: #555;

margin-right: 4px;

}



.method-card span {

font-size: 10px;

font-weight: bold;

color: #555;

}



/* Texto de segurança */

.security-text {

font-size: 14px;

color: #666;

line-height: 1.6;

}

/* ===================== FOOTER LIMPO FINAL ===================== */





/* Ajuste responsivo */

@media (max-width: 600px) {

.security-container {

padding: 20px;

}

.payment-methods {

justify-content: center;

}

}

/* ============================================================
   CATEGORIAS — SEÇÃO RESPONSIVA
   ============================================================ */
.categorias-section {
  padding: 56px 24px;
  background: #fff;
  text-align: center;
}
.categorias-section .sec-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4fc3ff;
  margin-bottom: 8px;
}
.categorias-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #0a2540;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.categorias-section .sec-sub {
  font-size: 15px;
  color: #6b7a8d;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1100px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f7f9fc;
  border: 1.5px solid #e8edf3;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10,37,64,0.13);
  border-color: #4fc3ff;
}
.cat-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eef2f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.07); }
.cat-label {
  padding: 12px 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0a2540;
  text-align: center;
  line-height: 1.3;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-card.all-card {
  background: linear-gradient(135deg, #0a2540, #1a5276);
  border-color: transparent;
}
.cat-card.all-card .cat-img-wrap { background: rgba(255,255,255,0.08); }
.cat-card.all-card .cat-label { color: #fff; font-size: 14px; }
.cat-card.all-card:hover { box-shadow: 0 12px 32px rgba(10,37,64,0.3); border-color: #4fc3ff; }
.cat-all-icon { font-size: 36px; opacity: 0.9; }

@media (max-width: 640px) {
  .cat-label { font-size: 11px; padding: 10px 8px; }
  .categorias-section { padding: 40px 16px; }
}

/* ================================================================
   MOBILE IMPROVEMENTS
   ================================================================ */

/* ── iOS Safari: parallax fix ─────────────────────────────────── */
@media (max-width: 1024px) {
  .banner-meio,
  .depoimentos-wrap,
  .foot-trust,
  .smart-section,
  .tech-hero {
    background-attachment: scroll !important;
  }
}

/* ── Topbar ───────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .topbar-item:not(.topbar-item--phone):not(.topbar-item--highlight) {
    display: none;
  }
  .topbar { padding: 4px 12px; font-size: 11px; }
}

/* ── Hero section ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-section {
    min-height: unset !important;
    padding: 70px 20px 48px !important;
  }
  .hero-inner {
    margin-left: 0 !important;
    max-width: 100% !important;
    text-align: center;
  }
  .hero-inner h1,
  .hero-section h1 {
    font-size: 30px !important;
    line-height: 1.25 !important;
  }
  .hero-inner p,
  .hero-section .hero-sub {
    font-size: 15px !important;
  }
  .hero-btns,
  .hero-inner .hero-btns {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .hero-btns a,
  .hero-btns button {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center;
  }
}

/* ── Banner meio (center banner) ─────────────────────────────── */
@media (max-width: 768px) {
  .banner-meio { padding: 48px 20px !important; }
  .banner-meio h2 { font-size: 26px !important; line-height: 1.3 !important; }
  .banner-meio p  { font-size: 15px !important; }
}

/* ── Diagnostic / box cards ──────────────────────────────────── */
@media (max-width: 768px) {
  .box,
  .diagnostic-box,
  .diag-box {
    padding: 28px 20px !important;
  }
}

/* ── Product detail page ─────────────────────────────────────── */
@media (max-width: 768px) {
  /* Product layout: stack image above info */
  .product-layout,
  .produto-layout {
    flex-direction: column !important;
    gap: 24px !important;
  }
  .product-gallery,
  .produto-gallery {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }
  .product-info,
  .produto-info {
    width: 100% !important;
  }

  /* Price row */
  .price-row {
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  /* Main price */
  #main-price {
    font-size: 32px !important;
  }

  /* Quantity buttons – minimum 44px touch target */
  .qty-btn {
    min-width: 44px !important;
    min-height: 44px !important;
    font-size: 20px !important;
  }
  #product-qty {
    min-height: 44px !important;
    font-size: 16px !important;
  }

  /* Add-to-cart button */
  .btn-cart,
  .btn-comprar,
  .add-cart-btn {
    width: 100% !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
  }

  /* Thumbnails row */
  .thumbnails,
  .thumb-row {
    gap: 8px !important;
  }
  .thumbnail {
    width: 60px !important;
    height: 60px !important;
  }
}

/* ── Index product cards ─────────────────────────────────────── */
@media (max-width: 600px) {
  .prod-img-box {
    height: 160px !important;
  }
  .prod-name { font-size: 14px !important; }
  .prod-price { font-size: 18px !important; }
  .prod-old   { font-size: 12px !important; }
  .prod-parcel { font-size: 12px !important; }
  .prod-btn-cart {
    font-size: 13px !important;
    padding: 10px 12px !important;
  }
}

/* ── Depoimentos (testimonials) ──────────────────────────────── */
@media (max-width: 768px) {
  .depoimento-card { padding: 24px 18px !important; }
  .depo-text { font-size: 14px !important; }
}

/* ── Footer ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .footer-cols,
  .footer-grid {
    flex-direction: column !important;
    gap: 28px !important;
  }
  .footer-logo { font-size: 20px !important; }
}

/* ── Checkout / order modal ──────────────────────────────────── */
@media (max-width: 600px) {
  .modal-payment,
  .mp-modal-inner,
  .checkout-modal {
    padding: 24px 16px !important;
    border-radius: 12px 12px 0 0 !important;
  }
  .mp-modal-inner { width: 100% !important; max-width: 100% !important; }
}

/* ── Very small screens (≤380px) ─────────────────────────────── */
@media (max-width: 380px) {
  body { font-size: 13px; }
  .hero-inner h1,
  .hero-section h1 { font-size: 24px !important; }
  .banner-meio h2  { font-size: 22px !important; }
  #main-price      { font-size: 28px !important; }
  .container       { padding-left: 12px !important; padding-right: 12px !important; }
  .prod-img-box    { height: 130px !important; }
}
