:root{
  --graphite:#414143;
  --graphite-dark:#343436;
  --paper:#f6f6f3;
  --white:#ffffff;
  --text:#181818;
  --muted:#707070;
  --accent:#35ad9e;
  --border:#e3e3df;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Inter', Arial, sans-serif;
  background:var(--paper);
  color:var(--text);
}

h1,
h2,
h3,
.eyebrow,
.hero-highlight,
.btn,
.cta-button,
.info-strip-item strong,
.quick-benefits strong{
    font-family:'Manrope', sans-serif;
}

h1,
h2{
    font-weight:800;
    letter-spacing:-0.035em;
    line-height:1.05;
}

h3{
    font-weight:700;
    letter-spacing:-0.02em;
}

.eyebrow{
    font-weight:800;
    letter-spacing:.16em;
}

.btn,
.cta-button{
    font-weight:800;
    letter-spacing:-0.01em;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1160px,calc(100% - 40px));
  margin:0 auto;
}


/* TOPO */

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:#414143;
}

.nav{
  height:80px;
  display:flex;
  align-items:center;
}

.brand img{
  width:180px;
  height:60px;
  object-fit:contain;
  object-position:left center;
}


/* TEXTOS */

h1,h2,h3,p{
  margin-top:0;
}

.eyebrow{
  margin:0 0 14px;
  font-size:14px;
  font-weight:900;
  letter-spacing:.16em;
  color:var(--accent);
}

.eyebrow.dark{
  color:#237e73;
}

h1{
  margin-bottom:18px;
  font-size:clamp(42px,4.25vw,62px);
  line-height:1.01;
  letter-spacing:-.045em;
}

h2{
  margin-bottom:20px;
  font-size:clamp(32px,3.6vw,48px);
  line-height:1.04;
  letter-spacing:-.04em;
}

.city-line{
  display:block;
  color:var(--accent);
  white-space:normal;
  font-size:clamp(32px,3.45vw,52px);
  line-height:1.02;
  max-width:100%;
}

.hero-highlight{
  margin-bottom:18px;
  font-size:24px;
  font-weight:800;
}

.lead{
  max-width:590px;
  margin-bottom:0;
  font-size:18px;
  line-height:1.6;
  color:#e6e6e6;
}


/* BOTÃO */

.btn{
  display:inline-flex;
  min-height:54px;
  align-items:center;
  justify-content:center;
  padding:0 25px;
  border-radius:999px;
  background:var(--accent);
  color:#07110f;
  font-weight:850;
  box-shadow:0 12px 30px rgba(53,173,158,.16);
  transition:.2s;
}

.btn:hover{
  transform:translateY(-2px);
}

/* INTERAÇÃO DOS BOTÕES DO WHATSAPP */

.js-whatsapp{
    background:#18d6bd;
    color:#071817;
    font-weight:900;

    box-shadow:
        0 7px 20px rgba(24,214,189,.38),
        0 0 0 1px rgba(255,255,255,.10);

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease;
}

.js-whatsapp:hover{
    background:#20f0d1;
    color:#061311;

    transform:translateY(-3px);

    box-shadow:
        0 12px 30px rgba(32,240,209,.55),
        0 0 18px rgba(32,240,209,.25);
}

.js-whatsapp:active{
    transform:translateY(0) scale(.98);
}

/* HERO */

.hero{
  padding:68px 0 74px;
  color:#fff;
  background:
    radial-gradient(
      circle at 83% 25%,
      rgba(53,173,158,.16),
      transparent 31%
    ),
    var(--graphite);
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(360px,.65fr);
  gap:55px;
  align-items:center;
}

.hero-copy{
  min-width:0;
  max-width:680px;
}

.hero-actions{
  margin:28px 0;
}

.quick-benefits{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    width:100%;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.16);
}

.quick-benefits span{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:3px;
    color:#d6d6d6;
    font-size:18px;
}

.quick-benefits strong{
  color:#fff;
  font-size:16px;
}

.hero-visual{
  position:relative;
  width:100%;
  max-width:460px;
  justify-self:end;
}

.hero-card{
  overflow:visible;
  border-radius:30px;
  background:transparent;
  box-shadow:none;
}

.hero-card img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
    transform:scale(1.35);
    transform-origin:center;
    transition:transform .35s ease, filter .35s ease;
}

.hero-card:hover img{
    transform:scale(1.48);
    filter:drop-shadow(0 0 18px rgba(47, 211, 194, 0.35));
}

.floating-note{
  position:absolute;
  left:50%;
  bottom:26px;
  transform:translateX(-50%);
  padding:13px 18px;
  border-radius:13px;
  background:var(--accent);
  color:#08231f;
  font-weight:850;
  white-space:nowrap;
}

/* INFORMAÇÕES RÁPIDAS */

.info-strip{
  position:relative;
  z-index:5;
  margin-top:-28px;
}

.info-strip-box{
  background:#fff;
  border-radius:4px;
  box-shadow:0 4px 14px rgba(0,0,0,.18);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  max-width:900px;
  margin:0 auto;
  border:1px solid rgba(53,173,158,.28);
} 

.info-strip-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:22px 25px;
}

.info-strip-item:not(:last-child){
  border-right:1px solid rgba(53,173,158,.18);
}

.info-strip-icon{
  width:52px;
  height:52px;

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

  flex-shrink:0;

  color:var(--accent);

  border:1px solid rgba(53,173,158,.55);
  border-radius:12px;

  background:rgba(53,173,158,.03);
}

.info-strip-icon svg{
  width:24px;
  height:24px;
}

.info-strip-item strong{
  display:block;
  font-size:13px;
  font-weight:800;
  margin-bottom:3px;
}

.info-strip-item p{
  margin:0;
  font-size:13px;
  line-height:1.35;
  color:#333;
}

/* DIFERENCIAIS */

.benefit-strip{
  background:#fff;
  border-bottom:1px solid var(--border);
}

.benefit-strip-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}

.benefit-strip-grid div{
  padding:25px 28px;
  border-right:1px solid var(--border);
}

.benefit-strip-grid div:first-child{
  padding-left:0;
}

.benefit-strip-grid div:last-child{
  border-right:0;
}

.benefit-strip-grid strong{
  display:block;
  margin-bottom:5px;
  font-size:16px;
}

.benefit-strip-grid span{
  color:var(--muted);
  font-size:14px;
}


/* SEÇÕES */

.section{
  padding:76px 0;
}

.light{
  background:var(--paper);
}

.section-title{
  max-width:790px;
  margin-bottom:34px;
}

.section-title > p:last-child{
  color:var(--muted);
  font-size:17px;
  line-height:1.55;
}


/* PROCESSO */

.process{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.process article{
  padding:30px;
  border:1px solid var(--border);
  border-radius:20px;
  background:#fff;
}

.process article span{
  display:block;
  margin-bottom:38px;
  color:var(--accent);
  font-size:34px;
  font-weight:900;
}

.process h3{
  margin-bottom:9px;
  font-size:20px;
}

.process p{
  margin-bottom:0;
  color:var(--muted);
  line-height:1.55;
}

/* MARCAS */

.marcas{
  padding:75px 0;
  background:#fff;
}

.marcas-heading{
  max-width:760px;
  margin-bottom:40px;
}

.marcas-heading h2{
  margin:10px 0 12px;
  font-size:40px;
  line-height:1.1;
}

.marcas-heading p{
  margin:0;
  color:#666;
  font-size:16px;
}

.marcas-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.marca-item{
  height:135px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:25px;
  background:#f7f7f5;
  border:1px solid #e5e5e1;
  border-radius:14px;
}

.marca-item img{
  display:block;
  max-width:150px;
  max-height:65px;
  width:auto;
  height:auto;
  object-fit:contain;
}

/* APRESENTAÇÃO LOCAL */

.local-showcase{
  background:
    radial-gradient(circle at 15% 20%, rgba(77, 211, 194, .75), transparent 38%),
    radial-gradient(circle at 85% 75%, rgba(0, 91, 82, .45), transparent 45%),
    linear-gradient(135deg, #35ad9e 0%, #08796f 100%);
  overflow:hidden;
}

.local-showcase-grid{
  min-height:430px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:end;
}

.local-showcase-copy{
  align-self:center;
  padding:65px 0;
  max-width:560px;
  color:#10201d;
}

.local-showcase-copy p{
  margin:0 0 17px;
  font-size:16px;
  line-height:1.55;
}

.local-showcase-copy strong{
  font-weight:850;
}

.local-showcase-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:52px;
  margin-top:10px;
  padding:0 28px;

  background:#343436;
  color:#ffffff;

  border:2px solid #343436;
  border-radius:999px;

  font-family:'Manrope', sans-serif;
  font-size:16px;
  font-weight:800;
  letter-spacing:-0.01em;

  text-decoration:none;

  box-shadow:0 8px 22px rgba(0,0,0,.18);

  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.local-showcase-link:hover{
  background:#20f0d1;
  color:#061311;
  border-color:#20f0d1;

  transform:translateY(-2px);

  box-shadow:
    0 10px 24px rgba(32,240,209,.38),
    0 0 16px rgba(32,240,209,.20);
}

.local-showcase-link:active{
  transform:translateY(0) scale(.98);
}

.local-showcase-image{
  height:100%;
  min-height:430px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  transform:scale(1.18);
  transform-origin:center bottom;
}

.local-showcase-image img{
  width:auto;
  max-width:100%;
  max-height:430px;
  object-fit:contain;
  object-position:center bottom;
}

/* GALERIA */

.gallery-section{
  background:#fff;
}

.gallery-title{
  margin-bottom:30px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr;
  grid-template-rows:250px 250px;
  gap:14px;
}

.gallery-grid > div{
  overflow:hidden;
  border-radius:18px;
  background:#eee;
}

.gallery-main{
  grid-row:1 / 3;
}

.gallery-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-action{
  margin-top:28px;
}


/* MODELOS */

.products{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.product-card{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:20px;
  background:#fff;
}

.product-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}

.product-copy{
  padding:19px;
}

.product-copy h3{
  margin-bottom:6px;
  font-size:19px;
}

.product-copy p{
  margin-bottom:0;
  color:var(--muted);
  line-height:1.5;
}


/* POR QUE WISHBONE */

.wishbone-section{
  padding:78px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.14), transparent 38%),
    radial-gradient(circle at 85% 75%, rgba(0,0,0,.25), transparent 45%),
    linear-gradient(135deg, #5a5a5c 0%, #343436 100%);
  color:#fff;
}
.wishbone-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
}

.wishbone-copy p:last-child{
  max-width:500px;
  color:#d7d7d7;
  line-height:1.6;
}

.wishbone-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.wishbone-list div{
  padding:21px;
  border-radius:17px;
  background:#fff;
  color:var(--text);
}

.wishbone-list strong{
  display:block;
  margin-bottom:7px;
}

.wishbone-list span{
  color:var(--muted);
  line-height:1.45;
}


/* CTA */

.cta-section{
  padding:65px 0;
  background:var(--accent);
  color:#08231f;
}

.cta-grid{
  display:grid;
  grid-template-columns:1fr auto;
  gap:45px;
  align-items:center;
}

.cta-grid h2{
  max-width:720px;
  margin-bottom:12px;
}

.cta-grid p{
  margin-bottom:0;
}

.cta-eyebrow{
  color:#17645a;
}

.cta-button{
  display:inline-flex;
  min-height:52px;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  border-radius:999px;
  background:var(--graphite-dark);
  color:#fff;
  font-weight:850;
}


/* FAQ */

.faq-container{
  max-width:960px;
  margin:0;
}

.faq details{
  padding:20px 0;
  border-top:1px solid #d6d6d1;
}

.faq details:last-child{
  border-bottom:1px solid #d6d6d1;
}

.faq summary{
  cursor:pointer;
  font-size:17px;
  font-weight:800;
}

.faq details p{
  padding-top:13px;
  margin-bottom:0;
  color:var(--muted);
}


/* RODAPÉ */

.footer{
  background:#414143;
  padding:32px 0;
}

.footer-inner{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:70px;
  align-items:start;
}

.footer-brand img{
  width:170px;
  height:auto;
  object-fit:contain;
}

.footer-info{
  display:grid;
  grid-template-columns:1fr 1.05fr 1.35fr;
  gap:35px;
  align-items:start;
}

.footer-column h3{
  font-family:'Manrope', sans-serif;
  font-size:14px;
  font-weight:800;
  letter-spacing:.04em;
  color:#ffffff;
  margin:0 0 14px;
  padding-bottom:8px;
  border-bottom:2px solid var(--accent);
  display:inline-block;
}

.footer-column p{
  margin:0 0 7px;
  color:#f0f0f0;
  font-size:14px;
  line-height:1.5;
}

.footer-column strong{
  color:#ffffff;
  font-weight:700;
}


/* TABLET */

@media(max-width:900px){

  .hero-grid,
  .wishbone-grid,
  .cta-grid{
    grid-template-columns:1fr;
  }

  .hero-visual{
    justify-self:start;
    max-width:560px;
  }

  .benefit-strip-grid{
    grid-template-columns:1fr;
  }

  .benefit-strip-grid div{
    padding:20px 0;
    border-right:0;
    border-bottom:1px solid var(--border);
  }

  .process{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
    grid-template-rows:300px 230px 230px;
  }

  .gallery-main{
    grid-row:auto;
    grid-column:1 / 3;
  }

  .products{
    grid-template-columns:1fr 1fr;
  }

}

/* CARROSSEL DE MODELOS */

.models-carousel-section{
  background:var(--paper);
}

.carousel-title{
  max-width:760px;
  margin-bottom:36px;
}

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

.models-track{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  width:100%;
}

.models-track::-webkit-scrollbar{
  display:none;
}

.model-slide{
  flex:0 0 calc((100% - 36px) / 3);
  scroll-snap-align:start;
  background:#ffffff;
  border:1px solid #e5e5df;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.model-slide img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  background:#f7f7f5;
}

.model-slide-copy{
  padding:22px;
}

.model-slide-copy h3{
  margin:0 0 9px;
  font-size:20px;
}

.model-slide-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
  font-size:14px;
}

.carousel-arrow{
  flex:0 0 46px;
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:#343436;
  color:#ffffff;
  font-size:24px;
  font-weight:800;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s ease;
  box-shadow:0 8px 20px rgba(0,0,0,.16);
}

.carousel-arrow:hover{
  background:#20f0d1;
  color:#061311;
  transform:translateY(-2px);
}

.carousel-action{
  margin-top:30px;
}

/* CELULAR */

@media(max-width:620px){

  html,
  body{
    overflow-x:hidden;
  }  

  .container{
  width:calc(100% - 28px);
  max-width:1160px;
  margin-left:auto;
  margin-right:auto;
}

  .nav{
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand{
  margin:0 auto;
}

.brand img{
  width:135px;
  height:60px;
  object-fit:contain;
  object-position:center center;
  transform:none;
}

  .hero{
    padding:40px 0 52px;
  }

  h1{
    font-size:clamp(36px,11vw,44px);
  }

  h2{
    font-size:34px;
  }

  .hero-highlight{
    font-size:20px;
  }

  .lead{
    font-size:17px;
  }

  .quick-benefits{
    flex-direction:column;
    gap:12px;
  }

  .hero-visual{
    max-width:100%;
  }

  .hero{
  overflow:hidden;
}

.hero-card img{
  transform:scale(1.12);
}

.hero-card:hover img{
  transform:scale(1.12);
  filter:none;
}

  .floating-note{
    position:static;
    transform:none;
    margin-top:12px;
    text-align:center;
    white-space:normal;
  }

  .section{
    padding:58px 0;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }

  .gallery-main{
    grid-column:auto;
  }

  .gallery-grid > div{
    height:260px;
  }

  .products,
  .wishbone-list{
    grid-template-columns:1fr;
  }

  .hero-actions .btn,
  .gallery-action .btn,
  .cta-button{
    width:100%;
  }

  .footer-inner{
    flex-direction:column;
    text-align:center;
  }

.local-showcase-grid{
  grid-template-columns:1fr;
  gap:0;
}

.local-showcase-copy{
  padding:50px 0 25px;
}

.local-showcase-image{
  min-height:300px;
}

.local-showcase-image img{
  max-height:330px;
}

.footer-inner{
  grid-template-columns:1fr;
  gap:28px;
  text-align:left;
}

.footer-info{
  grid-template-columns:1fr;
  gap:28px;
}

.footer-brand img{
  width:145px;
}

/* INFORMAÇÕES RÁPIDAS - MOBILE */

.info-strip{
  margin-top:0;
  padding:24px 0 8px;
  background:var(--paper);
}

.info-strip-box{
  width:100%;
  max-width:none;
  display:grid;
  grid-template-columns:1fr;
  border:1px solid rgba(53,173,158,.20);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.info-strip-item{
  width:100%;
  padding:20px 18px;
  gap:16px;
}

.info-strip-item:not(:last-child){
  border-right:0;
  border-bottom:1px solid var(--border);
}

.info-strip-icon{
  width:46px;
  height:46px;
  border-radius:10px;
}

.info-strip-icon svg{
  width:22px;
  height:22px;
}

.info-strip-item strong{
  margin-bottom:4px;
  font-size:13px;
}

.info-strip-item p{
  font-size:14px;
  line-height:1.4;
}

/* COMO FUNCIONA - MOBILE */

.process{
  gap:10px;
}

.step{
  min-height:0;
  padding:16px 18px;
  border-radius:14px;
  display:block;
}

.step-number{
  font-size:24px;
  line-height:1;
  margin-bottom:12px;
}

.step h3{
  font-size:15px;
  line-height:1.25;
  margin:0 0 5px;
}

.step p{
  font-size:13px;
  line-height:1.4;
  margin:0;
}

.info-strip{
  padding-bottom:0;
}

} /* fim do @media(max-width:620px) */


/* AJUSTES GLOBAIS */

/* CNPJ - apenas espaçamento; sem linha decorativa */
.footer-cnpj{
  margin-top:12px;
}

/* Clique nos bonés do HERO */
.hero-bone-link{
  display:block;
  cursor:pointer;
}

#modelos-bones{
  scroll-margin-top:80px;
}

/* FAQ - resposta e botão de envio de logo */
.faq-answer{
  padding-top:4px;
}

.faq-logo-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  margin-top:10px;
  padding:8px 14px;

  /* mantém a mesma família de cor já usada na LP */
  background:#20f0d1;
  color:#081311;

  border:1px solid rgba(8,19,17,.22);
  border-radius:9px;

  font-family:'Inter', Arial, sans-serif;
  font-size:12px;
  font-weight:600;
  letter-spacing:.01em;
  line-height:1;

  text-decoration:none;
  cursor:pointer;

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

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

/* Neutraliza somente o peso exagerado herdado de .js-whatsapp */
.faq-logo-btn.js-whatsapp{
  font-weight:600;
  padding:8px 14px;
  border-radius:9px;
  box-shadow:0 2px 8px rgba(0,0,0,.10);
}

.faq-logo-btn:hover,
.faq-logo-btn.js-whatsapp:hover{
  background:#20f0d1;
  color:#081311;
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(0,0,0,.14);
}

.faq-logo-btn:active,
.faq-logo-btn.js-whatsapp:active{
  transform:translateY(0) scale(.98);
}
/* =========================================================
   RESPONSIVIDADE MOBILE FINAL — WISHBONE
   Mantém o desktop intacto e reorganiza telas até 620px.
   ========================================================= */
@media (max-width:620px){
  :root{ --mobile-pad:18px; }

  html,body{ width:100%; max-width:100%; overflow-x:hidden; }
  body{ font-size:16px; }
  .container{ width:calc(100% - (var(--mobile-pad) * 2)); max-width:none; margin-inline:auto; }

  /* header */
  .nav{ height:68px; justify-content:center; }
  .brand{ display:flex; justify-content:center; width:100%; margin:0; }
  .brand img{ width:116px; height:50px; object-position:center; }

  /* hero */
  .hero{ padding:34px 0 0; overflow:hidden; }
  .hero-grid{ display:flex; flex-direction:column; gap:24px; align-items:stretch; }
  .hero-copy{ max-width:none; }
  .hero .eyebrow[style]{ font-size:14px !important; line-height:1.35; margin-bottom:14px; }
  h1{ font-size:clamp(34px,10.2vw,40px); line-height:.98; letter-spacing:-.045em; margin-bottom:16px; }
  .city-line{ font-size:clamp(27px,8.1vw,32px); line-height:1.05; margin-top:3px; overflow-wrap:anywhere; }
  .hero-highlight{ font-size:18px; line-height:1.3; margin-bottom:12px; }
  .lead{ max-width:34ch; font-size:15px; line-height:1.55; }
  .hero-actions{ margin:22px 0 20px; }
  .hero-actions .btn{ width:100%; min-height:50px; padding:0 16px; font-size:14px; text-align:center; }
  .quick-benefits{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:0; padding-top:17px; }
  .quick-benefits span{ min-width:0; padding:0 7px; font-size:12px; line-height:1.25; }
  .quick-benefits strong{ font-size:13px; }
  .hero-visual{ width:100%; max-width:330px; margin:0 auto; justify-self:auto; }
  .hero-card{ overflow:visible; }
  .hero-card img,.hero-card:hover img{ width:100%; transform:scale(1.08); transform-origin:center bottom; filter:none; }

  /* faixa de informações */
  .info-strip{ margin-top:0; padding:20px 0 0; background:var(--paper); }
  .info-strip-box{ grid-template-columns:1fr; border-radius:16px; box-shadow:0 5px 18px rgba(0,0,0,.06); overflow:hidden; }
  .info-strip-item{ min-height:72px; padding:14px 15px; gap:13px; }
  .info-strip-item:not(:last-child){ border-right:0; border-bottom:1px solid var(--border); }
  .info-strip-icon{ width:40px; height:40px; border-radius:10px; }
  .info-strip-icon svg{ width:19px; height:19px; }
  .info-strip-item strong{ font-size:11px; line-height:1.25; margin-bottom:3px; }
  .info-strip-item p{ font-size:12px; line-height:1.35; }

  /* seções e títulos */
  .section{ padding:48px 0; }
  .section-title{ max-width:none; margin-bottom:24px; }
  .eyebrow{ font-size:11px; line-height:1.3; margin-bottom:10px; }
  h2{ font-size:clamp(27px,8vw,32px); line-height:1.04; margin-bottom:14px; }
  .section-title > p:last-child{ font-size:14px; line-height:1.5; }

  /* processo */
  .process{ display:grid; grid-template-columns:1fr; gap:10px; }
  .process article{ min-height:0 !important; height:auto !important; padding:18px 20px; border-radius:15px; }
  .process article span{ margin:0 0 13px; font-size:25px; line-height:1; }
  .process h3{ margin:0 0 5px; font-size:16px; line-height:1.25; }
  .process p{ margin:0; font-size:13px; line-height:1.45; }

  /* marcas */
  .marcas{ padding:48px 0; }
  .marcas-heading{ margin-bottom:25px; }
  .marcas-heading h2{ margin:8px 0 11px; font-size:29px; line-height:1.06; }
  .marcas-heading p{ font-size:14px; line-height:1.5; }
  .marcas-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
  .marca-item{ height:92px; padding:17px; border-radius:12px; }
  .marca-item img{ max-width:105px; max-height:48px; }

  /* apresentação local */
  .local-showcase{ overflow:hidden; }
  .local-showcase-grid{ min-height:0; display:flex; flex-direction:column; gap:0; }
  .local-showcase-copy{ max-width:none; padding:42px 0 24px; }
  .local-showcase-copy p{ margin-bottom:14px; font-size:14px; line-height:1.55; }
  .local-showcase-link{ width:100%; min-height:50px; margin-top:7px; padding:0 17px; font-size:14px; text-align:center; }
  .local-showcase-image{ width:100%; min-height:0; height:auto; transform:none; }
  .local-showcase-image img{ width:100%; max-height:315px; object-fit:contain; object-position:center bottom; }

  /* carrossel */
  .models-carousel-section{ padding:48px 0; }
  .carousel-title{ margin-bottom:24px; }
  .models-carousel{ gap:8px; }
  .models-track{ gap:12px; scroll-padding-left:0; }
  .model-slide{ flex:0 0 84%; border-radius:17px; }
  .model-slide img{ aspect-ratio:1/1; object-fit:cover; }
  .model-slide-copy{ padding:17px; }
  .model-slide-copy h3{ font-size:18px; margin-bottom:6px; }
  .model-slide-copy p{ font-size:13px; line-height:1.45; }
  .carousel-arrow{ position:absolute; z-index:3; width:38px; height:38px; flex-basis:38px; font-size:19px; box-shadow:0 5px 14px rgba(0,0,0,.18); }
  .carousel-prev{ left:-8px; }
  .carousel-next{ right:-8px; }
  .carousel-action{ margin-top:22px; }
  .carousel-action .btn{ width:100%; min-height:50px; font-size:14px; }

  /* por que Wishbone */
  .wishbone-section{ padding:48px 0; }
  .wishbone-grid{ grid-template-columns:1fr; gap:25px; }
  .wishbone-copy p:last-child{ font-size:14px; line-height:1.55; }
  .wishbone-list{ grid-template-columns:1fr 1fr; gap:9px; }
  .wishbone-list div{ padding:16px; border-radius:14px; }
  .wishbone-list strong{ font-size:14px; line-height:1.3; margin-bottom:5px; }
  .wishbone-list span{ display:block; font-size:12px; line-height:1.4; }

  /* CTA */
  .cta-section{ padding:44px 0; }
  .cta-grid{ grid-template-columns:1fr; gap:22px; }
  .cta-grid h2{ font-size:29px; line-height:1.05; margin-bottom:10px; overflow-wrap:anywhere; }
  .cta-grid p{ font-size:14px; line-height:1.5; }
  .cta-button{ width:100%; min-height:50px; font-size:14px; }

  /* FAQ */
  .faq-container{ max-width:none; margin:0; }
  .faq details{ padding:17px 0; }
  .faq summary{ padding-right:8px; font-size:15px; line-height:1.35; }
  .faq details p{ padding-top:10px; font-size:13px; line-height:1.5; }
  .faq-logo-btn,.faq-logo-btn.js-whatsapp{ min-height:38px; padding:0 13px; font-size:12px; }

  /* rodapé */
  .footer{ padding:30px 0 34px; }
  .footer-inner{ display:grid; grid-template-columns:1fr; gap:24px; text-align:left; }
  .footer-brand{ display:flex; justify-content:center; }
  .footer-brand img{ width:125px; }
  .footer-info{ grid-template-columns:1fr; gap:21px; }
  .footer-column h3{ margin-bottom:10px; font-size:12px; padding-bottom:6px; }
  .footer-column p{ margin-bottom:5px; font-size:12.5px; line-height:1.5; overflow-wrap:anywhere; }
  .footer-cnpj{ margin-top:8px; }
}

@media (max-width:360px){
  :root{ --mobile-pad:15px; }
  h1{ font-size:32px; }
  .city-line{ font-size:26px; }
  .quick-benefits span{ padding-inline:4px; font-size:11px; }
  .wishbone-list{ grid-template-columns:1fr; }
  .model-slide{ flex-basis:88%; }
}

/* FUNDO MANCHADO - TESTE FINAL */

.wishbone-section{
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.18), transparent 38%),
    radial-gradient(circle at 85% 75%, rgba(0,0,0,.32), transparent 48%),
    linear-gradient(135deg,#606063,#303032) !important;
}

/* HERO COM FUNDO MANCHADO */

.hero{
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(255,255,255,.10) 0%,
      rgba(255,255,255,0) 34%
    ),
    radial-gradient(
      circle at 82% 30%,
      rgba(53,173,158,.18) 0%,
      rgba(53,173,158,0) 40%
    ),
    radial-gradient(
      circle at 72% 88%,
      rgba(0,0,0,.22) 0%,
      rgba(0,0,0,0) 45%
    ),
    linear-gradient(
      135deg,
      #555557 0%,
      #414143 48%,
      #303032 100%
    ) !important;
}

/* VERDES COM GRADIENTE SUTIL E PADRONIZADO */

.local-showcase,
.cta-section{
  background:
    radial-gradient(
      circle at 85% 35%,
      rgba(86, 207, 191, .16) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 12% 70%,
      rgba(18, 119, 108, .12) 0%,
      transparent 44%
    ),
    linear-gradient(
      120deg,
      #258f84 0%,
      #32a99c 52%,
      #48b9ab 100%
    ) !important;
}

/* TEXTOS DOS BLOCOS VERDES */

.local-showcase,
.cta-section{
  color:#ffffff;
}

.local-showcase-copy p,
.cta-grid p{
  color:rgba(255,255,255,.88);
}

.local-showcase .eyebrow,
.cta-section .eyebrow,
.cta-eyebrow{
  color:rgba(255,255,255,.82);
}

.local-showcase h2,
.cta-section h2{
  color:#ffffff;
}