
/* ============================================
   DHEMES — DESIGN TOKENS
   ============================================ */
:root{
  --navy: #1E1E50;
  --navy-light: #2B2B6E;
  --green: #2F9E45;
  --green-light: #3DBD58;
  --charcoal: #14141A;
  --charcoal-soft: #1C1C24;
  --steel: #4A5560;
  --paper: #F5F6F4;
  --paper-dim: #ECEDE9;
  --silver: #D8DCE1;
  --white: #FFFFFF;
  --ink: #14141A;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --container: 1240px;
  --radius: 4px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
#quem-somos, #qualidade{ scroll-margin-top: 120px; }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before{
  content:'';
  width: 24px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}
.eyebrow.on-dark{ color: var(--green-light); }
.eyebrow.on-light{ color: var(--green); }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all .3s ease-out;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(47,158,69,0);
}
.btn-primary{
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover{
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(47,158,69,0.4);
}
.btn-outline{
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover{
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255,255,255,0.1);
}

/* ============================================
   HEADER
   ============================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar{
  background: var(--charcoal);
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 12px;
}
.topbar .container{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a{ color: var(--silver); transition: color .3s ease-out; }
.topbar a:hover{ color: var(--green-light); }
.topbar-links{ display:flex; align-items:center; gap:24px; }
.topbar-social{ display:flex; gap:16px; }
.topbar-social a{ display:inline-flex; align-items:center; gap:6px; }
.topbar-social a svg, .footer-social a svg{ transition: transform .3s ease-out; }
.topbar-social a:hover svg, .footer-social a:hover svg{ transform: scale(1.2); }
.topbar a.topbar-phone{ display:inline-flex; align-items:center; gap:6px; color: var(--green-light); font-weight:600; }

header.main{
  position: relative;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--silver);
}
header.main .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img{ height: 48px; width:auto; }
nav.primary-nav ul{ display:flex; gap:36px; }
nav.primary-nav a{
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
nav.primary-nav a::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background: var(--green);
  transition: width .25s ease;
}
nav.primary-nav a:hover::after{ width:100%; }
.header-actions{ display:flex; align-items:center; gap:14px; }
.header-actions .btn{ padding: 12px 22px; font-size:14px; }
.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:32px;
  height:32px;
  padding:0;
}
.menu-toggle span{
  display:block;
  width:100%;
  height:2px;
  background: var(--navy);
  transition: transform .25s ease, opacity .25s ease;
}
header.main.nav-open .menu-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
header.main.nav-open .menu-toggle span:nth-child(2){ opacity:0; }
header.main.nav-open .menu-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px){
  .menu-toggle{ display:flex; order:2; }
  .header-actions{ order:1; }
  nav.primary-nav{
    display:block;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background: var(--white);
    border-bottom: 1px solid var(--silver);
    max-height:0;
    overflow:hidden;
    transition: max-height .3s ease;
  }
  header.main.nav-open nav.primary-nav{ max-height:400px; }
  nav.primary-nav ul{ flex-direction:column; gap:0; padding: 8px 32px 20px; }
  nav.primary-nav li{ border-bottom: 1px solid var(--silver); }
  nav.primary-nav a{ display:block; padding: 14px 0; }
  .topbar-links{ display:none; }
}

/* ============================================
   HERO
   ============================================ */
.hero{
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 0;
}
.hero-bg{
  position:absolute; inset:0;
  animation: hero-bg-fade-in 1.6s ease both;
}
@keyframes hero-bg-fade-in{
  from{ opacity:0; }
  to{ opacity:1; }
}
@media (prefers-reduced-motion: reduce){
  .hero-bg{ animation:none; }
}
.hero-carousel{
  position:absolute; inset:0;
  overflow:hidden;
}
.hero-carousel img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 1.8s ease;
}
.hero-carousel img.active{ opacity:1; }
@media (prefers-reduced-motion: reduce){
  .hero-carousel img{ transition:none; }
}
.hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(20,20,26,0.88) 0%, rgba(20,20,26,0.7) 40%, rgba(20,20,26,0.32) 100%);
}
.hero-grid-overlay{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events:none;
}
.hero-glow{
  position:absolute;
  top: -200px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(47,158,69,0.18) 0%, rgba(47,158,69,0) 70%);
  pointer-events:none;
}
.hero .container{
  position: relative;
  padding-bottom: 80px;
}
.hero-content{ max-width: 720px; }
.hero-content h1{
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  margin-bottom: 24px;
}
.hero-content h1 em{
  font-style: normal;
  color: var(--green-light);
}
.hero-content p.lead{
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

/* Stat strip */
.stat-strip{
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--charcoal-soft);
}
.stat-strip .container{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}
.stat-item{
  padding: 28px 32px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.stat-item:first-child{ border-left:none; padding-left:0; }
.stat-item .num{
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--green-light);
  line-height:1;
  margin-bottom: 8px;
}
.stat-item .label{
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 900px){
  .hero .container{ padding-bottom:50px; }
  .hero{ padding-top: 60px; }
  .stat-strip .container{ grid-template-columns: repeat(2,1fr); }
  .stat-item{ border-left:none; border-top:1px solid rgba(255,255,255,0.08); padding:20px 0; }
  .stat-item:nth-child(odd){ padding-right:20px; }
  .stat-item:nth-child(even){ padding-left:20px; border-left:1px solid rgba(255,255,255,0.08); }
  .stat-item:first-child,.stat-item:nth-child(2){ border-top:none; }
}

/* ============================================
   SECTION SHELL
   ============================================ */
.section{ padding: 110px 0; }
.section-head{
  display:flex;
  justify-content: space-between;
  align-items:flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.section-head h2{
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  max-width: 620px;
}
.section-head p{
  max-width: 360px;
  color: var(--steel);
  font-size: 15px;
  padding-bottom: 6px;
}
@media (max-width:800px){
  .section{ padding: 70px 0; }
  .section-head{ flex-direction:column; align-items:flex-start; gap:16px; }
}

/* ============================================
   DIRETO DA FÁBRICA
   ============================================ */
.factory{ background: var(--navy); }
.factory-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 70px;
  align-items:center;
}
.factory-copy h2{
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin: 16px 0 18px;
}
.factory-copy p{
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  max-width: 480px;
}
.factory-stats{
  display:flex;
  gap: 44px;
  margin-top: 32px;
}
.factory-stats .num{
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-light);
  line-height:1;
  margin-bottom: 8px;
}
.factory-stats .label{
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  max-width: 160px;
}
.factory-video-wrap{
  position:relative;
  justify-self:center;
  width:100%;
  max-width: 300px;
}
.factory-video-wrap::before{
  content:'';
  position:absolute;
  top: 26px; left: 26px;
  width:100%; height:100%;
  background: var(--green);
  border-radius: var(--radius);
}
.factory-video-card{
  position:relative;
  width:100%;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.factory-video-card video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
@media (max-width:900px){
  .factory-grid{ grid-template-columns:1fr; gap:44px; text-align:center; }
  .factory-copy p{ margin:0 auto; }
  .factory-stats{ justify-content:center; }
  .factory-stats .label{ text-align:left; }
  .factory-video-wrap{ max-width:260px; }
  .factory-video-wrap::before{ top:18px; left:18px; }
}

/* ============================================
   QUEM SOMOS
   ============================================ */
.about{ background: var(--paper); }
.about-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items:start;
}
.about-copy p{
  color: var(--steel);
  font-size: 16px;
  margin-bottom: 18px;
}
.about-copy p:first-of-type{
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
}
.pillars{
  display:flex;
  flex-direction:column;
  gap: 0;
  border-top: 1px solid var(--silver);
}
.pillar{
  padding: 26px 0;
  border-bottom: 1px solid var(--silver);
  display:grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
}
.pillar .tag{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  font-weight:600;
  padding-top: 3px;
}
.pillar h4{ font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.pillar p{ font-size: 14px; color: var(--steel); }

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diff{ background: var(--navy); color: var(--white); }
.diff .section-head h2{ color: var(--white); }
.diff .section-head p{ color: rgba(255,255,255,0.6); }
.diff-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
.diff-card{
  background: var(--navy);
  padding: 40px 34px;
  transition: background .35s ease-out;
}
.diff-card:hover{ background: var(--navy-light); }
.diff-card .icon{
  color: var(--green-light);
  margin-bottom: 22px;
  display:block;
}
.diff-card .icon svg{ width: 32px; height: 32px; transition: transform .35s ease-out; }
.diff-card:hover .icon svg{ transform: scale(1.12); }
.diff-card h3{
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--white);
}
.diff-card p{
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
}
@media (max-width:900px){
  .about-grid{ grid-template-columns:1fr; gap:40px; }
  .diff-grid{ grid-template-columns:1fr; }
}

/* ============================================
   PRODUTOS
   ============================================ */
.products{ background: var(--paper-dim); }
.product-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card{
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  overflow:hidden;
  transition: border-color .3s ease-out, transform .3s ease-out, box-shadow .3s ease-out;
  display:flex;
  flex-direction:column;
}
.product-card:hover{
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(30,30,80,0.12);
}
.product-thumb{
  background: var(--paper);
  aspect-ratio: 1.3/1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 24px;
  position:relative;
}
.product-thumb img{ max-height: 100%; object-fit:contain; mix-blend-mode:multiply; transition: transform .4s ease-out; }
.product-card:hover .product-thumb img{ transform: scale(1.08); }
.product-code{
  position:absolute;
  top:12px; left:12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--steel);
  background: rgba(255,255,255,0.85);
  padding: 3px 7px;
  border-radius: 3px;
}
.product-body{
  padding: 18px 20px 22px;
  border-top: 1px solid var(--silver);
  flex:1;
  display:flex;
  flex-direction:column;
}
.product-body h4{ font-size: 16px; color: var(--navy); margin-bottom:6px; }
.product-body p{ font-size: 13px; color: var(--steel); flex:1; margin-bottom:14px; }
.product-body .product-link{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color: var(--green);
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-bottom: 1px solid transparent;
  transition: transform .3s ease-out, border-color .3s ease-out;
}
.product-body .product-link:hover{ transform: translateX(3px); border-color: currentColor; }
.product-card.catalog-card{
  background: var(--navy);
  color: var(--white);
  justify-content:center;
}
.product-card.catalog-card .product-thumb{ background: transparent; }
.product-card.catalog-card .product-body{ border-top:1px solid rgba(255,255,255,0.15); }
.product-card.catalog-card h4{ color: var(--white); }
.product-card.catalog-card p{ color: rgba(255,255,255,0.6); }
.product-card.catalog-card .product-link{ color: var(--green-light); }

@media (max-width:1000px){ .product-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width:700px){ .product-grid{ grid-template-columns: repeat(2,1fr); } }

/* ============================================
   CARRO-CHEFE (peças mais vendidas)
   ============================================ */
.flagship{ background: var(--white); }
.flagship-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.flagship-badge{
  position:absolute;
  top:12px; right:12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 4px 8px;
  border-radius: 3px;
}
.flagship-category{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
  display:block;
}
@media (max-width:1000px){ .flagship-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width:700px){ .flagship-grid{ grid-template-columns: repeat(2,1fr); } }

/* home teaser: 1 hero card + 3x2 grid of smaller cards */
.flagship-bento{
  display:grid;
  grid-template-columns: 1.3fr 3fr;
  gap: 20px;
  align-items:stretch;
}
.flagship-card .product-link{ margin-top:auto; }
@media (min-width:1001px){
  .flagship-hero .product-thumb{ flex:1; aspect-ratio:auto; }
}
.flagship-small-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}
.flagship-small .product-thumb{ padding: 14px; }
.flagship-small .product-code{ font-size: 9px; padding: 2px 5px; }
.flagship-small .flagship-badge{ font-size: 8px; padding: 3px 6px; }
.flagship-small .product-body{ padding: 12px 14px 16px; }
.flagship-small .flagship-category{ font-size: 9px; margin-bottom: 4px; }
.flagship-small .product-body h4{ font-size: 14px; margin-bottom: 4px; }
.flagship-small .product-link{ font-size: 10px; }
@media (max-width:1000px){
  .flagship-bento{ grid-template-columns: 1fr; }
  .flagship-small-grid{ grid-template-columns: repeat(3,1fr); grid-template-rows:none; }
}
@media (max-width:700px){
  .flagship-small-grid{ grid-template-columns: repeat(2,1fr); }
}

/* ============================================
   QUALIDADE / PROCESSO (blueprint)
   ============================================ */
.quality{
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow:hidden;
}
.quality::before{
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events:none;
}
.quality .section-head h2{ color:var(--white); }
.quality .section-head p{ color: rgba(255,255,255,0.55); }
.quality-grid{
  position:relative;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.14);
}
.quality-step{
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.14);
  position:relative;
}
.quality-step:last-child{ border-right:none; }
.quality-step .step-index{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green-light);
  letter-spacing:0.1em;
  margin-bottom: 22px;
  display:block;
}
.quality-step h4{ font-size: 17px; margin-bottom:10px; }
.quality-step p{ font-size: 13.5px; color: rgba(255,255,255,0.55); }
@media (max-width:900px){
  .quality-grid{ grid-template-columns: 1fr 1fr; }
  .quality-step{ border-bottom: 1px solid rgba(255,255,255,0.14); }
}
@media (max-width:560px){ .quality-grid{ grid-template-columns: 1fr; } }

/* ============================================
   CATÁLOGO
   ============================================ */
.catalog{
  background: linear-gradient(135deg, var(--navy) 0%, #14143a 100%);
  color: var(--white);
  position:relative;
  overflow:hidden;
}
.catalog .container{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:center;
}
.catalog-copy .eyebrow{ color: var(--green-light); }
.catalog-copy h2{ font-size: clamp(1.8rem,3vw,2.5rem); margin-bottom:20px; }
.catalog-copy p{ color: rgba(255,255,255,0.65); font-size:16px; max-width:460px; margin-bottom:32px; }
.catalog-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.catalog-mock{
  position:relative;
  display:flex;
  justify-content:center;
  perspective: 1200px;
}
.catalog-book{
  width: 300px;
  background: var(--white);
  border-radius: 3px 10px 10px 3px;
  box-shadow: 30px 30px 70px rgba(0,0,0,0.45);
  transform: rotateY(-18deg) rotateX(3deg);
  overflow:hidden;
}
.catalog-book-cover{
  background: var(--navy);
  color: var(--white);
  padding: 40px 26px;
  min-height: 380px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border-left: 8px solid var(--green);
}
.catalog-book-cover .eyebrow{ margin-bottom: 40px; }
.catalog-book-cover h3{ font-size: 22px; line-height:1.3; }
.catalog-book-cover .foot{ font-family: var(--font-mono); font-size:11px; color:rgba(255,255,255,0.5); }

@media (max-width:900px){
  .catalog .container{ grid-template-columns:1fr; }
  .catalog-mock{ order:-1; }
  .catalog-book{ transform:none; width:240px; }
}

/* ============================================
   CATÁLOGO — TEASER (versão condensada para a Home)
   ============================================ */
.catalog-teaser{
  background: var(--paper-dim);
}
.catalog-teaser .teaser-box{
  background: var(--navy);
  border-radius: var(--radius);
  padding: 56px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 40px;
  flex-wrap:wrap;
  color: var(--white);
  border-left: 6px solid var(--green);
}
.catalog-teaser h3{ font-size: clamp(1.4rem,2.4vw,1.9rem); margin-bottom:10px; }
.catalog-teaser p{ color: rgba(255,255,255,0.6); font-size:15px; max-width:440px; }
.catalog-teaser .teaser-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ============================================
   PAGE BANNER (páginas internas: Produtos, Contato)
   ============================================ */
.page-banner{
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0 44px;
  position: relative;
  overflow:hidden;
}
.page-banner::before{
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events:none;
}
.page-banner .container{ position:relative; }
.breadcrumb{
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  display:flex;
  gap: 8px;
  align-items:center;
}
.breadcrumb a{ color: rgba(255,255,255,0.6); }
.breadcrumb a:hover{ color: var(--green-light); }
.page-banner h1{
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin-bottom: 14px;
}
.page-banner p.lead{
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  max-width: 560px;
}

/* ============================================
   FAQ
   ============================================ */
.faq{ background: var(--paper); }
.faq-list{ max-width: 820px; }
.faq-item{
  border-bottom: 1px solid var(--silver);
}
.faq-q{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 24px 0;
  text-align:left;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
  font-weight:500;
}
.faq-q .icon{
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--green);
  transition: transform .25s ease;
  flex-shrink:0;
  margin-left: 20px;
}
.faq-item.open .faq-q .icon{ transform: rotate(45deg); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s ease;
}
.faq-a p{ padding-bottom: 24px; color: var(--steel); font-size:15px; max-width:680px; }
.faq-item.open .faq-a{ max-height: 300px; }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final{
  background: var(--green);
  color: var(--white);
  text-align:center;
}
.cta-final h2{ font-size: clamp(1.8rem,3.4vw,2.6rem); margin-bottom:18px; }
.cta-final p{ font-size:16px; color: rgba(255,255,255,0.85); max-width:520px; margin:0 auto 34px; }
.cta-final .btn-primary{ background: var(--navy); }
.cta-final .btn-primary:hover{ background: var(--charcoal); }
.cta-final .btn-outline{ border-color: rgba(255,255,255,0.5); }
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ============================================
   CONTATO
   ============================================ */
.contact{ background: var(--charcoal); color: var(--white); }
.contact-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-info .eyebrow{ color: var(--green-light); }
.contact-info h2{ font-size: clamp(1.7rem,2.8vw,2.2rem); margin-bottom:20px; }
.contact-info p{ color:rgba(255,255,255,0.6); margin-bottom: 32px; max-width:420px; }
.contact-channels{ display:flex; flex-direction:column; gap:0; border-top:1px solid rgba(255,255,255,0.12); }
.contact-channel{
  display:flex; justify-content:space-between; align-items:center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono);
  font-size: 13px;
}
.contact-channel .role{ color: rgba(255,255,255,0.5); }
.contact-channel a{ color: var(--green-light); border-bottom: 1px solid transparent; transition: opacity .3s ease-out, border-color .3s ease-out; }
.contact-channel a:hover{ opacity: .75; border-color: currentColor; }

.contact-form{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.form-group{ display:flex; flex-direction:column; gap:8px; margin-bottom:18px; }
.form-group label{ font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em; color: rgba(255,255,255,0.5); }
.form-group input, .form-group textarea, .form-group select{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  padding: 13px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
}
.form-group textarea{ resize: vertical; min-height: 100px; }
.form-group select option{ background: var(--charcoal); color: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus{ outline:none; border-color: var(--green); }
.contact-form .btn-primary{ width:100%; justify-content:center; margin-top:6px; }
.form-note{ font-size:11px; color: rgba(255,255,255,0.4); margin-top:12px; text-align:center; }

@media (max-width:900px){
  .contact-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .contact-form{ padding:24px; }
}

/* ============================================
   FOOTER
   ============================================ */
footer.site{ background: var(--charcoal); color: rgba(255,255,255,0.6); border-top:1px solid rgba(255,255,255,0.1); }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 70px 0 40px;
}
.footer-brand img{ height:42px; margin-bottom:18px; filter:brightness(0) invert(1); }
.footer-brand p{ font-size:13.5px; max-width:280px; color:rgba(255,255,255,0.5); margin-bottom:20px; }
.footer-social{ display:flex; gap:14px; }
.footer-social a{ display:inline-flex; align-items:center; gap:6px; font-family:var(--font-mono); font-size:11px; text-transform:uppercase; color: rgba(255,255,255,0.5); }
.footer-social a:hover{ color: var(--green-light); }
.footer-col h5{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.08em; color: rgba(255,255,255,0.4); margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:13.5px; color: rgba(255,255,255,0.7); }
.footer-col a:hover{ color: var(--green-light); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display:flex; justify-content:space-between; align-items:center;
  font-size: 12.5px;
  flex-wrap:wrap; gap:10px;
}
@media (max-width:900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns: 1fr; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

@media (max-width:700px){
  .catalog-teaser .teaser-box{ padding: 36px 28px; flex-direction:column; align-items:flex-start; }
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.whatsapp-float{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 200;
  transition: transform .2s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); }
.whatsapp-float svg{ width: 30px; height: 30px; }
@media (max-width:700px){
  .whatsapp-float{ right:16px; bottom:16px; width:50px; height:50px; }
  .whatsapp-float svg{ width:26px; height:26px; }
}
