  :root{
    /* Paleta */
    --navy:#0B2442;
    --navy-deep:#081A30;
    --gold:#D6B66B;
    --gold-hover:#C8A24E;
    --gold-light:#E6D19A;
    --bg:#FFFFFF;
    --bg-off:#F7F5F1;
    --text-main:#20252B;
    --text-sub:#656B73;
    --border:#E6E3DD;

    /* Espaçamento / layout */
    --max-width:1280px;
    --radius:18px;
    --radius-sm:12px;

    /* Sombra discreta */
    --shadow-sm:0 1px 3px rgba(11,36,66,0.06);
    --shadow-md:0 4px 16px rgba(11,36,66,0.08);
    --shadow-gold:0 2px 8px rgba(214,182,107,0.18);
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.01ms !important; transition-duration:0.01ms !important;}
  }

  body{
    background:var(--bg);
    color:var(--text-main);
    font-family:'Montserrat', sans-serif;
    -webkit-font-smoothing:antialiased;
    font-size:16px;
    line-height:1.5;
    overflow-x:hidden;
  }
  body.menu-open{ overflow:hidden; }

  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  button{font-family:inherit; cursor:pointer;}

  :focus-visible{
    outline:2px solid var(--gold);
    outline-offset:2px;
  }

  /* ============ TOP STRIP ============ */
  .topstrip{
    background:var(--navy);
    color:#EDE3CE;
    text-align:center;
    font-size:0.8rem;
    font-weight:600;
    padding:9px 16px;
    letter-spacing:0.02em;
  }
  .topstrip .divider{ display:none; }
  .topstrip .secondary{
    display:none;
    color:#9DB0C9;
    font-weight:500;
  }
  @media (min-width:769px){
    .topstrip .divider{display:inline; margin:0 8px; opacity:0.4;}
    .topstrip .secondary{display:inline;}
  }

  /* ============ HEADER ============ */
  header{
    background:var(--navy);
    border-bottom:1px solid var(--navy-deep);
    position:sticky;
    top:0;
    z-index:100;
    box-shadow:var(--shadow-sm);
  }

  /* Evita que o cabeçalho fixo cubra os títulos ao navegar por âncora */
  #como-comprar,
  #entrega-pagamento,
  #faq {
    scroll-margin-top: 100px;
  }
  .header-inner{
    max-width:var(--max-width);
    margin:0 auto;
    padding:20px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
  }
  .logo-mark{
    width:54px; height:54px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    background:var(--navy);
    border:1.5px solid var(--gold-light);
  }
  .logo-mark img{width:100%; height:100%; object-fit:cover;}

  nav.main-nav{
    display:none;
    gap:28px;
  }
  nav.main-nav a{
    position:relative;
    font-size:0.88rem;
    font-weight:600;
    color:#fff;
    transition:color .15s;
    padding-bottom:4px;
  }
  nav.main-nav a::after{
    content:"";
    position:absolute;
    left:0; right:100%;
    bottom:0;
    height:2px;
    background:var(--gold);
    transition:right .2s ease;
  }
  nav.main-nav a:hover{ color:var(--gold-light); }
  nav.main-nav a:hover::after{ right:0; }

  @media (min-width:900px){
    nav.main-nav{display:flex; align-items:center;}
  }

  .header-actions{display:flex; align-items:center; gap:14px;}

  .btn-atendimento{
    display:none;
    align-items:center;
    gap:8px;
    background:var(--gold);
    color:var(--navy);
    font-size:0.82rem;
    font-weight:700;
    padding:10px 18px;
    border-radius:100px;
    border:1px solid var(--gold);
    transition:background .15s, color .15s;
  }
  .btn-atendimento:hover{ background:var(--gold-hover); }
  @media (min-width:900px){ .btn-atendimento{display:inline-flex;} }

  .hamburger{
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px; height:44px;
    background:none;
    border:1px solid rgba(255,255,255,0.3);
    border-radius:var(--radius-sm);
    transition:border-color .15s;
  }
  .hamburger:hover{ border-color:var(--gold); }
  @media (min-width:900px){ .hamburger{display:none;} }

  .wa-icon-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px; height:44px;
    background:var(--bg-off);
    border-radius:50%;
    transition:background .15s;
  }
  .wa-icon-btn:hover{ background:var(--gold-light); }
  @media (min-width:900px){ .wa-icon-btn{display:none;} }

  /* Mobile side menu */
  .mobile-menu{
    position:fixed;
    inset:0;
    background:rgba(11,36,66,0.4);
    z-index:200;
    display:none;
  }
  .mobile-menu.open{display:block;}
  .mobile-menu-panel{
    position:absolute;
    top:0; right:0;
    width:82%;
    max-width:320px;
    height:100%;
    background:var(--bg);
    padding:24px;
    display:flex;
    flex-direction:column;
    gap:4px;
  }
  .mobile-menu-close{
    align-self:flex-end;
    width:40px; height:40px;
    border:none;
    background:var(--bg-off);
    border-radius:50%;
    margin-bottom:16px;
    font-size:1.2rem;
  }
  .mobile-menu-panel a{
    padding:14px 4px;
    font-size:1rem;
    font-weight:600;
    border-bottom:1px solid var(--border);
  }

  /* ============ BREADCRUMB ============ */
  .breadcrumb{
    max-width:var(--max-width);
    margin:0 auto;
    padding:16px 24px 0;
    font-size:0.8rem;
    color:var(--text-sub);
  }
  .breadcrumb a{ transition:color .15s; }
  .breadcrumb a:hover{ color:var(--gold-hover); text-decoration:underline; text-decoration-color:var(--gold); }
  .breadcrumb .current{color:var(--text-main); font-weight:600;}
  .breadcrumb .current::before{ content:"• "; color:var(--gold); }

  /* ============ PRODUCT MAIN ============ */
  .product-main{
    max-width:var(--max-width);
    margin:0 auto;
    padding:20px 24px 48px;
    display:grid;
    grid-template-columns:58% 1fr;
    gap:48px;
  }
  @media (max-width:900px){
    .product-main{grid-template-columns:1fr; gap:28px; padding:16px 20px 32px;}
  }

  /* ---- Gallery ---- */
  .gallery{
    position:sticky;
    top:88px;
    align-self:start;
  }
  @media (max-width:900px){ .gallery{position:static;} }

  .gallery-main{
    position:relative;
    width:100%;
    aspect-ratio:1/1;
    background:var(--bg-off);
    border-radius:var(--radius);
    overflow:hidden;
    border:1px solid var(--border);
    touch-action:pan-y;
  }
  .gallery-main img{
    width:100%; height:100%;
    object-fit:contain;
    cursor:zoom-in;
    transition:opacity .2s ease;
  }
  .gallery-counter{
    position:absolute;
    bottom:14px; right:14px;
    background:rgba(11,36,66,0.75);
    color:#fff;
    font-size:0.75rem;
    font-weight:600;
    padding:4px 10px;
    border-radius:100px;
  }
  .gallery-arrow{
    position:absolute;
    top:50%; transform:translateY(-50%);
    width:38px; height:38px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    box-shadow:var(--shadow-sm);
  }
  .gallery-arrow.prev{left:12px;}
  .gallery-arrow.next{right:12px;}
  .gallery-arrow svg{width:18px; height:18px;}

  .thumbs{
    display:flex;
    gap:10px;
    margin-top:12px;
    overflow-x:auto;
    padding-bottom:2px;
  }
  .thumb{
    flex-shrink:0;
    width:72px; height:72px;
    border:2px solid var(--border);
    border-radius:var(--radius-sm);
    overflow:hidden;
    background:var(--bg-off);
    transition:border-color .15s;
  }
  .thumb.active{border-color:var(--navy);}
  .thumb img{width:100%; height:100%; object-fit:contain;}

  /* ---- Lightbox ---- */
  .lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(8,26,48,0.92);
    z-index:300;
    align-items:center;
    justify-content:center;
  }
  .lightbox.open{ display:flex; }
  .lightbox img{
    max-width:90vw;
    max-height:85vh;
    object-fit:contain;
  }
  .lightbox-close{
    position:absolute;
    top:20px; right:20px;
    width:44px; height:44px;
    background:rgba(255,255,255,0.15);
    border:none;
    border-radius:50%;
    color:#fff;
    font-size:1.3rem;
  }
  .lightbox-arrow{
    position:absolute;
    top:50%; transform:translateY(-50%);
    width:48px; height:48px;
    background:rgba(255,255,255,0.15);
    border:none;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }
  .lightbox-arrow.prev{ left:16px; }
  .lightbox-arrow.next{ right:16px; }
  .lightbox-arrow svg{ width:22px; height:22px; }

  /* ---- Info column ---- */
  .badge-categoria{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:0.72rem;
    font-weight:700;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:var(--gold-hover);
    background:var(--bg-off);
    border:1px solid var(--gold-light);
    padding:5px 12px;
    border-radius:100px;
    margin-bottom:14px;
  }
  .badge-categoria::before{
    content:"";
    width:6px; height:6px;
    border-radius:50%;
    background:var(--gold);
  }

  h1.product-title{
    font-size:1.7rem;
    font-weight:800;
    line-height:1.25;
    letter-spacing:-0.01em;
    margin-bottom:8px;
    color:var(--navy);
  }
  @media (min-width:900px){ h1.product-title{font-size:1.95rem;} }

  .product-subtitle{
    font-size:0.95rem;
    color:var(--text-sub);
    margin-bottom:20px;
    line-height:1.6;
  }

  .product-reference{
    font-size:0.76rem;
    color:var(--text-sub);
    margin-bottom:14px;
  }
  .product-reference span{
    font-weight:600;
    color:var(--text-main);
  }

  .section-label{
    font-size:0.75rem;
    font-weight:700;
    letter-spacing:0.05em;
    text-transform:uppercase;
    color:var(--text-sub);
    margin-bottom:10px;
  }

  /* Size selector */
  .size-options{
    display:flex;
    gap:10px;
    margin-bottom:8px;
  }
  .size-opt{
    border:1.5px solid var(--border);
    border-radius:var(--radius-sm);
    padding:12px 18px;
    text-align:center;
    background:var(--bg);
    font-family:inherit;
    cursor:pointer;
    min-height:48px;
  }
  .size-opt.selected{
    border-color:var(--navy);
    background:var(--bg-off);
  }
  .size-opt .size-name{
    display:block;
    font-size:0.85rem;
    font-weight:700;
    color:var(--navy);
  }
  .size-opt .size-dim{
    display:block;
    font-size:0.72rem;
    color:var(--text-sub);
    margin-top:2px;
  }
  .link-outros-tamanhos{
    display:inline-block;
    font-size:0.82rem;
    font-weight:700;
    color:var(--gold-hover);
    text-decoration:underline;
    text-underline-offset:3px;
    text-decoration-color:var(--gold);
    margin-bottom:24px;
    transition:color .15s;
  }
  .link-outros-tamanhos:hover{ color:var(--navy); }

  /* Price block */
  .price-block{
    padding:18px 0;
    border-top:2px solid var(--gold-light);
    border-bottom:1px solid var(--border);
    margin-bottom:22px;
  }
  .price-old{
    font-size:0.85rem;
    color:var(--text-sub);
    text-decoration:line-through;
    margin-bottom:6px;
  }
  .price-savings{
    display:inline-flex;
    align-items:center;
    gap:4px;
    background:var(--gold-light);
    color:var(--navy);
    font-size:0.78rem;
    font-weight:600;
    padding:4px 12px;
    border-radius:100px;
    margin-bottom:10px;
  }
  .price-savings b{ color:var(--navy); font-weight:800; }
  .price-main{
    display:flex;
    align-items:baseline;
    gap:2px;
    margin-top:4px;
  }
  .price-main .currency{ font-size:1.3rem; font-weight:800; color:var(--navy); }
  .price-main .amount{ font-size:3.1rem; font-weight:800; color:var(--navy); letter-spacing:-0.03em; line-height:1; }
  .price-avista{ font-size:0.8rem; color:var(--text-sub); margin-top:4px; }
  .price-parcelamento{ font-size:0.85rem; color:var(--text-sub); margin-top:10px; }
  .price-parcelamento b{ color:var(--gold-hover); font-weight:800; }
  .price-delivery-note{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:0.78rem;
    font-weight:600;
    color:var(--text-sub);
    margin-top:10px;
  }
  .price-delivery-note svg{ width:14px; height:14px; color:var(--gold-hover); flex-shrink:0; }

  /* ---- Delivery time badge (destaque elegante, sem aparência de promoção) ---- */
  .delivery-badge{
    display:flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(to right, rgba(214,182,107,0.12), rgba(214,182,107,0.03));
    border:1px solid var(--gold);
    border-left:3px solid var(--gold);
    border-radius:var(--radius-sm);
    padding:12px 16px;
    margin-bottom:20px;
    font-size:0.86rem;
    color:var(--navy);
  }
  .delivery-badge svg{
    width:20px; height:20px;
    color:var(--gold-hover);
    flex-shrink:0;
  }
  .delivery-badge > div{
    display:flex;
    flex-direction:column;
    gap:2px;
  }
  .delivery-badge strong{
    font-weight:700;
    font-size:0.86rem;
    color:var(--navy);
  }
  .delivery-badge span{
    font-weight:500;
    font-size:0.76rem;
    color:var(--text-sub);
  }

  /* ---- CEP consultation ---- */
  .cep-block{
    background:var(--bg-off);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:18px;
    margin-bottom:20px;
  }
  .cep-label{
    font-size:0.85rem;
    font-weight:700;
    color:var(--navy);
    margin-bottom:10px;
    display:block;
  }
  .cep-form{
    display:flex;
    gap:10px;
  }
  @media (max-width:420px){
    .cep-form{ flex-direction:column; }
    .cep-btn{ width:100%; }
    .delivery-badge{ font-size:0.8rem; }
    .price-main .amount{ font-size:2.6rem; }
  }
  .cep-input{
    flex:1;
    min-width:0;
    padding:12px 14px;
    border:1.5px solid var(--border);
    border-radius:var(--radius-sm);
    font-size:0.95rem;
    font-family:inherit;
    background:#fff;
  }
  .cep-input:focus{ border-color:var(--navy); }
  .cep-btn{
    background:var(--navy);
    color:#fff;
    border:none;
    padding:12px 18px;
    border-radius:var(--radius-sm);
    font-size:0.85rem;
    font-weight:700;
    white-space:nowrap;
    min-height:48px;
  }
  .cep-error{
    font-size:0.78rem;
    color:#B3401F;
    margin-top:8px;
    display:none;
  }
  .cep-error.show{display:block;}
  .cep-note{
    font-size:0.76rem;
    color:var(--text-sub);
    margin-top:10px;
    line-height:1.5;
  }

  /* ---- Main CTA ---- */
  .wa-btn-main{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    background:var(--navy);
    color:#fff;
    border:none;
    padding:17px 20px;
    border-radius:var(--radius);
    font-size:1rem;
    font-weight:700;
    letter-spacing:0.01em;
    transition:background .15s, transform .1s;
    min-height:48px;
    margin-bottom:26px;
  }
  .wa-btn-main:hover{ background:var(--navy-deep); }
  .wa-btn-main:active{ transform:scale(0.99); }
  .wa-btn-main svg{ width:22px; height:22px; flex-shrink:0; }

  .wa-note{
    text-align:center;
    font-size:0.78rem;
    color:var(--text-sub);
    margin-top:10px;
    margin-bottom:26px;
  }

  /* ---- Benefits grid: SEMPRE 2 colunas (inclusive desktop), conforme item 6 ---- */
  .benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-bottom:8px;
  }
  .benefit-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:8px;
    padding:16px 10px;
    border:1px solid var(--border);
    border-top:2px solid var(--gold-light);
    border-radius:var(--radius-sm);
    min-height:48px;
    justify-content:center;
    transition:border-top-color .15s;
  }
  .benefit-item:hover{ border-top-color:var(--gold); }
  .benefit-item svg{ width:26px; height:26px; color:var(--gold-hover); }
  .benefit-item span{
    font-size:0.76rem;
    font-weight:600;
    color:var(--text-main);
    line-height:1.35;
  }

  /* ---- How it works strip ---- */
  .how-it-works{
    background:var(--bg-off);
    padding:48px 24px;
    margin-top:8px;
  }
  .how-it-works-inner{
    max-width:var(--max-width);
    margin:0 auto;
  }
  .how-it-works h2{
    font-size:1.4rem;
    font-weight:800;
    color:var(--navy);
    margin-bottom:10px;
    text-align:center;
    position:relative;
    padding-bottom:14px;
  }
  .how-it-works h2::after{
    content:"";
    position:absolute;
    bottom:0; left:50%;
    transform:translateX(-50%);
    width:40px; height:2px;
    background:var(--gold);
  }
  .how-it-works > .how-it-works-inner > p{
    font-size:0.92rem;
    color:var(--text-sub);
    text-align:center;
    max-width:620px;
    margin:0 auto 32px;
    line-height:1.6;
  }
  .steps{
    display:flex;
    flex-direction:column;
    gap:20px;
  }
  @media (min-width:768px){
    .steps{flex-direction:row; gap:24px;}
  }
  .step{
    flex:1;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:22px;
    display:flex;
    align-items:flex-start;
    gap:14px;
  }
  @media (min-width:768px){
    .step{flex-direction:column; align-items:flex-start;}
  }
  .step-num{
    width:32px; height:32px;
    border-radius:50%;
    background:var(--navy);
    color:#fff;
    font-size:0.85rem;
    font-weight:800;
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .step p{
    font-size:0.88rem;
    font-weight:600;
    color:var(--text-main);
    padding-top:4px;
  }

  /* ---- Mobile sticky bar ---- */
  .mobile-sticky-bar{
    display:none;
    position:fixed;
    bottom:0; left:0; right:0;
    background:#fff;
    border-top:1px solid var(--border);
    padding:10px 16px;
    z-index:150;
    align-items:center;
    gap:12px;
    box-shadow:0 -2px 12px rgba(11,36,66,0.08);
    transition:transform .2s ease;
  }
  .mobile-sticky-price{ flex-shrink:0; }
  .mobile-sticky-price .label{ font-size:0.65rem; color:var(--text-sub); }
  .mobile-sticky-price .val{ font-size:1.05rem; font-weight:800; color:var(--navy); }
  .mobile-sticky-btn{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:var(--navy);
    color:#fff;
    border:none;
    padding:13px;
    border-radius:var(--radius-sm);
    font-size:0.85rem;
    font-weight:700;
    min-height:48px;
  }
  .mobile-sticky-btn svg{ width:18px; height:18px; }
  @media (max-width:899px){
    .mobile-sticky-bar{ display:flex; }
    body{ padding-bottom:74px; }
  }

  /* ============ SPECS TABS / ACCORDION ============ */
  .specs-section{
    max-width:var(--max-width);
    margin:0 auto;
    padding:48px 24px;
  }
  .specs-section h2{
    font-size:1.4rem;
    font-weight:800;
    color:var(--navy);
    margin-bottom:24px;
    position:relative;
    padding-bottom:14px;
  }
  .specs-section h2::after{
    content:"";
    position:absolute;
    bottom:0; left:0;
    width:40px; height:2px;
    background:var(--gold);
  }

  .specs-tabs{ display:none; }
  @media (min-width:768px){
    .specs-tabs{
      display:flex;
      gap:4px;
      border-bottom:1px solid var(--border);
      margin-bottom:28px;
      flex-wrap:wrap;
    }
    .specs-tab{
      background:none;
      border:none;
      padding:12px 20px;
      font-size:0.88rem;
      font-weight:700;
      color:var(--text-sub);
      border-bottom:2px solid transparent;
      margin-bottom:-1px;
      min-height:48px;
    }
    .specs-tab.active{
      color:var(--gold-hover);
      border-bottom-color:var(--gold);
    }
  }

  .specs-panel{ display:none; }
  .specs-panel.active{ display:block; }

  /* Em telas pequenas, os painéis de desktop ficam sempre ocultos —
     o mobile mostra somente o accordion (.specs-accordion), nunca ambos */
  @media (max-width:767px){
    .specs-panel{ display:none !important; }
  }

  /* Tabela (desktop) */
  .specs-table{
    width:100%;
    border-collapse:collapse;
  }
  .specs-table tr{ border-bottom:1px solid var(--border); }
  .specs-table td{
    padding:12px 8px;
    font-size:0.88rem;
  }
  .specs-table td:first-child{
    color:var(--text-sub);
    font-weight:600;
    width:45%;
  }
  .specs-table td:last-child{
    color:var(--text-main);
    font-weight:600;
  }

  /* Blocos verticais (mobile) — item 8: nome acima, valor abaixo */
  .specs-blocks{ display:none; }
  .specs-block-item{
    padding:12px 4px;
    border-bottom:1px solid var(--border);
  }
  .specs-block-item .k{
    font-size:0.74rem;
    font-weight:700;
    letter-spacing:0.03em;
    text-transform:uppercase;
    color:var(--text-sub);
    margin-bottom:4px;
  }
  .specs-block-item .v{
    font-size:0.92rem;
    font-weight:600;
    color:var(--text-main);
  }
  @media (max-width:767px){
    .specs-table{ display:none; }
    .specs-blocks{ display:block; }
  }

  .specs-text{
    font-size:0.92rem;
    color:var(--text-main);
    line-height:1.7;
  }

  /* Mobile accordion for specs */
  @media (max-width:767px){
    .specs-accordion-item{ border-bottom:1px solid var(--border); }
    .specs-accordion-btn{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      background:none;
      border:none;
      padding:16px 4px;
      font-size:0.92rem;
      font-weight:700;
      color:var(--navy);
      text-align:left;
      min-height:48px;
    }
    .specs-accordion-btn svg{
      width:18px; height:18px;
      transition:transform .2s, stroke .2s;
      flex-shrink:0;
    }
    .specs-accordion-btn[aria-expanded="true"] svg{ transform:rotate(180deg); stroke:var(--gold-hover); }
    .specs-accordion-panel{
      display:none;
      padding:0 4px 18px;
      border-left:2px solid var(--gold-light);
      margin-left:2px;
      padding-left:14px;
    }
    .specs-accordion-panel.open{ display:block; }
  }

  /* ============ WHY BUY ============ */
  .why-buy{ background:var(--bg-off); padding:48px 24px; }
  .why-buy-inner{ max-width:var(--max-width); margin:0 auto; }
  .why-buy h2{
    font-size:1.4rem; font-weight:800; color:var(--navy); text-align:center; margin-bottom:14px;
    position:relative; padding-bottom:14px;
  }
  .why-buy h2::after{
    content:""; position:absolute; bottom:0; left:50%; transform:translateX(-50%);
    width:40px; height:2px; background:var(--gold);
  }
  .why-buy > .why-buy-inner > p{
    font-size:0.92rem; color:var(--text-sub); text-align:center;
    max-width:640px; margin:0 auto 32px; line-height:1.6;
  }
  .why-buy-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
  @media (min-width:900px){ .why-buy-grid{grid-template-columns:repeat(4,1fr);} }
  .why-buy-item{ background:#fff; border:1px solid var(--border); border-top:2px solid var(--gold-light); border-radius:var(--radius); padding:22px 16px; text-align:center; transition:border-top-color .15s; }
  .why-buy-item:hover{ border-top-color:var(--gold); }
  .why-buy-item svg{ width:28px; height:28px; color:var(--gold-hover); margin-bottom:10px; }
  .why-buy-item h3{ font-size:0.88rem; font-weight:700; color:var(--navy); margin-bottom:4px; }

  /* ============ FAQ ============ */
  .faq-section{ max-width:820px; margin:0 auto; padding:48px 24px; }
  .faq-section h2{
    font-size:1.4rem; font-weight:800; color:var(--navy); margin-bottom:24px; text-align:center;
    position:relative; padding-bottom:14px;
  }
  .faq-section h2::after{
    content:""; position:absolute; bottom:0; left:50%; transform:translateX(-50%);
    width:40px; height:2px; background:var(--gold);
  }
  .faq-item{ border-bottom:1px solid var(--border); }
  .faq-btn{
    width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
    background:none; border:none; padding:18px 4px; font-size:0.95rem; font-weight:700;
    color:var(--navy); text-align:left; min-height:48px;
  }
  .faq-btn svg{ width:20px; height:20px; flex-shrink:0; transition:transform .2s, stroke .2s; }
  .faq-btn[aria-expanded="true"] svg{ transform:rotate(180deg); stroke:var(--gold-hover); }
  .faq-panel{ display:none; padding:0 4px 18px; border-left:2px solid var(--gold-light); margin-left:2px; padding-left:14px; }
  .faq-panel.open{ display:block; }
  .faq-panel p{ font-size:0.88rem; color:var(--text-sub); line-height:1.65; }

  /* ============ RELATED PRODUCTS (hidden until real data) ============ */
  .related-section{ display:none; max-width:var(--max-width); margin:0 auto; padding:48px 24px; }
  .related-section.has-products{ display:block; }

  /* ============ FOOTER ============ */
  footer{ background:var(--navy); color:#C6D2E3; padding:48px 24px 24px; }
  .footer-inner{ max-width:var(--max-width); margin:0 auto; }
  .footer-top{
    display:grid; grid-template-columns:1fr; gap:32px;
    padding-bottom:32px; border-bottom:1px solid rgba(214,182,107,0.2);
  }
  @media (min-width:768px){ .footer-top{grid-template-columns:1.4fr 1fr 1fr;} }
  .footer-logo{ width:56px; height:56px; border-radius:50%; overflow:hidden; margin-bottom:14px; border:1.5px solid var(--gold-light); }
  .footer-logo img{ width:100%; height:100%; object-fit:cover; }
  .footer-desc{ font-size:0.85rem; color:#9DB0C9; line-height:1.6; max-width:340px; }
  .footer-col h4{
    font-size:0.78rem; font-weight:700; letter-spacing:0.05em; text-transform:uppercase;
    color:var(--gold-light); margin-bottom:14px;
  }
  .footer-col a, .footer-col span{ display:block; font-size:0.85rem; color:#C6D2E3; margin-bottom:10px; transition:color .15s; }
  .footer-col a:hover{ color:var(--gold); text-decoration:underline; text-decoration-color:var(--gold); }
  .footer-bottom{
    display:flex; flex-direction:column; gap:12px; padding-top:20px;
    font-size:0.76rem; color:#7E93AF;
  }
  @media (min-width:768px){ .footer-bottom{flex-direction:row; justify-content:space-between; align-items:center;} }
  .footer-legal-links{ display:flex; gap:16px; flex-wrap:wrap; }
  .footer-legal-links a{ color:#9DB0C9; transition:color .15s; }
  .footer-legal-links a:hover{ color:var(--gold); text-decoration:underline; }
  .footer-legal-note{ font-size:0.76rem; color:#7E93AF; font-style:italic; }

  /* ============ CATALOG / CATEGORY PAGES ============ */
  .catalog-intro{
    background:var(--bg-off);
    padding:56px 24px 40px;
    text-align:center;
    border-bottom:1px solid var(--border);
  }
  .catalog-intro-inner{ max-width:var(--max-width); margin:0 auto; }
  .catalog-intro h1{
    font-size:1.9rem;
    font-weight:800;
    color:var(--navy);
    margin-bottom:10px;
  }
  .catalog-intro p{
    font-size:0.98rem;
    color:var(--text-sub);
    max-width:560px;
    margin:0 auto 24px;
    line-height:1.6;
  }
  .category-chips{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
  }
  .category-chip{
    display:inline-flex;
    align-items:center;
    background:#fff;
    border:1.5px solid var(--gold-light);
    color:var(--navy);
    font-size:0.85rem;
    font-weight:700;
    padding:9px 18px;
    border-radius:100px;
    transition:background .15s, border-color .15s;
  }
  .category-chip:hover{ background:var(--gold-light); border-color:var(--gold); }

  .catalog-products{ padding:40px 24px 60px; }
  .catalog-products-inner{ max-width:var(--max-width); margin:0 auto; }
  .catalog-empty{
    text-align:center;
    color:var(--text-sub);
    font-size:0.95rem;
    padding:40px 0;
  }

  .product-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
  }
  @media (min-width:600px){ .product-grid{grid-template-columns:repeat(2,1fr);} }
  @media (min-width:960px){ .product-grid{grid-template-columns:repeat(3,1fr);} }

  .product-card{
    display:block;
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    transition:box-shadow .2s, border-color .2s;
  }
  .product-card:hover{ box-shadow:var(--shadow-md); border-color:var(--gold-light); }
  .product-card-img{
    aspect-ratio:1/1;
    background:var(--bg-off);
    overflow:hidden;
  }
  .product-card-img img{ width:100%; height:100%; object-fit:cover; }
  .product-card-body{ padding:16px; }
  .product-card-category{
    font-size:0.68rem;
    font-weight:700;
    letter-spacing:0.05em;
    text-transform:uppercase;
    color:var(--gold-hover);
    margin-bottom:6px;
  }
  .product-card-name{
    font-size:0.95rem;
    font-weight:700;
    color:var(--navy);
    margin-bottom:8px;
    line-height:1.35;
  }
  .product-card-price{
    display:flex;
    align-items:baseline;
    gap:4px;
    margin-bottom:2px;
  }
  .product-card-price .currency{ font-size:0.85rem; font-weight:700; color:var(--navy); }
  .product-card-price .amount{ font-size:1.4rem; font-weight:800; color:var(--navy); }
  .product-card-installment{ font-size:0.78rem; color:var(--text-sub); margin-bottom:8px; }
  .product-card-delivery{
    display:inline-block;
    font-size:0.72rem;
    font-weight:700;
    color:var(--gold-hover);
    background:var(--gold-light);
    padding:3px 10px;
    border-radius:100px;
    margin-bottom:10px;
  }
  .product-card-cta{
    display:block;
    text-align:center;
    background:var(--navy);
    color:#fff;
    font-size:0.85rem;
    font-weight:700;
    padding:10px;
    border-radius:var(--radius-sm);
  }

/* ============================================================
   LUNA COMFORT — EDITORIAL FURNITURE THEME v15
   Inspirado em layouts premium de mobiliário, adaptado à marca.
   ============================================================ */
:root{
  --cream:#f3efe8;
  --cream-2:#ebe3d8;
  --ink:#18201f;
  --muted:#74746e;
  --warm:#b89b67;
}
body{background:#fff;color:var(--ink)}
.topstrip{background:#132c47;color:#fff;padding:10px 18px;font-size:.72rem;letter-spacing:.11em;text-transform:uppercase}
header{background:rgba(255,255,255,.96);border-bottom:1px solid #e9e4dc;box-shadow:none;backdrop-filter:blur(12px)}
.header-inner{min-height:82px;padding:14px 32px}
.logo-mark{width:58px;height:58px;border:0;background:transparent;border-radius:50%}
nav.main-nav a{color:#1f2525;font-size:.76rem;font-weight:600;text-transform:uppercase;letter-spacing:.09em}
nav.main-nav a:hover{color:#8b7248}.btn-atendimento{background:#152d47;color:#fff;border-color:#152d47;border-radius:0;padding:13px 22px;text-transform:uppercase;letter-spacing:.08em;font-size:.72rem}.btn-atendimento:hover{background:#0d2035}.wa-icon-btn{background:#f1ede6}.hamburger{border-color:#d7d1c8}.hamburger svg{stroke:#17212a!important}

.gs-hero{max-width:1500px;margin:0 auto;min-height:690px;display:grid;grid-template-columns:.9fr 1.1fr;background:var(--cream)}
.gs-hero-copy{padding:90px clamp(36px,6vw,96px);display:flex;flex-direction:column;justify-content:center;align-items:flex-start}
.eyebrow{display:inline-block;font-size:.7rem;font-weight:700;letter-spacing:.19em;text-transform:uppercase;color:#92794d;margin-bottom:20px}
.gs-hero h1{font-family:Georgia,'Times New Roman',serif;font-weight:400;font-size:clamp(3.2rem,5.8vw,6.6rem);line-height:.94;letter-spacing:-.045em;margin-bottom:30px;color:#17201f}
.gs-hero-copy>p{max-width:560px;font-size:1.02rem;color:#64645f;line-height:1.8;margin-bottom:36px}
.hero-actions{display:flex;align-items:center;gap:28px;flex-wrap:wrap}.btn-primary{display:inline-flex;align-items:center;justify-content:center;background:#172d45;color:#fff;padding:15px 24px;border:1px solid #172d45;border-radius:0;font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;transition:.2s}.btn-primary:hover{background:#294662}.btn-text{font-size:.78rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;border-bottom:1px solid #aaa18f;padding-bottom:6px}.btn-text span{margin-left:8px}
.gs-hero-media{position:relative;min-height:690px;background:#e3ded6;overflow:hidden}.gs-hero-media>img{width:100%;height:100%;object-fit:cover;object-position:center}.hero-floating-card{position:absolute;left:0;bottom:0;background:#fff;padding:24px 30px;min-width:255px}.hero-floating-card strong,.hero-floating-card span{display:block}.hero-floating-card strong{font-family:Georgia,serif;font-size:1.2rem;font-weight:400;margin-bottom:5px}.hero-floating-card span{font-size:.72rem;color:#73736d}
.gs-benefits{max-width:1500px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);border-bottom:1px solid #e8e3db;background:#fff}.gs-benefit{padding:36px 28px;display:flex;gap:18px;border-right:1px solid #e8e3db}.gs-benefit:last-child{border-right:0}.benefit-icon{font-family:Georgia,serif;color:#a78c5e;font-size:.82rem}.gs-benefit strong{font-family:Georgia,serif;font-size:1.13rem;font-weight:400;display:block;margin-bottom:6px}.gs-benefit p{font-size:.75rem;color:#77766f;line-height:1.6}
.gs-section{max-width:1280px;margin:0 auto;padding:110px 28px}.section-heading{display:grid;grid-template-columns:1.15fr .85fr;gap:80px;align-items:end;margin-bottom:48px}.section-heading .eyebrow{margin-bottom:12px}.section-heading h2,.editorial-copy h2,.gs-band h2,.delivery-copy h2,.gs-final-cta h2{font-family:Georgia,'Times New Roman',serif;font-weight:400;letter-spacing:-.035em;line-height:1.05}.section-heading h2{font-size:clamp(2.7rem,4vw,4.5rem)}.section-heading>p{color:#74736d;line-height:1.75;max-width:440px}
.category-showcase{display:grid;grid-template-columns:1.35fr 1fr 1fr;grid-template-rows:320px 320px;gap:18px}.category-tile{position:relative;overflow:hidden;background:#eee9e1}.category-tile-large{grid-row:1/3}.category-tile:nth-child(4){grid-column:2/4}.category-tile img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease}.category-tile:hover img{transform:scale(1.035)}.tile-overlay{position:absolute;inset:auto 0 0 0;padding:48px 26px 24px;background:linear-gradient(transparent,rgba(16,24,29,.7));color:#fff}.tile-overlay>span{font-size:.64rem;letter-spacing:.16em}.tile-overlay h3{font-family:Georgia,serif;font-weight:400;font-size:1.7rem;margin:4px 0}.tile-overlay p{font-size:.7rem;text-transform:uppercase;letter-spacing:.1em}
.products-home{padding-top:30px}.products-home .catalog-products-inner{max-width:none;padding:0}.products-home .product-grid{grid-template-columns:repeat(4,1fr);gap:34px 18px}.products-home .product-card{border:0;border-radius:0;box-shadow:none;background:transparent}.products-home .product-card:hover{box-shadow:none;transform:none}.products-home .product-card-img{background:#f2efe9;border-radius:0;aspect-ratio:1/1;overflow:hidden}.products-home .product-card-img img{transition:transform .4s}.products-home .product-card:hover img{transform:scale(1.025)}.products-home .product-card-body{padding:18px 2px 0}.products-home .product-card-category{color:#9a8155;font-size:.63rem;letter-spacing:.13em;text-transform:uppercase}.products-home .product-card-name{font-family:Georgia,serif;font-size:1.16rem;font-weight:400;line-height:1.25;margin:8px 0}.products-home .product-card-price{font-size:.95rem;color:#17212a}.products-home .product-card-price .amount{font-size:1.15rem}.products-home .product-card-installment,.products-home .product-card-delivery{font-size:.69rem;color:#777}.products-home .product-card-delivery{margin-top:8px}.products-home .product-card-cta{display:inline-block;margin-top:14px;padding-bottom:3px;border-bottom:1px solid #222;font-size:.66rem;text-transform:uppercase;letter-spacing:.1em;background:none;color:#222;border-radius:0}
.gs-editorial{max-width:1500px;margin:40px auto 0;display:grid;grid-template-columns:1fr 1fr;background:#eee9e1;min-height:700px}.editorial-image{min-height:680px;background:#e7e0d6}.editorial-image img{width:100%;height:100%;object-fit:cover}.editorial-copy{padding:80px clamp(34px,6vw,92px);display:flex;flex-direction:column;justify-content:center}.editorial-copy h2{font-size:clamp(2.8rem,4.5vw,5rem);margin-bottom:26px}.editorial-copy>p{color:#686862;line-height:1.8;margin-bottom:30px}.editorial-points{border-top:1px solid #d4ccc0;margin-bottom:32px}.editorial-points>div{display:grid;grid-template-columns:52px 1fr;padding:16px 0;border-bottom:1px solid #d4ccc0;font-size:.84rem}.editorial-points strong{color:#a88a58}.btn-primary.dark{align-self:flex-start}
.gs-band{background:#172d45;color:#fff;text-align:center;padding:105px 5vw}.gs-band .eyebrow{color:#d9c191}.gs-band h2{font-size:clamp(3rem,5vw,5.5rem);margin-bottom:65px}.band-steps{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);text-align:left;border-top:1px solid rgba(255,255,255,.23)}.band-steps>div{padding:30px 25px;border-right:1px solid rgba(255,255,255,.16)}.band-steps>div:last-child{border-right:0}.band-steps span{display:block;color:#d9c191;font-size:.68rem;letter-spacing:.16em;margin-bottom:35px}.band-steps strong{font-family:Georgia,serif;font-size:1.35rem;font-weight:400;display:block;margin-bottom:10px}.band-steps p{font-size:.76rem;line-height:1.7;color:#ccd2d8}
.delivery-panel{display:grid;grid-template-columns:1.15fr .85fr;gap:80px;align-items:center}.delivery-copy h2{font-size:clamp(3rem,4.8vw,5.2rem);margin-bottom:24px}.delivery-copy p{max-width:660px;color:#6e6e68;line-height:1.8;margin-bottom:30px}.delivery-visual{background:#f0ebe4;min-height:360px;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center}.delivery-number{font-family:Georgia,serif;font-size:8rem;line-height:.9}.delivery-number span{font-size:3rem;color:#a48756}.delivery-visual p{margin-top:18px;color:#666761;line-height:1.7}
.gs-faq{padding-top:80px}.gs-faq #faqContainer{max-width:900px;margin-left:auto}.gs-faq .faq-item{border:0;border-bottom:1px solid #ddd8d0;border-radius:0;background:#fff}.gs-faq .faq-btn{padding:23px 0;font-family:Georgia,serif;font-weight:400;font-size:1.25rem;color:#1f2525}.gs-faq .faq-panel p{padding:0 45px 22px 0;color:#6b6b66;line-height:1.8}
.gs-final-cta{max-width:1500px;margin:0 auto;background:#b49766;color:#152330;padding:76px clamp(30px,8vw,115px);display:flex;align-items:center;justify-content:space-between;gap:50px}.gs-final-cta .eyebrow{color:#23364b}.gs-final-cta h2{max-width:850px;font-size:clamp(2.7rem,4vw,4.7rem)}.btn-primary.light{background:#fff;border-color:#fff;color:#172d45;white-space:nowrap}.btn-primary.light:hover{background:#f4f1ec}
footer{background:#111f2d!important}footer .footer-inner{max-width:1280px}footer .footer-top{padding-top:62px}

/* Category pages inherit the editorial visual language */
.catalog-intro{background:#eee9e1!important;padding:72px 24px!important}.catalog-intro h1{font-family:Georgia,serif!important;font-size:clamp(2.8rem,5vw,5rem)!important;font-weight:400!important;letter-spacing:-.04em!important}.catalog-intro p{color:#6d6d67!important}.category-chips{margin-top:22px}.category-chip{border-radius:0!important;background:#fff!important;color:#172d45!important;border:1px solid #dad3c9!important;text-transform:uppercase;font-size:.66rem!important;letter-spacing:.1em}.catalog-products{background:#fff!important}.catalog-products .product-card{border-radius:0!important;box-shadow:none!important;border:0!important}.catalog-products .product-card-img{border-radius:0!important;background:#f1ede7!important}.catalog-products .product-card-body{padding-left:2px!important;padding-right:2px!important}

/* Product pages */
.product-main{padding-top:54px!important;padding-bottom:80px!important}.product-title{font-family:Georgia,serif!important;font-size:clamp(2.3rem,4vw,4.3rem)!important;font-weight:400!important;line-height:1.03!important;letter-spacing:-.04em!important}.gallery-main{background:#f1ede7!important;border-radius:0!important}.thumb{border-radius:0!important}.wa-btn-main,.cep-btn{border-radius:0!important;background:#172d45!important}.size-opt{border-radius:0!important}.size-opt.selected{border-color:#a88b59!important;background:#f3eee6!important}.benefits-grid,.how-it-works{border-radius:0!important}.badge-categoria{border-radius:0!important;background:#eee9e1!important;color:#826b46!important}

@media(max-width:980px){.gs-hero{grid-template-columns:1fr;min-height:auto}.gs-hero-media{min-height:520px}.gs-benefits{grid-template-columns:1fr 1fr}.gs-benefit:nth-child(2){border-right:0}.gs-benefit:nth-child(-n+2){border-bottom:1px solid #e8e3db}.section-heading{grid-template-columns:1fr;gap:18px}.category-showcase{grid-template-columns:1fr 1fr;grid-template-rows:420px 280px 280px}.category-tile-large{grid-column:1/3;grid-row:auto}.category-tile:nth-child(4){grid-column:auto}.products-home .product-grid{grid-template-columns:repeat(2,1fr)}.gs-editorial{grid-template-columns:1fr}.editorial-image{min-height:560px}.band-steps{grid-template-columns:1fr 1fr}.band-steps>div:nth-child(2){border-right:0}.delivery-panel{grid-template-columns:1fr}.gs-final-cta{align-items:flex-start;flex-direction:column}}
@media(max-width:640px){.header-inner{padding:12px 16px;min-height:70px}.logo-mark{width:48px;height:48px}.gs-hero-copy{padding:60px 24px}.gs-hero h1{font-size:3.4rem}.gs-hero-media{min-height:390px}.hero-floating-card{padding:18px 20px;min-width:210px}.gs-benefits{grid-template-columns:1fr}.gs-benefit{border-right:0!important;border-bottom:1px solid #e8e3db!important;padding:24px 22px}.gs-section{padding:75px 20px}.section-heading h2{font-size:2.8rem}.category-showcase{display:flex;flex-direction:column}.category-tile{height:330px}.products-home .product-grid{grid-template-columns:1fr 1fr;gap:28px 10px}.products-home .product-card-name{font-size:1rem}.products-home .product-card-installment,.products-home .product-card-delivery{font-size:.62rem}.products-home .product-card-cta{font-size:.6rem}.gs-editorial{margin-top:0}.editorial-image{min-height:430px}.editorial-copy{padding:60px 24px}.editorial-copy h2{font-size:3rem}.gs-band{padding:75px 20px}.gs-band h2{font-size:3rem}.band-steps{grid-template-columns:1fr}.band-steps>div{border-right:0;border-bottom:1px solid rgba(255,255,255,.16);padding-left:0;padding-right:0}.band-steps span{margin-bottom:14px}.delivery-copy h2{font-size:3rem}.delivery-visual{min-height:280px}.delivery-number{font-size:6rem}.gs-faq #faqContainer{margin-left:0}.gs-final-cta{padding:58px 24px}.gs-final-cta h2{font-size:2.9rem}}
