/*
Theme Name:  Mirage V3
Theme URI:   https://mirageac.com.br
Description: Tema Mirage V3 — layout 2025. Desenvolvido por André para Mirage Ambientes Corporativos.
Author:      André
Version:     3.2.0
Text Domain: mirage-v3
*/

/* ============================================================
   GOOGLE FONTS — carregadas via functions.php (wp_enqueue)
   DM Sans + Cormorant Garamond  (Brandbook Mirage 2025 V5)
   ============================================================ */


:root {
  --bordo:     #622D38;
  --bordo-dk:  #4A1F28;
  --bordo-lt:  #8A4254;   /* NUNCA usar como texto sobre fundos escuros */
  --rose:      #C4838F;   /* bordô claro acessível — legível sobre azul e escuros */
  --cobre:     #B87A5A;   /* cobre terroso — complementa a paleta, legível sobre escuros */
  --bordo-10:  rgba(98,45,56,.1);
  --bordo-20:  rgba(98,45,56,.2);
  --azul:      #253746;
  --azul-lt:   #344F63;
  --azul-10:   rgba(37,55,70,.1);
  --verde:     #657C78;
  --areia:     #E0DED6;
  --areia-lt:  #F2F0EB;
  --areia-dk:  #C8C4B8;
  --white:     #FAFAF8;
  --dark:      #0F0C0D;
  --tx-1:      #1A1416;
  --tx-2:      #4A4340;
  --tx-3:      #8A837A;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-out:  cubic-bezier(.0,0,.2,1);
  /* Brand curve motif — linhas retas + detalhe curvo */
  --rc-tl: 52px 0 0 0;
  --rc-tr: 0 52px 0 0;
  --rc-br: 0 0 52px 0;
  --rc-bl: 0 0 0 52px;
  --rc-alt: 0 52px 0 52px;
  --rc-main: 52px 0 52px 0;
}
/* ============================================================
   RESET
   ============================================================ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{font-size:17px;scroll-behavior:smooth;overflow-x:hidden}
body{font-family:'DM Sans',system-ui,sans-serif;background:var(--white);color:var(--tx-1);line-height:1.65;overflow-x:hidden}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;outline:none;background:none}
input,textarea,select{font-family:inherit;outline:none;border:none}
ul,ol{list-style:none}

/* ============================================================
   UTILITIES
   ============================================================ */
.container{width:100%;max-width:1380px;margin:0 auto;padding:0 clamp(1rem,4vw,2.5rem)}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
.hide{display:none!important}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.t-display{font-family:'Cormorant Garamond',Georgia,serif;font-weight:400;line-height:1.08}
.t-display em{font-style:italic;color:var(--azul)}
.t-label{font-size:.68rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement{
  background:var(--azul);color:var(--areia);
  font-size:.7rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;
  text-align:center;padding:.6rem 1rem;
  position:relative;z-index:300;
}
.announcement b{color:#fff;font-weight:700}
.announcement a{color:rgba(224,222,214,.7);text-decoration:underline;text-underline-offset:2px}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky;top:0;z-index:200;
  background:rgba(250,250,248,.96);
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid var(--bordo-10);
  transition:box-shadow .3s var(--ease);
}
.site-header.scrolled{box-shadow:0 4px 40px rgba(0,0,0,.1)}

.h-wrap{
  display:flex;align-items:center;justify-content:space-between;
  height:68px;gap:1rem;
}

/* Logo */
.logo{display:flex;align-items:center;flex-shrink:0;cursor:pointer;height:100%;padding:.8rem 0}
.logo img{height:38px;width:auto;object-fit:contain;display:block}
.logo-fallback{display:none;align-items:center;gap:10px}
.logo-fallback-mark{
  width:36px;height:36px;position:relative;flex-shrink:0;
}
.logo-fallback-mark svg{width:100%;height:100%}
.logo-fallback-text{font-family:'Cormorant Garamond',serif;font-size:1.25rem;font-weight:400;color:var(--azul);line-height:1.1}

/* NAV */
.main-nav{display:none;align-items:center}
@media(min-width:960px){.main-nav{display:flex}}

.nav-item{position:relative}
.nav-trigger{
  display:flex;align-items:center;gap:.3rem;
  padding:.55rem 1rem;
  font-size:.8rem;font-weight:500;letter-spacing:.02em;
  color:var(--tx-2);
  cursor:pointer;
  transition:color .2s;
  user-select:none;
  background:none;border:none;
}
.nav-trigger:hover,.nav-item.open .nav-trigger{color:var(--azul)}
.nav-trigger .chev{
  width:14px;height:14px;
  stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
  transition:transform .25s var(--ease);flex-shrink:0;
}
.nav-item.open .chev{transform:rotate(180deg)}

/* ── DROPDOWN SIMPLES (Serviços e outros menus com filhos) ── */
.nav-dropdown { position:relative; }
.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border-top: 2px solid var(--azul);
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
  border-radius: 0 0 var(--rc-tl) var(--rc-tl);
  padding: .5rem 0;
  z-index: 500;
  animation: megaIn .2s var(--ease-out) both;
}
.nav-dropdown.open .nav-dropdown-panel { display: block; }
.nav-dropdown-all {
  display: block;
  padding: .65rem 1.25rem .55rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--azul); text-decoration: none;
  border-bottom: 1px solid var(--areia-lt);
  margin-bottom: .25rem;
}
.nav-dropdown-all:hover { color: var(--bordo); }
.nav-dropdown-item {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .8rem; font-weight: 500; color: var(--tx-2);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-dropdown-item:hover { background: var(--areia-lt); color: var(--azul); }

/* ── MEGA MENU ── */
/* ── MEGA MENU — base ── */
.mega{
  display:none;
  position:fixed;
  top:var(--mega-top,68px);
  left:0;right:0;
  background:#fff;
  border-top:2px solid var(--azul);
  box-shadow:0 28px 80px rgba(0,0,0,.18);
  animation:megaIn .25s var(--ease-out) both;
  z-index:500;
  max-height:calc(100svh - 68px);
  overflow-y:auto;
}
.nav-item.open .mega{display:block}
@keyframes megaIn{
  from{opacity:0;transform:translateY(-12px)}
  to{opacity:1;transform:translateY(0)}
}

/* ── Mega inner wrapper ── */
.mega-inner{
  display:grid;
  max-width:1380px;margin:0 auto;
  padding:0 clamp(1.5rem,4vw,2.5rem);
}
/* layout 3 colunas padrão */
.mega-inner.cols-3{grid-template-columns:220px 1fr 260px}
/* layout 4 colunas */
.mega-inner.cols-4{grid-template-columns:200px 1fr 1fr 240px}

/* ── Painel esquerdo (sidebar escura) ── */
.mega-left{
  background:var(--azul);
  padding:2.5rem 1.75rem;
  display:flex;flex-direction:column;
  min-height:460px;
}
.mega-left-eye{
  font-size:.58rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;
  color:var(--cobre);margin-bottom:.6rem;
}
.mega-left-title{
  font-family:'Cormorant Garamond',serif;
  font-size:1.55rem;font-weight:400;
  color:var(--areia);line-height:1.2;
  margin-bottom:2rem;
}
.mega-left-title em{font-style:italic;opacity:.55}
.mega-left-links{display:flex;flex-direction:column;gap:0;flex:1}
.mega-left-link{
  display:flex;align-items:center;justify-content:space-between;
  padding:.72rem 0;
  border-bottom:1px solid rgba(224,222,214,.07);
  cursor:pointer;
  transition:padding-left .2s var(--ease);
}
.mega-left-link:last-child{border-bottom:none}
.mega-left-link:hover{padding-left:.5rem}
.mega-left-link-label{
  font-size:.82rem;font-weight:500;
  color:rgba(224,222,214,.55);
  transition:color .2s;
}
.mega-left-link:hover .mega-left-link-label{color:#fff}
.mega-left-link-count{
  font-size:.6rem;color:rgba(224,222,214,.5);
  letter-spacing:.06em;
}
.mega-left-cta{
  margin-top:2rem;padding-top:1.5rem;
  border-top:1px solid rgba(224,222,214,.08);
}
.mega-left-cta-btn{
  display:flex;align-items:center;gap:.5rem;
  background:var(--azul);color:#fff;
  padding:.65rem 1.1rem;
  font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  transition:background .2s;cursor:pointer;border:none;width:100%;
  border-radius:var(--rc-bl);
}
.mega-left-cta-btn:hover{background:var(--azul-lt)}
.mega-left-cta-btn svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;flex-shrink:0}

/* ── Área central com produtos/conteúdo ── */
.mega-center{
  padding:2.5rem 2rem;
  display:flex;flex-direction:column;
  border-right:1px solid var(--areia-lt);
}
.mega-center + .mega-center{border-right:none}
.mega-section-head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:1.5rem;
  padding-bottom:.75rem;
  border-bottom:1px solid var(--areia-lt);
}
.mega-section-label{
  font-size:.6rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--bordo);
  display:flex;align-items:center;gap:.5rem;
}
.mega-section-label::before{content:'';width:18px;height:1.5px;background:var(--azul);flex-shrink:0}
.mega-section-all{
  font-size:.65rem;font-weight:600;color:var(--tx-3);
  display:flex;align-items:center;gap:.25rem;
  cursor:pointer;transition:color .2s;
}
.mega-section-all:hover{color:var(--azul)}
.mega-section-all svg{width:10px;height:10px;stroke:currentColor;fill:none;stroke-width:2}

/* Grid de cards no centro */
.mega-grid{
  display:grid;gap:.75rem;
  grid-template-columns:repeat(3,1fr);
}
.mega-grid.cols-2{grid-template-columns:repeat(2,1fr)}
.mega-grid.cols-4{grid-template-columns:repeat(4,1fr)}

.mega-card{
  cursor:pointer;
  transition:transform .2s var(--ease);
  position:relative;
}
.mega-card:hover{transform:translateY(-3px)}
.mega-card-img{
  aspect-ratio:4/3;overflow:hidden;
  background:var(--areia-lt);
  border-radius:var(--rc-tl);
  margin-bottom:.65rem;position:relative;
}
.mega-card-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .5s var(--ease);
}
.mega-card:hover .mega-card-img img{transform:scale(1.07)}
.mega-card-badge{
  position:absolute;top:.5rem;left:.5rem;
  background:var(--azul);color:#fff;
  font-size:.55rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  padding:.2rem .5rem;z-index:2;
}
.mega-card-name{
  font-size:.8rem;font-weight:600;color:var(--tx-1);
  line-height:1.25;margin-bottom:.2rem;
}
.mega-card-sub{
  font-size:.65rem;color:var(--tx-3);
  letter-spacing:.06em;text-transform:uppercase;
}
.mega-card-add{
  display:none;
  position:absolute;bottom:.5rem;right:.5rem;
  background:var(--azul);color:#fff;
  padding:.3rem .6rem;
  font-size:.58rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;
  cursor:pointer;transition:background .15s;z-index:3;
}
.mega-card:hover .mega-card-add{display:flex;align-items:center;gap:.25rem}
.mega-card-add svg{width:10px;height:10px;stroke:currentColor;fill:none;stroke-width:2.5}

/* Lista simples (links) no centro */
.mega-list{display:flex;flex-direction:column;gap:0}
.mega-list-item{
  display:flex;align-items:center;gap:.75rem;
  padding:.65rem 0;
  border-bottom:1px solid var(--areia-lt);
  cursor:pointer;
  transition:padding-left .15s var(--ease);
}
.mega-list-item:last-child{border-bottom:none}
.mega-list-item:hover{padding-left:.4rem}
.mega-list-icon{
  width:32px;height:32px;flex-shrink:0;
  background:var(--areia-lt);
  display:flex;align-items:center;justify-content:center;
}
.mega-list-icon svg{width:14px;height:14px;stroke:var(--azul);fill:none;stroke-width:1.5}
.mega-list-text{}
.mega-list-name{font-size:.82rem;font-weight:600;color:var(--tx-1);line-height:1.2}
.mega-list-desc{font-size:.68rem;color:var(--tx-3);margin-top:.05rem}
.mega-list-arrow{margin-left:auto;opacity:0;transition:opacity .15s,transform .15s}
.mega-list-arrow svg{width:12px;height:12px;stroke:var(--azul);fill:none;stroke-width:2}
.mega-list-item:hover .mega-list-arrow{opacity:1;transform:translateX(3px)}

/* ── Painel direito (feature/promo) ── */
.mega-right{
  padding:2.5rem 1.75rem;
  display:flex;flex-direction:column;
  gap:1.5rem;
  background:var(--areia-lt);
}
.mega-promo{
  position:relative;overflow:hidden;
  border-radius:var(--rc-main);
  cursor:pointer;flex:1;min-height:200px;
}
.mega-promo img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .6s var(--ease);
  position:absolute;inset:0;
}
.mega-promo:hover img{transform:scale(1.05)}
.mega-promo::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to top,rgba(37,55,70,.9) 0%,rgba(37,55,70,.2) 60%,transparent 100%);
}
.mega-promo-body{
  position:absolute;bottom:0;left:0;right:0;
  padding:1.25rem;z-index:2;
}
.mega-promo-tag{
  font-size:.58rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:var(--rose);margin-bottom:.3rem;
}
.mega-promo-title{
  font-family:'Cormorant Garamond',serif;
  font-size:1.05rem;font-weight:400;color:#fff;line-height:1.25;
}
.mega-promo-link{
  display:inline-flex;align-items:center;gap:.3rem;
  font-size:.65rem;font-weight:700;color:rgba(224,222,214,.6);
  letter-spacing:.1em;text-transform:uppercase;
  margin-top:.5rem;
  transition:color .2s;
}
.mega-promo:hover .mega-promo-link{color:#fff}
.mega-promo-link svg{width:10px;height:10px;stroke:currentColor;fill:none;stroke-width:2}

.mega-stats-mini{
  display:grid;grid-template-columns:1fr 1fr;gap:.75rem;
}
.mega-stat-mini{
  background:#fff;padding:.9rem;
  border-radius:2px;
}
.mega-stat-mini-n{
  font-family:'Cormorant Garamond',serif;
  font-size:1.5rem;font-weight:400;color:var(--azul);line-height:1;
}
.mega-stat-mini-l{
  font-size:.6rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;
  color:var(--tx-3);margin-top:.2rem;
}

.mega-contact-strip{
  background:var(--azul);
  padding:.9rem 1.1rem;
  display:flex;align-items:center;gap:.75rem;
}
.mega-contact-strip svg{width:18px;height:18px;stroke:#fff;fill:none;stroke-width:1.5;flex-shrink:0}
.mega-contact-strip-text{}
.mega-contact-strip-label{font-size:.58rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:rgba(224,222,214,.5)}
.mega-contact-strip-val{font-size:.88rem;font-weight:600;color:#fff}

/* ── Footer bar do mega ── */
.mega-footer-bar{
  background:var(--areia-lt);
  border-top:1px solid var(--areia-dk);
  padding:.85rem clamp(1.5rem,4vw,2.5rem);
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;flex-wrap:wrap;
}
.mega-footer-bar-links{display:flex;gap:1.5rem;flex-wrap:wrap}
.mega-footer-bar-link{
  font-size:.68rem;font-weight:600;color:var(--tx-2);
  display:flex;align-items:center;gap:.3rem;
  cursor:pointer;transition:color .2s;
  letter-spacing:.03em;
}
.mega-footer-bar-link:hover{color:var(--azul)}
.mega-footer-bar-link svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:2}
.mega-footer-bar-right{
  font-size:.65rem;color:var(--tx-3);
  display:flex;align-items:center;gap:.4rem;
}
.mega-footer-bar-right span{
  background:var(--verde);color:#fff;
  font-size:.55rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  padding:.18rem .5rem;
}

/* Header actions */
.h-actions{display:none;align-items:center;gap:.5rem}
@media(min-width:960px){.h-actions{display:flex}}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.45rem;
  padding:.6rem 1.35rem;
  font-size:.78rem;font-weight:600;letter-spacing:.07em;text-transform:uppercase;
  transition:all .25s var(--ease);
  cursor:pointer;border:none;
}
.btn-primary{background:var(--azul);color:#fff;border-radius:var(--rc-bl)}
.btn-primary:hover{background:var(--azul-lt);transform:translateY(-1px);box-shadow:0 8px 24px rgba(37,55,70,.3)}
.btn-ghost{color:var(--tx-2);padding:.6rem .8rem;border-radius:4px}
.btn-ghost:hover{color:var(--azul);background:var(--azul-10)}
.btn-outline{border:1.5px solid var(--azul);color:var(--azul);background:transparent;border-radius:var(--rc-bl)}
.btn-outline:hover{background:var(--azul);color:#fff}
.btn-sand{background:var(--areia);color:var(--azul);border-radius:var(--rc-bl)}
.btn-sand:hover{background:var(--areia-dk)}
.btn-white{background:#fff;color:var(--azul);border-radius:var(--rc-bl)}
.btn-white:hover{background:var(--areia)}
.btn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2}

/* Cart btn */
.cart-btn{
  position:relative;
  width:42px;height:42px;border-radius:50%;
  background:var(--areia-lt);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background .2s;
  border:none;
  flex-shrink:0;
}
.cart-btn:hover{background:var(--areia-dk)}
.cart-btn svg{width:19px;height:19px;stroke:var(--azul);fill:none;stroke-width:2}
.cart-count{
  position:absolute;top:-3px;right:-3px;
  min-width:18px;height:18px;border-radius:50%;
  background:var(--azul);color:#fff;
  font-size:.6rem;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  transform:scale(0);transition:transform .3s var(--ease);
  line-height:1;padding:0 3px;
}
.cart-count.show{transform:scale(1)}

/* Hamburger */
.ham{display:flex;flex-direction:column;gap:5px;padding:8px;background:none;border:none;cursor:pointer}
.ham span{display:block;width:22px;height:1.5px;background:var(--azul);transition:all .25s var(--ease);transform-origin:center}
.ham.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.ham.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.ham.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
@media(min-width:960px){.ham{display:none}}

/* ============================================================
   HERO — ROTATIVE SLIDER
   ============================================================ */
.hero{
  position:relative;overflow:hidden;
  height:100svh;min-height:580px;max-height:980px;
}
.hero-track{
  position:absolute;inset:0;
}
.hero-slide{
  position:absolute;inset:0;
  opacity:0;
  transition:opacity .95s var(--ease);
  pointer-events:none;
  overflow:hidden;
}
.hero-slide.active{
  opacity:1;
  pointer-events:auto;
  z-index:1;
}
.hero-slide-bg{position:absolute;inset:0;background:var(--azul)}
.hero-slide-bg img{
  width:100%;height:100%;object-fit:cover;object-position:center;
  transition:transform 7s linear;transform:scale(1.06);
}
.hero-slide.active .hero-slide-bg img{transform:scale(1)}
.hero-slide::after{
  content:'';position:absolute;inset:0;z-index:1;
  background:
    linear-gradient(90deg,rgba(10,8,9,.85) 0%,rgba(10,8,9,.5) 45%,rgba(10,8,9,.15) 100%),
    linear-gradient(0deg,rgba(37,55,70,.7) 0%,transparent 50%);
}
.hero-copy{
  position:absolute;left:0;right:0;top:0;bottom:0;z-index:5;
  display:flex;align-items:center;
  padding:0 clamp(1.5rem,8vw,8rem);
  pointer-events:none;
}
.hero-copy-inner{max-width:640px;pointer-events:auto}
.hero-eyebrow{
  display:flex;align-items:center;gap:.75rem;
  font-size:.68rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
  color:rgba(224,222,214,.55);margin-bottom:1.5rem;
  opacity:0;transform:translateY(20px);
  transition:opacity .7s .2s var(--ease),transform .7s .2s var(--ease);
}
.hero-eyebrow::before{content:'';width:28px;height:1px;background:var(--rose);flex-shrink:0}
.hero-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.6rem,3.8vw,3rem);
  font-weight:300;line-height:1.08;
  color:#fff;margin-bottom:1.5rem;
  opacity:0;transform:translateY(24px);
  transition:opacity .75s .35s var(--ease),transform .75s .35s var(--ease);
}
.hero-title em{font-style:italic;color:rgba(224,222,214,.75)}
.hero-sub{
  font-size:clamp(.9rem,1.5vw,1.05rem);
  color:rgba(224,222,214,.65);line-height:1.75;
  max-width:38ch;margin-bottom:2.5rem;
  opacity:0;transform:translateY(20px);
  transition:opacity .7s .5s var(--ease),transform .7s .5s var(--ease);
}
.hero-btns{
  display:flex;gap:1rem;flex-wrap:wrap;
  opacity:0;transform:translateY(18px);
  transition:opacity .65s .65s var(--ease),transform .65s .65s var(--ease);
}
.hero-slide.active .hero-eyebrow,
.hero-slide.active .hero-title,
.hero-slide.active .hero-sub,
.hero-slide.active .hero-btns{opacity:1;transform:translateY(0)}
.hero-arrows{position:absolute;bottom:50%;transform:translateY(50%);left:0;right:0;z-index:10;display:flex;justify-content:space-between;padding:0 1.5rem;pointer-events:none}
.hero-arrow{
  width:48px;height:48px;
  background:rgba(15,12,13,.3);border:1px solid rgba(224,222,214,.25);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;pointer-events:auto;
  transition:background .2s,border-color .2s;
}
.hero-arrow:hover{background:var(--azul);border-color:var(--azul)}
.hero-arrow svg{width:20px;height:20px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.hero-dots{
  position:absolute;bottom:9rem;left:clamp(1.5rem,8vw,8rem);z-index:10;
  display:flex;gap:.65rem;align-items:center;
}
.hero-dot{
  width:28px;height:2px;background:rgba(224,222,214,.3);
  cursor:pointer;transition:background .3s,width .3s var(--ease);
}
.hero-dot.active{background:var(--azul);width:52px}
.hero-counter{
  position:absolute;bottom:9.5rem;right:clamp(1.5rem,4vw,3rem);z-index:10;
  font-family:'Cormorant Garamond',serif;
  color:rgba(224,222,214,.6);font-size:1rem;
  display:flex;align-items:baseline;gap:.35rem;
}
.hero-counter strong{color:#fff;font-size:1.5rem;font-weight:300}
.hero-wave{
  position:absolute;bottom:-1px;left:0;right:0;z-index:6;
  pointer-events:none;line-height:0;
}
.hero-wave svg{display:block;width:100%;height:auto}
.hero-stats{
  position:absolute;bottom:0;left:0;right:0;z-index:7;
  display:grid;grid-template-columns:repeat(3,1fr);
  background:rgba(37,55,70,.92);backdrop-filter:blur(14px);
  height:7.5rem;
}
.hero-stat{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;padding:0 1rem;
  border-right:1px solid rgba(224,222,214,.1);
}
.hero-stat:last-child{border-right:none}
.hero-stat-n{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,3rem);font-weight:400;
  color:#fff;line-height:1;
}
.hero-stat-l{font-size:.65rem;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:rgba(224,222,214,.5);margin-top:.3rem}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section{padding:clamp(4rem,8vw,7rem) 0}
.section-label{
  display:flex;align-items:center;gap:.7rem;
  font-size:.66rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;
  color:var(--azul);margin-bottom:1rem;
}
.section-label::before{content:'';width:26px;height:1.5px;background:var(--azul);flex-shrink:0}
.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.2rem,5vw,3.6rem);
  font-weight:300;line-height:1.1;color:var(--tx-1);
}
.section-title em{font-style:italic;color:var(--azul)}
/* Em seções com fundo verde/azul, o <em> precisa de cor diferente */
.processo-section .section-title em{ color:rgba(255,255,255,.75) }
.dif-section .section-title em{ color:var(--cobre) }
.section-sub{font-size:.95rem;color:var(--tx-2);line-height:1.8;max-width:48ch;margin-top:.85rem}

/* reveal on scroll */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.in{opacity:1;transform:none}
.reveal-l{opacity:0;transform:translateX(-28px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal-l.in{opacity:1;transform:none}
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}.d5{transition-delay:.5s}

/* ============================================================
   PRODUTOS
   ============================================================ */
.produtos-section{background:var(--areia-lt)}

.cat-strip{
  display:flex;gap:0;overflow-x:auto;scrollbar-width:none;
  border-bottom:1px solid var(--areia-dk);
  margin-bottom:2.5rem;
}
.cat-strip::-webkit-scrollbar{display:none}
.cat-tab{
  padding:.8rem 1.4rem;
  font-size:.78rem;font-weight:500;color:var(--tx-3);
  border-bottom:2px solid transparent;
  white-space:nowrap;cursor:pointer;
  transition:color .2s,border-color .2s;
}
.cat-tab.active{color:var(--azul);border-bottom-color:var(--azul);font-weight:600}
.cat-tab:hover:not(.active){color:var(--tx-1)}

/* Grade de categorias-pai (modo "Todos") */
.cat-grid{
  display:grid;gap:1.25rem;
  grid-template-columns:repeat(2,1fr);
  margin-bottom:0;
}
@media(min-width:600px){.cat-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:960px){.cat-grid{grid-template-columns:repeat(4,1fr)}}

.cat-card{
  display:block;text-decoration:none;
  background:#fff;overflow:hidden;
  border-radius:var(--rc-tl);
  transition:transform .3s var(--ease),box-shadow .3s var(--ease);
}
.cat-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.cat-card-img{aspect-ratio:4/3;overflow:hidden;position:relative;background:var(--areia-lt)}
.cat-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .55s var(--ease)}
.cat-card:hover .cat-card-img img{transform:scale(1.06)}
.cat-card-img-placeholder{width:100%;height:100%;background:linear-gradient(135deg,var(--areia-lt),var(--areia-dk))}
.cat-card-label{
  display:flex;align-items:center;justify-content:space-between;
  padding:.9rem 1.1rem;
  font-size:.82rem;font-weight:600;color:var(--azul);
  border-top:2px solid var(--areia-lt);
  transition:color .2s;
}
.cat-card:hover .cat-card-label{color:var(--bordo)}

/* Grade de produtos (modo categoria filtrada) */
.prod-grid{display:grid;gap:1.25rem;grid-template-columns:repeat(2,1fr)}
@media(min-width:700px){.prod-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:960px){.prod-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1200px){.prod-grid{grid-template-columns:repeat(4,1fr)}}

.prod-card-img-placeholder{width:100%;height:100%;background:var(--areia-lt);display:flex;align-items:center;justify-content:center}
.prod-empty{grid-column:1/-1;text-align:center;padding:4rem;background:#fff;border:2px dashed var(--areia-dk)}
.prod-empty p{font-family:'Cormorant Garamond',serif;font-size:1.4rem;color:var(--tx-3)}
.prod-empty small{font-size:.85rem;color:var(--tx-3);margin-top:.5rem;display:block}

.prod-card{
  background:#fff;overflow:hidden;cursor:pointer;position:relative;
  transition:transform .3s var(--ease),box-shadow .3s var(--ease);
  display:flex;flex-direction:column;
}
.prod-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.prod-card-img{
  aspect-ratio:4/3;overflow:hidden;position:relative;background:var(--areia-lt);flex-shrink:0;
}
.prod-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .55s var(--ease)}
.prod-card:hover .prod-card-img img{transform:scale(1.05)}
.prod-badge{
  position:absolute;top:.85rem;left:.85rem;z-index:2;
  background:var(--azul);color:#fff;
  font-size:.6rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  padding:.28rem .7rem;
}
.prod-body{padding:1.25rem;display:flex;flex-direction:column;flex:1}
.prod-cat{font-size:.62rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--azul);margin-bottom:.35rem}
.prod-name{font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:400;color:var(--tx-1);line-height:1.2;margin-bottom:.45rem}
.prod-desc{font-size:.8rem;color:var(--tx-2);line-height:1.65;flex:1}
.prod-foot{
  display:flex;align-items:center;justify-content:space-between;gap:.5rem;
  margin-top:1.1rem;padding-top:1rem;
  border-top:1px solid var(--areia-lt);
  flex-wrap:wrap;
}
.add-btn{
  display:flex;align-items:center;gap:.4rem;
  background:var(--azul);color:#fff;
  padding:.55rem 1rem;
  font-size:.72rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  transition:background .2s,transform .2s;
  border-radius:var(--rc-bl);
  border:none;cursor:pointer;
  white-space:nowrap;
  flex-shrink:0;
}
.add-btn:hover{background:var(--bordo-dk);transform:translateX(2px)}
.add-btn.added{background:var(--verde)}
.add-btn svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2;flex-shrink:0}
.prod-tag{
  font-size:.62rem;background:var(--areia-lt);color:var(--tx-3);
  padding:.25rem .6rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:100%;
  flex-shrink:1;
  min-width:0;
}
.prod-card.hidden{display:none}

/* ============================================================
   PROCESSO
   ============================================================ */
.processo-section{background:var(--verde);overflow:hidden;position:relative}
.processo-section::before{
  content:'';position:absolute;top:-120px;right:-120px;
  width:500px;height:500px;border-radius:50%;
  background:rgba(255,255,255,.06);pointer-events:none;
}
.processo-grid{
  display:grid;grid-template-columns:1fr;gap:3.5rem;align-items:center;
}
@media(min-width:960px){.processo-grid{grid-template-columns:1fr 1fr;gap:5rem}}

.processo-steps{display:flex;flex-direction:column;gap:0}
.step{
  display:flex;gap:1.5rem;
  padding:1.6rem 0;border-bottom:1px solid rgba(255,255,255,.12);
}
.step:last-child{border-bottom:none}
.step-n{
  width:48px;height:48px;flex-shrink:0;
  background:rgba(255,255,255,.15);
  display:flex;align-items:center;justify-content:center;
  border-radius:0 0 16px 0;
  font-family:'Cormorant Garamond',serif;font-size:1.4rem;font-weight:400;color:#fff;
}
.step-body{}
.step-tag{font-size:.6rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.6);margin-bottom:.2rem}
.step-title{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:400;color:#fff;margin-bottom:.3rem;line-height:1.3}
.step-desc{font-size:.82rem;color:rgba(255,255,255,.72);line-height:1.7}

.processo-img-wrap{
  position:relative;
  border-radius:var(--rc-main);
  overflow:hidden;
  aspect-ratio:4/5;
}
@media(min-width:960px){.processo-img-wrap{aspect-ratio:3/4}}
.processo-img-wrap img{width:100%;height:100%;object-fit:cover}
.processo-img-caption{
  position:absolute;bottom:0;left:0;right:0;
  padding:2rem 1.75rem;
  background:linear-gradient(to top,rgba(50,65,62,.95) 0%,transparent 100%);
}
.processo-img-caption p{font-family:'Cormorant Garamond',serif;font-size:1.2rem;font-weight:400;color:var(--areia)}
.processo-img-caption span{font-size:.68rem;color:rgba(224,222,214,.45);letter-spacing:.1em;text-transform:uppercase}

/* ============================================================
   CASES — BENTO GRID
   ============================================================ */
.cases-section{background:#fff}
.cases-bento{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:340px 260px;
  gap:1.25rem;
  margin-top:3rem;
}
@media(min-width:960px){
  .cases-bento{
    grid-template-columns:1.4fr 1fr;
    grid-template-rows:400px 300px;
  }
}
.case-card{
  position:relative;overflow:hidden;cursor:pointer;
  transition:transform .3s var(--ease);
}
.case-card:hover{transform:scale(.99)}
.case-card.span-col{grid-column:1/2;grid-row:1/3}
@media(min-width:960px){.case-card.span-col{grid-column:1/2;grid-row:1/3}}
.case-card img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .7s var(--ease);
}
.case-card:hover img{transform:scale(1.04)}
.case-card::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to top,rgba(37,55,70,.92) 0%,rgba(37,55,70,.1) 55%,transparent 100%);
  z-index:1;
}
.case-overlay{position:absolute;bottom:0;left:0;right:0;padding:1.75rem;z-index:2}
.case-client{
  display:block;
  font-family:'Cormorant Garamond',serif;font-size:1.6rem;font-weight:400;
  color:#fff;margin-bottom:.25rem;line-height:1.15;
}
.case-card:not(.span-col) .case-client{font-size:1.2rem}
.case-info{font-size:.7rem;color:rgba(224,222,214,.55);letter-spacing:.06em}
.case-tags{display:flex;flex-wrap:wrap;gap:.35rem;margin-top:.7rem}
.case-tag{
  font-size:.58rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  padding:.22rem .55rem;
  background:rgba(98,45,56,.55);color:var(--areia);
  backdrop-filter:blur(4px);
}
.case-card.span-col .case-client{font-size:2rem}
@media(min-width:960px){.case-card.span-col .case-client{font-size:2.5rem}}

/* ============================================================
   SHOWROOMS
   ============================================================ */
.showrooms-section{
  background:var(--areia-lt);
  position:relative;overflow:hidden;
}
.showrooms-section::after{
  content:'';position:absolute;bottom:0;right:0;
  width:260px;height:260px;
  background:var(--bordo);opacity:.04;
  border-radius:50% 0 0 0;
  pointer-events:none;
}
.showrooms-grid{
  display:grid;grid-template-columns:1fr;gap:1.25rem;margin-top:3rem;
}
@media(min-width:600px){.showrooms-grid{grid-template-columns:1fr 1fr}}
@media(min-width:960px){.showrooms-grid{grid-template-columns:repeat(3,1fr)}}

.showroom-card{
  background:#fff;overflow:hidden;
  transition:transform .3s var(--ease),box-shadow .3s var(--ease);
  border-radius:var(--rc-tl);
}
.showroom-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.showroom-img{aspect-ratio:16/9;overflow:hidden;position:relative}
.showroom-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.showroom-card:hover .showroom-img img{transform:scale(1.04)}
.showroom-img-fallback{
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--azul),var(--azul-lt));
}
.showroom-img-fallback svg{width:56px;height:56px;stroke:rgba(224,222,214,.3);fill:none;stroke-width:1}
.showroom-head{
  background:var(--azul);
  padding:1rem 1.4rem;
  display:flex;align-items:center;justify-content:space-between;
}
.showroom-name{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:400;color:var(--areia)}
.showroom-badge{font-size:.58rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;background:rgba(224,222,214,.12);color:var(--areia);padding:.25rem .6rem}
.showroom-body{padding:1.25rem 1.4rem 1.5rem}
.showroom-address{font-size:.82rem;color:var(--tx-2);line-height:1.65}
.showroom-address strong{display:block;color:var(--tx-1);font-weight:600;margin-bottom:.1rem}
.showroom-link{
  display:inline-flex;align-items:center;gap:.35rem;
  font-size:.72rem;font-weight:700;color:var(--bordo);
  letter-spacing:.06em;text-transform:uppercase;
  margin-top:1rem;
}
.showroom-link svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.dif-section{background:var(--bordo);overflow:hidden;position:relative}
.dif-grid{display:grid;grid-template-columns:1fr;gap:1px;background:rgba(255,255,255,.06);margin-top:3.5rem}
@media(min-width:600px){.dif-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:960px){.dif-grid{grid-template-columns:repeat(4,1fr)}}
.dif-item{
  background:var(--bordo);
  padding:2.25rem 2rem;
  position:relative;overflow:hidden;
  transition:background .25s;
}
.dif-item::after{
  content:'';position:absolute;top:0;left:0;width:3px;height:0;
  background:var(--cobre);transition:height .3s var(--ease);
}
.dif-item:hover{background:var(--bordo-dk)}
.dif-item:hover::after{height:100%}
.dif-icon{
  width:48px;height:48px;
  background:rgba(255,255,255,.10);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.25rem;
  border-radius:0 0 16px 0;
}
.dif-icon svg{width:24px;height:24px;stroke:#fff;fill:none;stroke-width:1.5}
.dif-title{font-family:'Cormorant Garamond',serif;font-size:1.05rem;font-weight:400;color:#fff;margin-bottom:.45rem;line-height:1.2}
.dif-desc{font-size:.82rem;color:rgba(255,255,255,.65);line-height:1.7}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section{
  background:var(--azul);
  padding:clamp(4rem,8vw,7rem) 0;
  position:relative;overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;top:-140px;right:-100px;
  width:550px;height:550px;border-radius:50%;
  background:rgba(255,255,255,.03);pointer-events:none;
}
.cta-section::after{
  content:'';position:absolute;bottom:-130px;left:-80px;
  width:420px;height:420px;border-radius:50%;
  background:rgba(255,255,255,.03);pointer-events:none;
}
.cta-inner{position:relative;z-index:2;text-align:center;max-width:700px;margin:0 auto}
.cta-eye{font-size:.66rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--cobre);margin-bottom:1rem}
.cta-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.4rem,5.5vw,4rem);
  font-weight:300;color:#fff;line-height:1.08;
  margin-bottom:1.25rem;
}
.cta-title em{font-style:italic;color:var(--areia)}
.cta-desc{font-size:.95rem;color:rgba(224,222,214,.65);line-height:1.8;margin-bottom:2.5rem}
.cta-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{background:var(--dark);color:rgba(224,222,214,.6);padding:4.5rem 0 2.5rem}
.footer-top{
  display:grid;grid-template-columns:1fr;gap:2.5rem;
  padding-bottom:3rem;border-bottom:1px solid rgba(224,222,214,.08);
}
@media(min-width:700px){.footer-top{grid-template-columns:1fr 1fr}}
@media(min-width:960px){.footer-top{grid-template-columns:2fr 1fr 1fr 1fr}}
.footer-brand-logo{height:32px;object-fit:contain;filter:brightness(0) invert(.8);margin-bottom:.85rem}
.footer-brand-logo-fb{display:none;align-items:center;gap:8px;margin-bottom:.85rem}
.footer-brand-logo-fb svg{width:28px;height:28px}
.footer-brand-name{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:400;color:rgba(224,222,214,.85)}
.footer-brand p{font-size:.82rem;line-height:1.75;max-width:28ch}
.footer-col h4{font-size:.62rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:rgba(224,222,214,.7);margin-bottom:1.2rem}
.footer-col ul{display:flex;flex-direction:column;gap:.55rem}
.footer-col a{font-size:.82rem;transition:color .2s}
.footer-col a:hover{color:var(--areia)}
.footer-bottom{
  margin-top:2rem;
  display:flex;flex-direction:column;gap:.5rem;
  font-size:.72rem;color:rgba(224,222,214,.5);
}
@media(min-width:700px){.footer-bottom{flex-direction:row;justify-content:space-between}}

/* ============================================================
   WA FLOAT
   ============================================================ */
.wa-fab{
  position:fixed;bottom:2rem;right:2rem;z-index:700;
  width:56px;height:56px;border-radius:50%;
  background:#25D366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 26px rgba(37,211,102,.38);
  transition:transform .2s,box-shadow .2s;
  cursor:pointer;
  animation:waPop 3s ease-in-out infinite;
}
.wa-fab:hover{transform:scale(1.1);box-shadow:0 10px 34px rgba(37,211,102,.45)}
.wa-fab svg{width:28px;height:28px;fill:#fff}
@keyframes waPop{
  0%,100%{box-shadow:0 6px 26px rgba(37,211,102,.38)}
  50%{box-shadow:0 6px 26px rgba(37,211,102,.38),0 0 0 10px rgba(37,211,102,.08)}
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay{
  display:none;position:fixed;inset:0;
  background:rgba(0,0,0,.5);z-index:800;
  backdrop-filter:blur(4px);
}
.cart-overlay.open{display:block;animation:fadeIn .25s var(--ease)}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}

.cart-drawer{
  position:fixed;top:0;right:0;bottom:0;
  width:min(460px,100vw);
  background:var(--white);z-index:900;
  display:flex;flex-direction:column;
  transform:translateX(110%);
  transition:transform .4s cubic-bezier(.4,0,.2,1);
  overflow:hidden;
}
.cart-drawer.open{transform:translateX(0)}

.cart-hd{
  background:var(--areia-lt);
  padding:1.4rem 1.75rem;
  border-bottom:1px solid var(--areia-dk);
  display:flex;align-items:center;justify-content:space-between;
  flex-shrink:0;
}
.cart-hd-info{}
.cart-hd-title{font-family:'Cormorant Garamond',serif;font-size:1.45rem;font-weight:400;color:var(--tx-1)}
.cart-hd-sub{font-size:.72rem;color:var(--tx-3);margin-top:.1rem}
.cart-close-btn{
  width:34px;height:34px;
  background:var(--areia-dk);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background .2s;
  border:none;border-radius:2px;
  flex-shrink:0;
}
.cart-close-btn:hover{background:var(--azul);color:#fff}
.cart-close-btn svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2}

.cart-body{flex:1;overflow-y:auto;padding:1.5rem 1.75rem}
.cart-empty-state{
  text-align:center;padding:4rem 1rem;
  display:flex;flex-direction:column;align-items:center;gap:1rem;
}
.cart-empty-state svg{width:56px;height:56px;stroke:var(--areia-dk);fill:none;stroke-width:1}
.cart-empty-state p{font-family:'Cormorant Garamond',serif;font-size:1.2rem;color:var(--tx-3)}

.cart-item{
  display:flex;gap:1rem;padding:1.1rem 0;
  border-bottom:1px solid var(--areia-lt);
  animation:itemIn .3s var(--ease) both;
}
@keyframes itemIn{from{opacity:0;transform:translateX(16px)}to{opacity:1;transform:none}}
.cart-item-img{
  width:76px;height:76px;flex-shrink:0;
  background:var(--areia-lt);overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.cart-item-img img{width:100%;height:100%;object-fit:cover}
.cart-item-img-ph{width:100%;height:100%;display:flex;align-items:center;justify-content:center}
.cart-item-img-ph svg{width:32px;height:32px;stroke:var(--areia-dk);fill:none;stroke-width:1.2}
.cart-item-info{flex:1;min-width:0}
.cart-item-cat{font-size:.6rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--bordo);margin-bottom:.15rem}
.cart-item-name{font-family:'Cormorant Garamond',serif;font-size:1rem;font-weight:500;color:var(--tx-1);line-height:1.25;margin-bottom:.35rem}
.cart-item-qty{
  display:flex;align-items:center;gap:.5rem;
  font-size:.75rem;color:var(--tx-3);
}
.qty-btn{
  width:24px;height:24px;
  border:1px solid var(--areia-dk);
  background:#fff;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background .15s;
  font-size:.8rem;font-weight:600;color:var(--tx-1);
  border-radius:2px;
}
.qty-btn:hover{background:var(--areia-lt)}
.qty-val{min-width:20px;text-align:center;font-weight:600;color:var(--tx-1)}
.cart-item-del{
  align-self:flex-start;
  width:28px;height:28px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:var(--tx-3);transition:color .2s;
  border:none;background:none;flex-shrink:0;
}
.cart-item-del:hover{color:var(--bordo)}
.cart-item-del svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2}

.cart-ft{
  padding:1.4rem 1.75rem;
  border-top:1px solid var(--areia-dk);
  background:var(--areia-lt);
  flex-shrink:0;
}
.cart-summary{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1.25rem}
.cart-summary-row{display:flex;justify-content:space-between;font-size:.8rem;color:var(--tx-2)}
.cart-summary-row.total{
  font-weight:700;color:var(--tx-1);font-size:.88rem;
  padding-top:.45rem;border-top:1px solid var(--areia-dk);margin-top:.25rem;
}
.btn-orcamento{
  width:100%;
  background:var(--azul);color:#fff;
  padding:1.1rem 1.5rem;
  font-size:.82rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  display:flex;align-items:center;justify-content:center;gap:.55rem;
  transition:background .2s,transform .2s,box-shadow .2s;
  cursor:pointer;border:none;
  border-radius:var(--rc-bl);
}
.btn-orcamento:hover{background:var(--azul-lt);transform:translateY(-1px);box-shadow:0 8px 24px rgba(37,55,70,.28)}
.btn-orcamento svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2}
.btn-clear-cart{
  width:100%;margin-top:.6rem;
  background:transparent;color:var(--tx-3);
  padding:.6rem;font-size:.72rem;font-weight:500;
  text-align:center;cursor:pointer;
  transition:color .2s;border:none;
}
.btn-clear-cart:hover{color:var(--bordo)}

/* ============================================================
   MODAL ORÇAMENTO
   ============================================================ */
.modal-bg{
  display:none;
  position:fixed;inset:0;background:rgba(0,0,0,.65);z-index:1000;
  backdrop-filter:blur(6px);
  align-items:center;justify-content:center;padding:1rem;
}
.modal-bg.open{display:flex;animation:fadeIn .25s var(--ease)}

.modal{
  background:var(--white);
  width:100%;max-width:620px;max-height:92svh;
  overflow-y:auto;position:relative;
  animation:modalUp .38s cubic-bezier(.4,0,.2,1) both;
  border-radius:var(--rc-tl);
}
@keyframes modalUp{
  from{opacity:0;transform:translateY(32px) scale(.97)}
  to{opacity:1;transform:none}
}

.modal-hd{
  background:var(--azul);
  padding:2rem 2rem 1.75rem;
  position:sticky;top:0;z-index:2;
}
.modal-hd-eye{font-size:.62rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:rgba(224,222,214,.4);margin-bottom:.5rem}
.modal-hd-title{font-family:'Cormorant Garamond',serif;font-size:1.85rem;font-weight:300;color:var(--areia);line-height:1.2}
.modal-close{
  position:absolute;top:1.4rem;right:1.4rem;
  width:34px;height:34px;
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background .2s;
  border:none;border-radius:2px;
}
.modal-close:hover{background:var(--azul)}
.modal-close svg{width:15px;height:15px;stroke:var(--areia);fill:none;stroke-width:2}

.modal-body{padding:2rem}
.modal-form{display:none;flex-direction:column;gap:1.1rem}
.modal-form.show{display:flex}
.modal-success{display:none;text-align:center;padding:1.5rem .5rem 2rem}
.modal-success.show{display:block;animation:fadeIn .5s var(--ease)}

/* Resumo do pedido */
.pedido-resumo{
  background:var(--areia-lt);padding:1.1rem;margin-bottom:1.5rem;
}
.pedido-resumo-title{font-size:.62rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--bordo);margin-bottom:.6rem}
.pedido-item-row{
  display:flex;align-items:center;gap:.6rem;
  padding:.4rem 0;border-bottom:1px solid var(--areia-dk);
  font-size:.8rem;color:var(--tx-2);
}
.pedido-item-row:last-child{border-bottom:none}
.pedido-item-row::before{content:'✓';color:var(--verde);font-size:.75rem;font-weight:700;flex-shrink:0}

/* Form fields */
.fg{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.fg.full{grid-template-columns:1fr}
.field{display:flex;flex-direction:column;gap:.3rem}
.field label{font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--tx-2)}
.field input,.field textarea,.field select{
  padding:.75rem 1rem;
  border:1.5px solid var(--areia-dk);
  background:#fff;
  font-size:.86rem;color:var(--tx-1);
  transition:border-color .2s;
  border-radius:2px;
  width:100%;
}
.field input:focus,.field textarea:focus,.field select:focus{border-color:var(--bordo)}
.field textarea{min-height:80px;resize:vertical;font-family:inherit}
.field select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A837A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center;padding-right:2.5rem}

.form-note{
  display:flex;gap:.5rem;align-items:flex-start;
  background:var(--areia-lt);padding:.85rem 1rem;
  font-size:.75rem;color:var(--tx-2);line-height:1.55;
}
.form-note::before{content:'ℹ️';flex-shrink:0;font-size:.85rem}

.btn-submit{
  background:var(--azul);color:#fff;
  padding:1.1rem 2rem;width:100%;
  font-size:.85rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  display:flex;align-items:center;justify-content:center;gap:.55rem;
  transition:background .2s,transform .2s,box-shadow .2s;
  cursor:pointer;border:none;border-radius:var(--rc-bl);
}
.btn-submit:hover{background:var(--bordo-dk);transform:translateY(-1px);box-shadow:0 8px 28px rgba(98,45,56,.28)}
.btn-submit svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2}

/* Success */
.success-icon{
  width:76px;height:76px;border-radius:50%;
  background:var(--verde);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.5rem;
  animation:popIn .5s var(--ease) both;
}
@keyframes popIn{from{transform:scale(0)}to{transform:scale(1)}}
.success-icon svg{width:38px;height:38px;stroke:#fff;fill:none;stroke-width:2.5}
.success-title{font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:400;color:var(--tx-1);margin-bottom:.75rem}
.success-msg{font-size:.88rem;color:var(--tx-2);line-height:1.8;max-width:36ch;margin:0 auto 2rem}
.success-proto{
  background:var(--areia-lt);padding:1.1rem 1.5rem;margin-bottom:1.75rem;text-align:left;
}
.success-proto-label{font-size:.6rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--bordo);margin-bottom:.25rem}
.success-proto-num{font-family:'Cormorant Garamond',serif;font-size:1.8rem;font-weight:400;color:var(--tx-1)}
.success-proto-sub{font-size:.72rem;color:var(--tx-3);margin-top:.1rem}

/* ============================================================
   TOAST
   ============================================================ */
.toast-stack{
  position:fixed;bottom:2rem;left:50%;transform:translateX(-50%);
  z-index:1100;display:flex;flex-direction:column;gap:.6rem;
  align-items:center;pointer-events:none;
}
.toast{
  background:var(--azul);color:var(--areia);
  padding:.8rem 1.4rem;
  display:flex;align-items:center;gap:.55rem;
  font-size:.8rem;font-weight:500;
  box-shadow:0 8px 28px rgba(0,0,0,.2);
  pointer-events:auto;
  animation:toastIn .35s var(--ease) both;
  border-left:3px solid var(--bordo);
}
.toast.ok{background:var(--verde);border-left-color:rgba(255,255,255,.3)}
.toast svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2;flex-shrink:0}
@keyframes toastIn{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
@keyframes toastOut{to{opacity:0;transform:translateY(-10px)}}

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mobile-nav{
  position:fixed;top:0;left:0;right:0;bottom:0;
  background:var(--white);z-index:600;
  transform:translateX(-100%);
  transition:transform .38s var(--ease);
  overflow-y:auto;
  padding:5rem 2rem 3rem;
  display:flex;flex-direction:column;gap:0;
}
.mobile-nav.open{transform:none}
.mobile-nav-item{
  border-bottom:1px solid var(--areia-lt);
  padding:1.1rem 0;
  font-size:1.1rem;font-weight:400;color:var(--tx-1);
  cursor:pointer;
  font-family:'Cormorant Garamond',serif;
}
.mobile-nav-item:hover{color:var(--bordo)}
.mobile-nav-foot{margin-top:2rem;display:flex;flex-direction:column;gap:.75rem}


/* ============================================================
   LISTING — page_lista-produtos.php
   Adicionar ao final do style.css
   Versão: 3.2.0
   ============================================================ */

/* ── BREADCRUMB ─────────────────────────────────────────── */
.page-breadcrumb {
  background: var(--areia-lt);
  border-bottom: 1px solid var(--areia-dk);
  padding-top: 68px; /* compensa o header sticky */
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: .5rem;
  list-style: none;
  padding: .7rem 0;
  font-size: .72rem;
  color: var(--tx-3);
}
.breadcrumb-list a { color: var(--tx-2); transition: color .2s; }
.breadcrumb-list a:hover { color: var(--bordo); }
.breadcrumb-list li[aria-current="page"] { color: var(--bordo); font-weight: 500; }

/* ── HERO DA CATEGORIA ──────────────────────────────────── */
.cat-hero {
  position: relative;
  background: var(--azul);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.cat-hero.has-img { min-height: 340px; display: flex; align-items: flex-end; }

.cat-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cat-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(37,55,70,.88) 0%,
    rgba(37,55,70,.60) 55%,
    rgba(37,55,70,.30) 100%
  );
}

.cat-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.cat-hero-content .section-label {
  color: var(--rose);
  margin-bottom: .6rem;
}
.cat-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .85rem;
}
.cat-hero-title em { font-style: italic; color: var(--rose); }
.cat-hero-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: 1.75rem;
}
.cat-hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.cat-hero-stat-n {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
.cat-hero-stat-l {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: .2rem;
}

/* ── FILTERS BAR ────────────────────────────────────────── */
.listing-filters-bar {
  background: var(--white);
  border-bottom: 1px solid var(--areia-dk);
  position: sticky;
  top: 68px;
  z-index: 40;
  transition: box-shadow .25s;
}
.listing-filters-bar.listing-filters-sticky {
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.listing-filters-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: .25rem 0;
}
.listing-tabs {
  flex: 1;
  border-bottom: none;
  margin-bottom: 0;
}
.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--areia-lt);
  color: var(--tx-3);
  font-size: .6rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  padding: 0 5px;
  margin-left: .35rem;
  transition: background .2s, color .2s;
}
.cat-tab.active .tab-count {
  background: var(--bordo);
  color: #fff;
}
.listing-sort-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.listing-count {
  font-size: .72rem;
  color: var(--tx-3);
  white-space: nowrap;
}
.listing-sort {
  font-family: inherit;
  font-size: .75rem;
  color: var(--tx-2);
  border: 1.5px solid var(--areia-dk);
  background: var(--white);
  padding: .4rem .7rem;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}
.listing-sort:focus { border-color: var(--bordo); }

/* ── LAYOUT PRINCIPAL ───────────────────────────────────── */
.listing-main { padding: 2.5rem 0 5rem; }
.listing-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .listing-layout { grid-template-columns: 260px 1fr; }
}

/* ── SIDEBAR ────────────────────────────────────────────── */
.listing-sidebar { position: sticky; top: calc(68px + 53px + 1.5rem); }
@media (max-width: 1023px) { .listing-sidebar { position: static; } }

.sidebar-block {
  background: #fff;
  border: 1px solid var(--areia-dk);
  border-radius: 0 0 0 var(--rc-bl, 12px);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.sidebar-block-title {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tx-3);
  margin-bottom: .85rem;
}

/* Busca */
.sidebar-search {
  position: relative;
}
.sidebar-search input {
  width: 100%;
  padding: .6rem .6rem .6rem 2.2rem;
  border: 1.5px solid var(--areia-dk);
  border-radius: 4px;
  font-family: inherit;
  font-size: .8rem;
  color: var(--tx-1);
  background: var(--areia-lt);
  outline: none;
  transition: border-color .2s, background .2s;
}
.sidebar-search input:focus {
  border-color: var(--bordo);
  background: #fff;
}
.sidebar-search svg {
  position: absolute;
  left: .6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  stroke: var(--tx-3);
  fill: none; stroke-width: 2;
  pointer-events: none;
}

/* Filtro por linha */
.sidebar-filter-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .5rem .6rem;
  border-radius: 4px;
  font-size: .8rem;
  color: var(--tx-2);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .15s, color .15s;
  font-family: inherit;
}
.sidebar-filter-item:hover { background: var(--areia-lt); color: var(--tx-1); }
.sidebar-filter-item.active { background: var(--bordo-10); color: var(--bordo); font-weight: 600; }
.sidebar-filter-count {
  font-size: .65rem;
  background: var(--areia-lt);
  color: var(--tx-3);
  padding: .15rem .45rem;
  border-radius: 99px;
  font-weight: 600;
  transition: background .15s, color .15s;
}
.sidebar-filter-item.active .sidebar-filter-count { background: var(--bordo); color: #fff; }

/* Selos */
.sidebar-selos { display: flex; flex-direction: column; gap: .6rem; }
.sidebar-selo {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem .6rem;
  border-radius: 4px;
  background: var(--areia-lt);
}
.sidebar-selo-icon {
  width: 30px; height: 30px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  color: #fff;
}
.sidebar-selo-text strong { display: block; font-size: .75rem; font-weight: 600; color: var(--tx-1); }
.sidebar-selo-text span   { font-size: .65rem; color: var(--tx-3); }

/* CTA Sidebar */
.sidebar-cta {
  background: var(--azul);
  border-radius: 0 0 0 var(--rc-bl, 12px);
  padding: 1.5rem;
}
.sidebar-cta-eyebrow {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .4rem;
}
.sidebar-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.25;
  margin-bottom: .5rem;
}
.sidebar-cta-desc { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── GRID DE PRODUTOS ───────────────────────────────────── */
.listing-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
@media (min-width: 640px)  { .listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .listing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .listing-grid { grid-template-columns: repeat(3, 1fr); } }

/* prod-card sem imagem */
.prod-img-placeholder {
  width: 100%; height: 100%;
  background: var(--areia-lt);
  display: flex; align-items: center; justify-content: center;
}
.prod-img-placeholder svg { width: 48px; height: 48px; stroke: var(--areia-dk); }

/* Badges na imagem */
.prod-badges-wrap {
  position: absolute;
  top: .7rem;
  left: .7rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  z-index: 2;
}
.prod-badge--nr17  { background: var(--bordo);  color: #fff; }
.prod-badge--new   { background: var(--verde);  color: #fff; }
.prod-badge--dest  { background: var(--cobre);  color: #fff; }

/* Quick add (hover overlay) */
.prod-quick-add {
  position: absolute;
  bottom: .7rem;
  left: .7rem;
  right: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: rgba(37,55,70,.92);
  backdrop-filter: blur(6px);
  color: #fff;
  border: none;
  padding: .6rem 1rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s, transform .25s;
  font-family: inherit;
  z-index: 3;
}
.prod-quick-add svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.prod-card:hover .prod-quick-add { opacity: 1; transform: translateY(0); }
@media (hover: none) { .prod-quick-add { display: none; } } /* não mostra em touch */

/* Empty state */
.listing-empty {
  grid-column: 1 / -1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem;
  text-align: center;
  background: var(--areia-lt);
  border-radius: 4px;
  color: var(--tx-3);
}
.listing-empty svg { width: 48px; height: 48px; stroke: var(--areia-dk); fill: none; stroke-width: 1; }
.listing-empty p { font-size: .9rem; }

/* Sem produtos cadastrados */
.listing-no-products {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 4rem 2rem;
  text-align: center;
  border: 2px dashed var(--areia-dk);
  border-radius: 4px;
  color: var(--tx-3);
}
.listing-no-products svg { width: 40px; height: 40px; stroke: var(--areia-dk); }
.listing-no-products p { font-size: .85rem; line-height: 1.6; }

/* prod-card hidden (filtrado) */
.prod-card.hidden {
  display: none;
}

/* ── CTA STRIP FINAL ────────────────────────────────────── */
.listing-cta-strip {
  background: var(--bordo);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.listing-cta-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .listing-cta-inner { grid-template-columns: 1fr auto; }
}
.listing-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: .4rem;
}
.listing-cta-sub { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.65; }
.listing-cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── DELAYS DE ANIMAÇÃO ─────────────────────────────────── */
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 767px) {
  .listing-filters-inner { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .listing-sort-wrap { width: 100%; justify-content: space-between; }
  .cat-hero-stats { gap: 1.25rem; }
}
@media (max-width: 1023px) {
  .listing-sidebar { display: none; } /* sidebar vira off-canvas em mobile — versão futura */
}



/* ============================================================
   PDP — page_detalhe-produto.php
   Adicionar ao final do style.css — Versão 3.4.0
   ============================================================ */

/* ── STICKY BAR ─────────────────────────────────────────── */
.pdp-sticky {
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 290;
  background: var(--azul);
  padding: .7rem 0;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s;
  pointer-events: none;
}
.pdp-sticky.visible {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.pdp-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pdp-sticky-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50%;
}
.pdp-sticky-actions { display: flex; gap: .6rem; align-items: center; }
.pdp-sticky-cart {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 4px; cursor: pointer;
  transition: background .2s;
  font-family: inherit;
}
.pdp-sticky-cart:hover { background: rgba(255,255,255,.2); }
.pdp-sticky-cart svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── PRODUCT HERO ───────────────────────────────────────── */
.pdp-hero {
  padding-top: calc(68px + 2.5rem);
  padding-bottom: 3rem;
  background: var(--white);
}
.pdp-hero-grid {
  display: grid;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .pdp-hero-grid { grid-template-columns: 1fr 480px; }
}

/* ── GALERIA ────────────────────────────────────────────── */
.pdp-gallery { position: sticky; top: calc(68px + 1.5rem); }
@media (max-width: 1023px) { .pdp-gallery { position: static; } }

.pdp-gal-main {
  position: relative;
  background: var(--areia-lt);
  border-radius: 4px 4px 4px 0;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: zoom-in;
  margin-bottom: .75rem;
}
.pdp-gal-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity .2s, transform .5s var(--ease);
  display: block;
}
.pdp-gal-main:hover img { transform: scale(1.03); }
.pdp-gal-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.pdp-gal-placeholder svg { width: 60px; height: 60px; stroke: var(--areia-dk); }

.pdp-gal-badges {
  position: absolute;
  top: .8rem; left: .8rem;
  display: flex; flex-direction: column; gap: .35rem;
  z-index: 2;
  pointer-events: none;
}
.pdp-badge {
  display: inline-flex; align-items: center;
  font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 3px;
}
.pdp-badge--nr17 { background: var(--bordo); color: #fff; }

.pdp-gal-zoom {
  position: absolute; top: .8rem; right: .8rem;
  width: 34px; height: 34px; border-radius: 4px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--areia-dk);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  transition: background .2s;
}
.pdp-gal-zoom:hover { background: #fff; }

.pdp-gal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--areia-dk);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  transition: background .2s, opacity .2s;
  opacity: 0;
}
.pdp-gal-main:hover .pdp-gal-arrow { opacity: 1; }
.pdp-gal-prev { left: .6rem; }
.pdp-gal-next { right: .6rem; }
.pdp-gal-arrow svg { width: 16px; height: 16px; stroke: var(--azul); fill: none; stroke-width: 2; }

.pdp-gal-thumbs {
  display: flex; gap: .5rem;
  overflow-x: auto; scrollbar-width: none;
  padding-bottom: 2px;
}
.pdp-gal-thumbs::-webkit-scrollbar { display: none; }
.pdp-gal-thumb {
  width: 68px; height: 68px; flex-shrink: 0;
  border-radius: 3px; overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s;
  padding: 0; background: var(--areia-lt);
}
.pdp-gal-thumb:hover { border-color: var(--areia-dk); }
.pdp-gal-thumb.active { border-color: var(--bordo); }
.pdp-gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pdp-gal-note {
  display: flex; align-items: center; gap: .5rem;
  margin-top: .75rem;
  font-size: .7rem; color: var(--tx-3);
  line-height: 1.5;
}
.pdp-gal-note svg { flex-shrink: 0; stroke: var(--tx-3); fill: none; stroke-width: 1.5; }

/* ── PAINEL DE INFO ─────────────────────────────────────── */
.pdp-info {}
.pdp-linha {
  font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--bordo); margin-bottom: .45rem;
}
.pdp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300; color: var(--tx-1); line-height: 1.1;
  margin-bottom: .75rem;
}
.pdp-sub {
  font-size: .9rem; color: var(--tx-2); line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Selos ─────────────────────────────────────────────────── */
.pdp-selos {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1.5rem;
}
.pdp-selo {
  display: flex; align-items: center; gap: .55rem;
  padding: .55rem .7rem;
  background: var(--white);
  border: 1px solid var(--areia-dk);
  border-radius: 3px;
  cursor: default;
  position: relative;
  transition: border-color .2s;
}
.pdp-selo:hover,
.pdp-selo:focus { border-color: var(--bordo); outline: none; }
.pdp-selo-icon {
  width: 28px; height: 28px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pdp-selo-icon svg { width: 14px; height: 14px; color: #fff; }
.pdp-selo > div:nth-child(2) strong { display: block; font-size: .72rem; font-weight: 600; color: var(--tx-1); line-height: 1.2; }
.pdp-selo > div:nth-child(2) span   { font-size: .62rem; color: var(--tx-3); }
.pdp-selo-tip {
  position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: var(--azul); color: #fff;
  font-size: .68rem; padding: .5rem .75rem;
  border-radius: 3px; width: 200px; line-height: 1.5; text-align: center;
  opacity: 0; pointer-events: none;
  transition: opacity .2s; z-index: 10;
  white-space: normal;
}
.pdp-selo:hover .pdp-selo-tip,
.pdp-selo:focus .pdp-selo-tip { opacity: 1; }

/* Configurador ──────────────────────────────────────────── */
.pdp-config-block { margin-bottom: 1.1rem; }
.pdp-config-label {
  font-size: .72rem; font-weight: 600; color: var(--tx-2);
  margin-bottom: .6rem;
  display: flex; justify-content: space-between;
}
.pdp-config-label span { font-weight: 400; color: var(--bordo); }

.pdp-cores { display: flex; flex-wrap: wrap; gap: .45rem; }
.pdp-cor {
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; border: 2.5px solid transparent;
  transition: border-color .15s, transform .15s;
  padding: 0;
}
.pdp-cor:hover { transform: scale(1.1); }
.pdp-cor.active { border-color: var(--azul); }

.pdp-mats { display: flex; flex-wrap: wrap; gap: .4rem; }
.pdp-mat-tab {
  padding: .5rem .9rem;
  font-size: .75rem; font-family: inherit;
  border: 1.5px solid var(--areia-dk);
  border-radius: 3px; cursor: pointer;
  color: var(--tx-2); background: none;
  transition: var(--ease) .2s;
}
.pdp-mat-tab:hover { border-color: var(--bordo); color: var(--bordo); }
.pdp-mat-tab.active { background: var(--bordo); color: #fff; border-color: var(--bordo); }

.pdp-bases { display: flex; flex-wrap: wrap; gap: .4rem; }
.pdp-base-opt {
  padding: .5rem .9rem;
  font-size: .75rem; font-family: inherit;
  border: 1.5px solid var(--areia-dk);
  border-radius: 3px; cursor: pointer;
  color: var(--tx-2); background: none;
  transition: .2s;
}
.pdp-base-opt:hover,
.pdp-base-opt.active { border-color: var(--bordo); }
.pdp-base-opt.active { background: var(--bordo-10); color: var(--bordo); }

/* CTA stack ────────────────────────────────────────────── */
.pdp-cta-stack {
  display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: .75rem;
}
.pdp-cta-stack .btn { justify-content: center; }
.pdp-cta-add { font-size: .8rem; padding: .85rem; }
.pdp-cta-note {
  font-size: .68rem; color: var(--tx-3);
  text-align: center; line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Entrega strip ─────────────────────────────────────────── */
.pdp-entrega-strip {
  display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem;
}
.pdp-entrega-item {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  padding: .75rem .5rem;
  background: var(--areia-lt); border-radius: 3px;
  text-align: center;
}
.pdp-entrega-item svg {
  width: 20px; height: 20px;
  stroke: var(--bordo); fill: none; stroke-width: 1.5; flex-shrink: 0;
}
.pdp-entrega-item strong { display: block; font-size: .7rem; font-weight: 600; color: var(--tx-1); }
.pdp-entrega-item span   { font-size: .62rem; color: var(--tx-3); }

/* ── ANCHOR NAV ─────────────────────────────────────────── */
.pdp-anchors {
  background: var(--white);
  border-bottom: 1px solid var(--areia-dk);
  position: sticky; top: 68px; z-index: 40;
  transition: box-shadow .2s;
}
.pdp-anchors-inner {
  display: flex; overflow-x: auto; scrollbar-width: none;
}
.pdp-anchors-inner::-webkit-scrollbar { display: none; }
.pdp-anchor-link {
  padding: .9rem 1.2rem;
  font-size: .72rem; font-weight: 500; font-family: inherit;
  color: var(--tx-3);
  border: none; background: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap; cursor: pointer;
  transition: color .2s, border-color .2s;
}
.pdp-anchor-link:hover { color: var(--tx-1); }
.pdp-anchor-link.active { color: var(--bordo); border-bottom-color: var(--bordo); }

/* ── SEÇÕES ─────────────────────────────────────────────── */
.pdp-section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.pdp-section--alt { background: var(--areia-lt); }
.pdp-section-head { margin-bottom: 2.5rem; }

/* Descrição ─────────────────────────────────────────────── */
.pdp-descricao-grid {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 900px) {
  .pdp-descricao-grid { grid-template-columns: 1fr 380px; }
}
.pdp-desc-content {
  font-size: .9rem; color: var(--tx-2); line-height: 1.8;
}
.pdp-desc-content p { margin-bottom: 1em; }
.pdp-desc-content ul, .pdp-desc-content ol { padding-left: 1.25rem; margin-bottom: 1em; }
.pdp-desc-content li { margin-bottom: .35rem; }
.pdp-desc-img {
  border-radius: 0 0 0 var(--rc-bl);
  overflow: hidden; aspect-ratio: 4/5;
}
.pdp-desc-img img { width: 100%; height: 100%; object-fit: cover; }

/* Specs ─────────────────────────────────────────────────── */
.pdp-specs-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.pdp-specs-card {
  background: var(--white);
  border: 1px solid var(--areia-dk);
  border-radius: 4px 4px 4px 0;
  padding: 1.5rem;
}
.pdp-specs-card--wide { grid-column: 1 / -1; }
.pdp-specs-card-title {
  font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bordo); margin-bottom: 1rem;
  padding-bottom: .65rem; border-bottom: 1px solid var(--areia-dk);
}
.pdp-specs-table { width: 100%; border-collapse: collapse; }
.pdp-specs-table tr { border-bottom: 1px solid var(--areia-lt); }
.pdp-specs-table tr:last-child { border-bottom: none; }
.pdp-specs-table td { padding: .55rem 0; font-size: .82rem; vertical-align: top; }
.pdp-specs-table td:first-child { color: var(--tx-3); width: 48%; padding-right: .75rem; }
.pdp-specs-table td:last-child  { color: var(--tx-1); font-weight: 500; }
.pdp-caract-content { font-size: .82rem; color: var(--tx-2); line-height: 1.75; }
.pdp-caract-content ul { padding-left: 1rem; margin: .5rem 0; }
.pdp-caract-content li { margin-bottom: .3rem; }

/* NR-17 card ──────────────────────────────────────────────*/
.pdp-specs-nr17 { background: var(--azul); border-color: transparent; }
.pdp-nr17-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bordo); color: #fff;
  font-size: .6rem; font-weight: 700; letter-spacing: .12em;
  padding: .25rem .65rem; border-radius: 3px; margin-bottom: 1rem;
}
.pdp-nr17-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300; color: #fff; line-height: 1.3;
  margin-bottom: .75rem;
}
.pdp-nr17-desc { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 1rem; }
.pdp-nr17-items { display: flex; flex-direction: column; gap: .5rem; }
.pdp-nr17-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; color: rgba(255,255,255,.8);
}
.pdp-nr17-item svg { width: 13px; height: 13px; stroke: var(--verde); flex-shrink: 0; }

/* Regulagens ────────────────────────────────────────────── */
.pdp-reg-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.pdp-reg-card {
  background: var(--white);
  border: 1px solid var(--areia-dk);
  border-radius: 4px 4px 4px 0;
  padding: 1.25rem;
  position: relative; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.pdp-reg-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--bordo); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.pdp-reg-card:hover { border-color: var(--bordo-20); box-shadow: var(--shadow-sm); }
.pdp-reg-card:hover::before { transform: scaleX(1); }
.pdp-reg-icon {
  width: 40px; height: 40px; border-radius: 4px;
  background: var(--bordo-10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.pdp-reg-icon svg { width: 20px; height: 20px; stroke: var(--bordo); fill: none; stroke-width: 1.5; }
.pdp-reg-title { font-size: .88rem; font-weight: 600; color: var(--tx-1); margin-bottom: .4rem; }
.pdp-reg-desc  { font-size: .78rem; color: var(--tx-2); line-height: 1.6; margin-bottom: .75rem; }
.pdp-reg-range { background: var(--areia-lt); border-radius: 3px; padding: .6rem .75rem; }
.pdp-reg-range-label { font-size: .7rem; color: var(--bordo); font-weight: 600; display: block; margin-bottom: .35rem; }
.pdp-reg-bar-wrap { height: 4px; background: var(--areia-dk); border-radius: 2px; }
.pdp-reg-bar { height: 100%; border-radius: 2px; background: var(--bordo); transition: width .8s var(--ease); }

/* Uso / indicações ─────────────────────────────────────── */
.pdp-uso-content { font-size: .9rem; color: var(--tx-2); line-height: 1.8; max-width: 72ch; }
.pdp-uso-content h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.25rem; font-weight: 400; color: var(--tx-1); margin: 1.5rem 0 .5rem; }
.pdp-uso-content p  { margin-bottom: 1em; }
.pdp-uso-content ul { padding-left: 1.25rem; margin-bottom: 1em; }
.pdp-uso-content li { margin-bottom: .4rem; }

/* Ambientes ─────────────────────────────────────────────── */
.pdp-amb-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.pdp-amb-card {
  position: relative; border-radius: 4px 4px 4px 0;
  overflow: hidden; aspect-ratio: 4/5; cursor: pointer;
}
.pdp-amb-card img,
.pdp-amb-placeholder {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease); display: block;
}
.pdp-amb-placeholder { background: var(--areia-lt); }
.pdp-amb-card:hover img { transform: scale(1.05); }
.pdp-amb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(37,55,70,.88) 0%, transparent 55%);
  padding: 1.1rem; display: flex; flex-direction: column; justify-content: flex-end;
}
.pdp-amb-tag  { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--rose); margin-bottom: .25rem; }
.pdp-amb-nome { font-family: 'Cormorant Garamond',serif; font-size: 1.05rem; font-weight: 300; color: #fff; line-height: 1.25; }
.pdp-amb-desc { font-size: .68rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

/* Mídia ─────────────────────────────────────────────────── */
.pdp-midia-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 768px) { .pdp-midia-grid { grid-template-columns: 1fr 1fr; } }
.pdp-video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: 4px; overflow: hidden;
}
.pdp-video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0;
}

/* ── CTA SECTION ────────────────────────────────────────── */
.pdp-cta-section {
  background: var(--azul);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.pdp-cta-inner {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) {
  .pdp-cta-inner { grid-template-columns: 1fr 360px; }
}
.pdp-cta-eyebrow {
  font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose); margin-bottom: .5rem;
}
.pdp-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: .75rem;
}
.pdp-cta-title em { font-style: italic; color: var(--rose); }
.pdp-cta-desc { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 1.5rem; }
.pdp-cta-benefits { display: flex; flex-direction: column; gap: .5rem; }
.pdp-cta-benefits li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.8);
}
.pdp-cta-benefits svg { width: 14px; height: 14px; stroke: var(--verde); flex-shrink: 0; }
.pdp-cta-form {}
.pdp-cta-form-inner {
  background: var(--white);
  border-radius: 4px 4px 4px 0;
  padding: 1.75rem;
}
.pdp-cta-form-title {
  font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--tx-3); margin-bottom: 1rem;
}
.pdp-cta-form-prod {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem; background: var(--areia-lt); border-radius: 3px;
  margin-bottom: 1.25rem;
}
.pdp-cta-form-prod img {
  width: 52px; height: 52px; object-fit: cover; border-radius: 3px; flex-shrink: 0;
}
.pdp-cta-form-prod strong { display: block; font-size: .8rem; font-weight: 600; color: var(--tx-1); line-height: 1.3; }
.pdp-cta-form-prod span { font-size: .68rem; color: var(--tx-3); }

/* ── LIGHTBOX ───────────────────────────────────────────── */
.pdp-lightbox {
  position: fixed; inset: 0;
  background: rgba(15,12,13,.95);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.pdp-lightbox.open { display: flex; }
.pdp-lightbox-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 4px;
  transition: opacity .15s;
}
.pdp-lightbox-close {
  position: fixed; top: 1rem; right: 1rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #fff; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 2;
}
.pdp-lightbox-close:hover { background: rgba(255,255,255,.2); }
.pdp-lightbox-close svg { width: 18px; height: 18px; stroke: #fff; }
.pdp-lightbox-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 2;
}
.pdp-lightbox-arrow:hover { background: rgba(255,255,255,.2); }
.pdp-lightbox-arrow svg { width: 20px; height: 20px; stroke: #fff; }
.pdp-lightbox-prev { left: 1rem; }
.pdp-lightbox-next { right: 1rem; }
.pdp-lightbox-counter {
  position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  font-size: .72rem; color: rgba(255,255,255,.5); z-index: 2;
}

/* ── MOBILE CTA BAR ─────────────────────────────────────── */
.pdp-mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: flex; gap: .5rem; padding: .75rem 1rem;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  z-index: 70;
}
@media (min-width: 1024px) { .pdp-mobile-cta { display: none; } }

/* ── RESPONSIVO ─────────────────────────────────────────── */
@media (max-width: 767px) {
  .pdp-hero { padding-top: calc(68px + 1.5rem); }
  .pdp-selos { gap: .35rem; }
  .pdp-entrega-strip { grid-template-columns: repeat(3,1fr); gap: .35rem; }
  .pdp-cta-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPLIANZ COOKIE BANNER — Estilo Mirage V3
   Sobrescreve o CSS padrão do plugin com as cores do template
   ═══════════════════════════════════════════════════════════════ */

/* Container principal */
.cmplz-cookiebanner {
  font-family: 'DM Sans', sans-serif !important;
  background: var(--azul) !important;
  color: var(--areia) !important;
  border: none !important;
  border-top: 2px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 -12px 40px rgba(0,0,0,.22) !important;
  border-radius: 0 !important;
  padding: 1.5rem 2rem !important;
  max-width: 100% !important;
}

/* Bottom fixed */
.cmplz-cookiebanner.cmplz-bottom {
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  z-index: 99999 !important;
}

/* Inner wrapper */
.cmplz-cookiebanner .cmplz-banner-content,
.cmplz-cookiebanner .cmplz-content {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 2rem !important;
  flex-wrap: wrap !important;
}

/* Título */
.cmplz-cookiebanner .cmplz-title,
.cmplz-cookiebanner .cmplz-header h2,
.cmplz-cookiebanner h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  color: #fff !important;
  margin: 0 0 .35rem !important;
  line-height: 1.2 !important;
}

/* Texto do banner */
.cmplz-cookiebanner .cmplz-body,
.cmplz-cookiebanner p,
.cmplz-cookiebanner .cmplz-message {
  font-size: .82rem !important;
  color: rgba(224,222,214,.72) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  flex: 1 !important;
  min-width: 200px !important;
}

/* Links no texto (política de privacidade etc) */
.cmplz-cookiebanner a,
.cmplz-cookiebanner .cmplz-body a {
  color: var(--cobre) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}
.cmplz-cookiebanner a:hover {
  color: #fff !important;
}

/* Área de botões */
.cmplz-cookiebanner .cmplz-buttons,
.cmplz-cookiebanner .cmplz-btn-wrapper {
  display: flex !important;
  gap: .65rem !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

/* Botão aceitar — azul claro → destaque */
.cmplz-cookiebanner .cmplz-btn.cmplz-accept,
.cmplz-cookiebanner .cmplz-accept {
  background: var(--verde) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: .6rem 1.4rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background .2s, transform .2s !important;
  white-space: nowrap !important;
}
.cmplz-cookiebanner .cmplz-btn.cmplz-accept:hover,
.cmplz-cookiebanner .cmplz-accept:hover {
  background: #4d6662 !important;
  transform: translateY(-1px) !important;
}

/* Botão apenas necessários / recusar */
.cmplz-cookiebanner .cmplz-btn.cmplz-deny,
.cmplz-cookiebanner .cmplz-deny,
.cmplz-cookiebanner .cmplz-btn.cmplz-dismiss {
  background: transparent !important;
  color: rgba(224,222,214,.7) !important;
  border: 1.5px solid rgba(224,222,214,.25) !important;
  border-radius: 4px !important;
  padding: .6rem 1.1rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: .78rem !important;
  font-weight: 500 !important;
  letter-spacing: .04em !important;
  cursor: pointer !important;
  transition: border-color .2s, color .2s !important;
  white-space: nowrap !important;
}
.cmplz-cookiebanner .cmplz-btn.cmplz-deny:hover,
.cmplz-cookiebanner .cmplz-deny:hover,
.cmplz-cookiebanner .cmplz-btn.cmplz-dismiss:hover {
  border-color: rgba(224,222,214,.6) !important;
  color: #fff !important;
}

/* Botão "Preferências" / gerenciar */
.cmplz-cookiebanner .cmplz-btn.cmplz-manage-options,
.cmplz-cookiebanner .cmplz-manage-options,
.cmplz-cookiebanner .cmplz-btn.cmplz-view-preferences,
.cmplz-cookiebanner .cmplz-view-preferences {
  background: transparent !important;
  color: rgba(224,222,214,.55) !important;
  border: none !important;
  padding: .5rem .6rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: .72rem !important;
  font-weight: 400 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
  cursor: pointer !important;
  transition: color .2s !important;
}
.cmplz-cookiebanner .cmplz-btn.cmplz-manage-options:hover,
.cmplz-cookiebanner .cmplz-manage-options:hover {
  color: #fff !important;
}

/* ── MODAL DE PREFERÊNCIAS (cmplz-categories-type-view-preferences) ── */
.cmplz-preferences-popup,
.cmplz-modal,
.cmplz-cookiebanner.cmplz-categories-type-view-preferences {
  font-family: 'DM Sans', sans-serif !important;
}

/* Overlay do modal */
.cmplz-overlay,
.cmplz-preferences-overlay {
  background: rgba(37,55,70,.7) !important;
  backdrop-filter: blur(4px) !important;
}

/* Caixa do modal */
.cmplz-preferences-popup .cmplz-preferences,
.cmplz-modal .cmplz-modal-content,
.cmplz-popup {
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 32px 80px rgba(0,0,0,.22) !important;
  border: none !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* Header do modal */
.cmplz-preferences-popup .cmplz-preferences-header,
.cmplz-modal .cmplz-modal-header {
  background: var(--azul) !important;
  color: #fff !important;
  border-radius: 12px 12px 0 0 !important;
  padding: 1.25rem 1.75rem !important;
  border-bottom: none !important;
}
.cmplz-preferences-popup .cmplz-preferences-header h2,
.cmplz-modal .cmplz-modal-header h2,
.cmplz-modal h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  color: #fff !important;
  margin: 0 !important;
}

/* Categorias de cookies */
.cmplz-preferences-popup .cmplz-category,
.cmplz-category-container {
  border-bottom: 1px solid var(--areia-lt) !important;
  padding: 1rem 0 !important;
}
.cmplz-preferences-popup .cmplz-category-header,
.cmplz-category-header {
  font-weight: 600 !important;
  font-size: .88rem !important;
  color: var(--tx-1) !important;
}
.cmplz-preferences-popup p,
.cmplz-category-description {
  font-size: .8rem !important;
  color: var(--tx-2) !important;
  line-height: 1.65 !important;
}

/* Toggle switch */
.cmplz-switch .cmplz-slider,
.cmplz-toggle .cmplz-slider {
  background: var(--areia-dk) !important;
  border-radius: 20px !important;
}
.cmplz-switch input:checked + .cmplz-slider,
.cmplz-toggle input:checked + .cmplz-slider {
  background: var(--verde) !important;
}
.cmplz-switch input:disabled + .cmplz-slider,
.cmplz-toggle input:disabled + .cmplz-slider {
  background: var(--azul) !important;
  opacity: .6 !important;
}

/* Botão fechar modal */
.cmplz-preferences-popup .cmplz-close,
.cmplz-modal .cmplz-close,
.cmplz-close-preferences {
  color: rgba(224,222,214,.7) !important;
  background: transparent !important;
  border: none !important;
  font-size: 1.4rem !important;
  cursor: pointer !important;
  transition: color .2s !important;
}
.cmplz-preferences-popup .cmplz-close:hover,
.cmplz-modal .cmplz-close:hover {
  color: #fff !important;
}

/* Botão salvar preferências no modal */
.cmplz-preferences-popup .cmplz-btn-save,
.cmplz-preferences-popup .cmplz-save-preferences,
.cmplz-btn-save {
  background: var(--azul) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: .7rem 1.5rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background .2s !important;
}
.cmplz-preferences-popup .cmplz-btn-save:hover,
.cmplz-btn-save:hover {
  background: var(--azul-lt) !important;
}

/* Mobile responsivo */
@media (max-width: 640px) {
  .cmplz-cookiebanner {
    padding: 1.25rem 1rem !important;
  }
  .cmplz-cookiebanner .cmplz-banner-content,
  .cmplz-cookiebanner .cmplz-content {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
  }
  .cmplz-cookiebanner .cmplz-buttons,
  .cmplz-cookiebanner .cmplz-btn-wrapper {
    width: 100% !important;
  }
  .cmplz-cookiebanner .cmplz-btn.cmplz-accept,
  .cmplz-cookiebanner .cmplz-accept {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
}
