/* ==========================================================================
   Campeche Cell — folha de estilo compartilhada
   Identidade: preto + laranja da marca, tom sério.
   ========================================================================== */

:root{
  /* marca */
  --brand:#F2600C;          /* laranja do logo, levemente contido */
  --brand-bright:#FF7A22;
  --brand-deep:#A8400A;
  --brand-soft:rgba(242,96,12,.12);
  --brand-line:rgba(242,96,12,.28);

  /* superfícies */
  --bg:#0A0A0B;
  --surface:#111114;
  --surface-2:#16161A;
  --surface-3:#1C1C21;
  --line:#26262D;
  --line-soft:#1D1D23;

  /* texto */
  --ink:#FFFFFF;
  --body:#ADADB6;
  --muted:#7B7B85;

  --whats:#25D366;
  --whats-dark:#1DA851;
  --star:#F5A623;

  --radius:14px;
  --radius-lg:20px;
  --shadow:0 10px 30px -14px rgba(0,0,0,.9);
  --shadow-lg:0 28px 60px -24px rgba(0,0,0,1);
  --maxw:1180px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Archivo',-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
  background:var(--bg);color:var(--body);line-height:1.65;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
/* height:auto neutraliza o atributo height="" do HTML, que senão vence o aspect-ratio */
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
h1,h2,h3,h4{color:var(--ink);line-height:1.18;font-weight:800;letter-spacing:-.022em}
strong,b{color:var(--ink);font-weight:700}

/* foco visível (acessibilidade) */
a:focus-visible,button:focus-visible,summary:focus-visible{
  outline:2px solid var(--brand-bright);outline-offset:3px;border-radius:6px;
}

.skip-link{
  position:absolute;left:-9999px;top:0;z-index:200;
  background:var(--brand);color:#0A0A0B;font-weight:700;padding:12px 20px;border-radius:0 0 10px 0;
}
.skip-link:focus{left:0}

.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 20px}
.section{padding:62px 0;position:relative}
/* compensa o header sticky quando o usuário chega por link âncora */
section[id],main[id]{scroll-margin-top:86px}
.section-alt{background:var(--surface)}
.section-alt-2{background:linear-gradient(180deg,var(--surface) 0%,var(--bg) 100%)}

.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.74rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--brand);margin-bottom:14px;
}
.eyebrow .ic{width:15px;height:15px}
.section-head{max-width:820px;margin:0 auto 38px;text-align:center}
.section-head h2{font-size:clamp(1.55rem,5.2vw,2.3rem);margin-bottom:12px}
.section-head p{font-size:1rem;color:var(--muted)}

.ic{width:24px;height:24px;flex-shrink:0}
.svg-sprite{position:absolute;width:0;height:0;overflow:hidden}

/* --------------------------------------------------------------- botões */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font-family:inherit;font-weight:700;font-size:.98rem;line-height:1.2;
  cursor:pointer;border:none;border-radius:10px;padding:15px 24px;
  transition:transform .18s ease,background .18s ease,box-shadow .18s ease;text-align:center;
}
.btn .ic{width:20px;height:20px}
.btn-primary{background:var(--brand);color:#0A0A0B;box-shadow:0 10px 26px -12px rgba(242,96,12,.9)}
.btn-primary:hover{background:var(--brand-bright);transform:translateY(-2px)}
.btn-whats{background:var(--whats);color:#08130C}
.btn-whats:hover{background:var(--whats-dark);transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--ink);border:1px solid var(--line)}
.btn-ghost:hover{border-color:var(--brand);color:var(--brand-bright)}
.btn-lg{padding:17px 30px;font-size:1.04rem}
.btn-block{width:100%}

/* Pulso discreto só no CTA da primeira dobra: um anel que abre e some.
   É box-shadow, não transform nem largura, então não empurra nada em volta
   e não muda o tamanho do botão. Para no hover, quando o convite já cumpriu o papel. */
.btn-pulse{animation:pulsoCta 2.4s cubic-bezier(.35,0,.5,1) infinite}
.btn-pulse:hover,.btn-pulse:focus-visible{animation-play-state:paused}
@keyframes pulsoCta{
  0%  {box-shadow:0 10px 26px -12px rgba(242,96,12,.9), 0 0 0 0 rgba(255,122,34,.62)}
  65% {box-shadow:0 10px 26px -12px rgba(242,96,12,.9), 0 0 0 11px rgba(255,122,34,0)}
  100%{box-shadow:0 10px 26px -12px rgba(242,96,12,.9), 0 0 0 0 rgba(255,122,34,0)}
}

/* --------------------------------------------------------------- header */
.header{
  position:sticky;top:0;z-index:90;background:rgba(10,10,11,.88);
  backdrop-filter:blur(12px);border-bottom:1px solid var(--line-soft);transition:box-shadow .25s;
}
.header.scrolled{box-shadow:0 8px 28px -18px #000;border-bottom-color:var(--line)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;height:74px}
.logo{display:flex;align-items:center}
.logo img{height:38px;width:auto;flex-shrink:0}
.nav{display:none;gap:26px}
.nav a{font-weight:600;font-size:.92rem;color:var(--body);transition:color .18s}
.nav a:hover,.nav a[aria-current="page"]{color:var(--brand-bright)}
.header .btn{padding:11px 17px;font-size:.88rem}
.header .btn .label-full{display:none}

/* --------------------------------------------------------------- hero */
.hero{position:relative;overflow:hidden;background:var(--bg);border-bottom:1px solid var(--line-soft)}
.hero::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 70% 55% at 78% 8%,rgba(242,96,12,.17),transparent 62%),
    radial-gradient(ellipse 90% 60% at 20% 100%,rgba(255,255,255,.03),transparent 60%);
}
.hero-inner{
  position:relative;z-index:2;display:flex;flex-direction:column;gap:34px;
  padding-top:42px;padding-bottom:56px;
}
.hero-text{text-align:center}
/* logo no topo da primeira dobra: substitui o cabeçalho, que some no mobile */
.hero-logo{display:flex;justify-content:center;margin-bottom:22px}
.hero-logo img{height:54px;width:auto;filter:drop-shadow(0 6px 18px rgba(0,0,0,.6))}
.hero h1{font-size:clamp(1.85rem,7.4vw,3.15rem);margin-bottom:14px;text-wrap:balance}
.hero h1 .hl{color:var(--brand)}
.hero-sub{font-size:1.03rem;color:var(--body);margin:0 auto 22px;max-width:540px}
.hero-flag{
  display:inline-flex;align-items:center;gap:11px;
  background:var(--surface-2);border:1px solid var(--brand-line);border-radius:60px;
  padding:5px 18px 5px 5px;margin-bottom:24px;max-width:100%;
}
.hero-flag-tag{
  display:inline-flex;align-items:center;gap:6px;background:var(--brand);color:#0A0A0B;
  font-weight:800;font-size:.74rem;letter-spacing:.05em;text-transform:uppercase;
  padding:8px 13px;border-radius:60px;flex-shrink:0;
}
.hero-flag-tag .ic{width:15px;height:15px}
.hero-flag-txt{font-size:.88rem;font-weight:600;text-align:left}
.hero-cta{display:flex;flex-direction:column;gap:11px;max-width:400px;margin:0 auto;align-items:stretch}
.hero-micro{
  display:flex;align-items:center;gap:8px;justify-content:center;
  font-size:.84rem;color:var(--muted);margin-top:2px;
}
.hero-micro .dot{width:7px;height:7px;border-radius:50%;background:var(--whats);flex-shrink:0}
.hero-pills{display:flex;flex-wrap:wrap;gap:9px;margin-top:24px;justify-content:center}
.hero-pill{
  display:flex;align-items:center;gap:8px;font-size:.85rem;font-weight:600;color:var(--body);
  background:var(--surface-2);border:1px solid var(--line);padding:9px 14px;border-radius:9px;
}
.hero-pill .ic{width:17px;height:17px;color:var(--brand)}

.hero-media{position:relative;width:100%;max-width:330px;margin:6px auto 0}
.hero-media-glow{
  position:absolute;inset:-30px;z-index:0;
  background:radial-gradient(circle,rgba(242,96,12,.28),transparent 68%);filter:blur(26px);
}
.hero-media-frame{
  position:relative;z-index:1;border-radius:var(--radius-lg);overflow:hidden;
  border:1px solid var(--line);box-shadow:var(--shadow-lg);
}
.hero-media-frame img{width:100%;aspect-ratio:4/5;object-fit:cover}
.hero-float{
  position:absolute;left:-12px;bottom:20px;z-index:2;display:flex;align-items:center;gap:11px;
  background:var(--surface-2);border:1px solid var(--line);border-radius:12px;padding:11px 14px;
  box-shadow:var(--shadow-lg);
}
.hero-float .fic{
  width:36px;height:36px;border-radius:9px;flex-shrink:0;background:var(--brand-soft);
  display:flex;align-items:center;justify-content:center;
}
.hero-float .fic .ic{width:19px;height:19px;color:var(--brand)}
.hero-float b{display:block;font-size:.86rem;line-height:1.25}
.hero-float span{font-size:.72rem;color:var(--muted)}

/* --------------------------------------------------------------- stats */
.stats{background:var(--surface);border-bottom:1px solid var(--line-soft)}
.stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:var(--line-soft)}
.stat{
  background:var(--surface);text-align:center;padding:24px 12px;
  display:flex;flex-direction:column;align-items:center;gap:3px;
}
.stat .ic{width:24px;height:24px;color:var(--brand);margin-bottom:5px}
.stat b{font-size:1.25rem;color:var(--ink)}
.stat span{font-size:.8rem;color:var(--muted);line-height:1.4}

/* --------------------------------------------------- destaques (highlight) */
.highlight-grid{display:grid;grid-template-columns:1fr;gap:18px}
.highlight-card{
  position:relative;overflow:hidden;border-radius:var(--radius-lg);
  background:linear-gradient(150deg,var(--surface-2),var(--surface));
  border:1px solid var(--brand-line);padding:30px 26px;
}
.highlight-card::after{
  content:"";position:absolute;right:-60px;top:-60px;width:190px;height:190px;border-radius:50%;
  background:radial-gradient(circle,rgba(242,96,12,.17),transparent 70%);pointer-events:none;
}
.highlight-ic{
  width:52px;height:52px;border-radius:13px;background:var(--brand);
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;
}
.highlight-ic .ic{width:27px;height:27px;color:#0A0A0B}
.highlight-card .tag{
  display:inline-block;font-size:.68rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;
  color:var(--brand);background:var(--brand-soft);border-radius:5px;padding:4px 9px;margin-bottom:10px;
}
.highlight-card h3{font-size:1.3rem;margin-bottom:8px}
.highlight-card p{font-size:.95rem}
.highlight-card p + p{margin-top:8px}

/* --------------------------------------------------------------- serviços */
.services-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.service-card{
  background:var(--surface-2);border:1px solid var(--line);border-radius:var(--radius);
  padding:26px 16px;text-align:center;transition:border-color .2s,transform .2s,background .2s;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;min-height:150px;
}
.service-card:hover{border-color:var(--brand-line);transform:translateY(-3px);background:var(--surface-3)}
.service-icon{
  width:50px;height:50px;border-radius:12px;background:var(--brand-soft);
  border:1px solid var(--brand-line);display:flex;align-items:center;justify-content:center;
}
.service-icon .ic{width:25px;height:25px;color:var(--brand)}
.service-card h3{font-size:1rem;font-weight:700;letter-spacing:-.01em}
.services-note{
  margin-top:22px;text-align:center;font-size:.93rem;color:var(--muted);
  border:1px dashed var(--line);border-radius:var(--radius);padding:16px 18px;
}
.services-note strong{color:var(--brand-bright)}

/* --------------------------------------------------------------- sobre */
.about-inner{display:flex;flex-direction:column;gap:44px}
.about-media{position:relative;flex:1;min-width:0}
.about-media img{
  width:100%;border-radius:var(--radius-lg);aspect-ratio:4/3;object-fit:cover;
  border:1px solid var(--line);box-shadow:var(--shadow-lg);
}
.about-badge{
  position:absolute;right:14px;bottom:-22px;background:var(--brand);color:#0A0A0B;
  border-radius:12px;padding:12px 20px;text-align:center;box-shadow:var(--shadow-lg);
}
.about-badge b{display:block;font-size:1.15rem;line-height:1;color:#0A0A0B}
.about-badge span{font-size:.6rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}
.about-text{flex:1}
.about-text h2{font-size:clamp(1.5rem,4.8vw,2.15rem);margin-bottom:14px}
.about-text p + p{margin-top:12px}
.about-list{display:flex;flex-direction:column;gap:11px;margin:22px 0 26px}
/* posicionamento absoluto do ícone (e não flex) para o item aceitar vários spans inline */
.about-list li{position:relative;padding-left:31px;font-size:.95rem;color:var(--body)}
.about-list li .ic{position:absolute;left:0;top:4px;width:20px;height:20px;color:var(--brand)}

/* --------------------------------------------------------- card cruzado */
.crosslink{
  display:flex;flex-direction:column;gap:0;overflow:hidden;
  border-radius:var(--radius-lg);border:1px solid var(--line);background:var(--surface-2);
  transition:border-color .2s,transform .2s;
}
.crosslink:hover{border-color:var(--brand-line);transform:translateY(-3px)}
.crosslink-media{position:relative;flex:1;min-width:0}
.crosslink-media img{width:100%;aspect-ratio:16/10;object-fit:cover}
.crosslink-body{flex:1.15;padding:28px 24px;display:flex;flex-direction:column;justify-content:center}
.crosslink-body .tag{
  display:inline-flex;align-self:flex-start;align-items:center;gap:6px;
  font-size:.68rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;
  color:var(--brand);background:var(--brand-soft);border-radius:5px;padding:5px 10px;margin-bottom:12px;
}
.crosslink-body .tag .ic{width:13px;height:13px}
.crosslink-body h3{font-size:1.35rem;margin-bottom:10px}
.crosslink-body p{font-size:.95rem}
.crosslink-arrow{
  display:inline-flex;align-items:center;gap:8px;margin-top:16px;
  font-weight:700;font-size:.95rem;color:var(--brand-bright);
}
.crosslink-arrow .ic{width:18px;height:18px;transition:transform .2s}
.crosslink:hover .crosslink-arrow .ic{transform:translateX(4px)}

/* --------------------------------------------------------------- passos */
.steps{display:grid;grid-template-columns:1fr;gap:12px;counter-reset:passo}
.step{
  display:flex;gap:16px;align-items:flex-start;
  background:var(--surface-2);border:1px solid var(--line);border-radius:var(--radius);padding:20px;
}
.step-num{
  width:40px;height:40px;border-radius:10px;flex-shrink:0;
  background:var(--brand-soft);border:1px solid var(--brand-line);color:var(--brand);
  font-weight:800;font-size:1.05rem;display:flex;align-items:center;justify-content:center;
}
.step h3{font-size:1rem;margin-bottom:3px}
.step p{font-size:.9rem}

/* --------------------------------------------------------------- porquês */
.why-grid{display:grid;grid-template-columns:1fr;gap:14px}
.why-card{
  display:flex;gap:15px;background:var(--surface-2);border:1px solid var(--line);
  border-radius:var(--radius);padding:20px;
}
.why-ic{
  width:44px;height:44px;border-radius:11px;flex-shrink:0;background:var(--brand-soft);
  border:1px solid var(--brand-line);display:flex;align-items:center;justify-content:center;
}
.why-ic .ic{width:22px;height:22px;color:var(--brand)}
.why-card h3{font-size:1.02rem;margin-bottom:4px}
.why-card p{font-size:.9rem}

/* --------------------------------------------------------------- cobertura */
.coverage-grid{display:grid;grid-template-columns:1fr;gap:14px}
/* faixa de topo por box-shadow inset: acompanha o border-radius, ao contrário de border-top */
.coverage-card{
  background:var(--surface-2);border:1px solid var(--line);border-radius:var(--radius);
  padding:22px;box-shadow:inset 0 3px 0 var(--line);
}
.coverage-card.is-main{box-shadow:inset 0 3px 0 var(--brand)}
.coverage-card .tag{
  display:inline-block;font-size:.66rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;
  color:var(--brand);margin-bottom:8px;
}
.coverage-card h3{display:flex;align-items:center;gap:9px;font-size:1.05rem;margin-bottom:7px}
.coverage-card h3 .ic{width:19px;height:19px;color:var(--brand)}
.coverage-card p{font-size:.9rem}
.bairros{
  margin-top:22px;display:flex;flex-wrap:wrap;gap:8px;justify-content:center;
}
.bairros span{
  font-size:.82rem;color:var(--muted);background:var(--surface-2);
  border:1px solid var(--line);border-radius:60px;padding:6px 14px;
}

/* --------------------------------------------------------------- galeria */
.gallery-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.gallery-grid figure{
  margin:0;border-radius:var(--radius);overflow:hidden;
  border:1px solid var(--line);background:var(--surface-2);
}
.gallery-grid figure img{width:100%;aspect-ratio:4/3;object-fit:cover;transition:transform .4s ease}
.gallery-grid figure:hover img{transform:scale(1.05)}
.gallery-grid figcaption{padding:10px 12px;font-size:.8rem;font-weight:600;color:var(--body)}
.map-wrap{
  margin-top:26px;border-radius:var(--radius-lg);overflow:hidden;
  border:1px solid var(--line);box-shadow:var(--shadow);
}
.map-wrap iframe{display:block;width:100%;height:360px;border:0;filter:grayscale(.25) contrast(1.05)}

/* --------------------------------------------------------------- faixa CTA */
.cta-band{
  background:linear-gradient(150deg,#17110C 0%,#0C0C0D 60%);
  border-top:1px solid var(--line-soft);border-bottom:1px solid var(--line-soft);
  text-align:center;position:relative;overflow:hidden;
}
.cta-band::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 70% at 80% 20%,rgba(242,96,12,.16),transparent 60%);
}
.cta-band .container{position:relative;z-index:1}
.cta-band h2{font-size:clamp(1.45rem,5vw,2.1rem);margin-bottom:12px}
.cta-band p{max-width:540px;margin:0 auto 24px}
.cta-band .btn{margin:0 auto}

/* --------------------------------------------------------------- avaliações */
.g-summary{
  display:flex;flex-direction:column;align-items:center;gap:15px;text-align:center;
  background:var(--surface-2);border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:26px 22px;max-width:520px;margin:0 auto 30px;box-shadow:var(--shadow);
}
.g-summary-top{display:flex;align-items:center;gap:10px}
.g-summary-top .g-logo{width:26px;height:26px}
.g-summary-top b{font-size:1rem}
.g-summary-score{display:flex;align-items:center;gap:16px}
.g-score{font-size:2.9rem;font-weight:800;color:var(--ink);line-height:1}
.g-score-side{text-align:left}
.g-stars{display:flex;gap:2px;color:var(--star)}
.g-stars .ic{width:19px;height:19px}
.g-score-side span{font-size:.82rem;color:var(--muted)}
/* .g-stars também é um span dentro de .g-score-side: precisa reafirmar a cor da estrela */
.g-summary .g-stars{color:var(--star)}

/* carrossel de avaliações: linha única em movimento contínuo.
   Fica FORA do .container, por isso ocupa a largura toda sem precisar de vw. */
.reviews-marquee{position:relative;overflow:hidden;padding:4px 0}
.reviews-marquee::before,.reviews-marquee::after{
  content:"";position:absolute;top:0;bottom:0;width:130px;z-index:2;pointer-events:none;
}
.reviews-marquee::before{left:0;background:linear-gradient(90deg,var(--bg) 18%,transparent)}
.reviews-marquee::after{right:0;background:linear-gradient(270deg,var(--bg) 18%,transparent)}
.section-alt .reviews-marquee::before{background:linear-gradient(90deg,var(--surface) 18%,transparent)}
.section-alt .reviews-marquee::after{background:linear-gradient(270deg,var(--surface) 18%,transparent)}

.reviews-track{
  display:flex;align-items:stretch;gap:16px;width:max-content;
  animation:marquee 95s linear infinite;will-change:transform;
}
/* o clone tem a mesma largura do original, então metade da pista + metade do gap = 1 volta exata */
@keyframes marquee{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(calc(-50% - 8px),0,0)}
}
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track{animation-play-state:paused}

.review-card{
  background:var(--surface-2);border:1px solid var(--line);border-radius:var(--radius);
  padding:20px;position:relative;
}
.reviews-track .review-card{
  width:350px;flex:0 0 350px;display:flex;flex-direction:column;
}
.reviews-track .review-text{flex:1}
@media(max-width:679px){
  /* card mais estreito no celular para o próximo aparecer de lado e indicar que há mais */
  .reviews-track .review-card{width:290px;flex-basis:290px}
  /* degradê curto: com 130px ele comia quase o card inteiro numa tela de 360px */
  .reviews-marquee::before,.reviews-marquee::after{width:40px}
}

/* O carrossel roda sempre, inclusive para quem tem "reduzir movimento" ligado no sistema.
   Decisão do cliente: com o fallback estático ele aparecia parado, como um slider manual. */
.review-g{position:absolute;top:16px;right:16px;width:18px;height:18px;opacity:.85}
.review-head{display:flex;align-items:center;gap:12px;margin-bottom:10px;padding-right:26px}
.review-avatar{
  width:44px;height:44px;border-radius:50%;flex-shrink:0;overflow:hidden;
  border:1px solid var(--line);background:var(--surface-3);
}
.review-avatar img{width:100%;height:100%;object-fit:cover}
.review-head b{display:block;font-size:.93rem;line-height:1.3}
.review-date{font-size:.78rem;color:var(--muted)}
.review-stars{display:flex;gap:1px;color:var(--star);margin-bottom:9px}
.review-stars .ic{width:15px;height:15px}
.review-text{font-size:.92rem;color:var(--body)}

/* --------------------------------------------------------------- FAQ */
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:10px}
.faq-item{background:var(--surface-2);border:1px solid var(--line);border-radius:12px;overflow:hidden}
.faq-item.open{border-color:var(--brand-line)}
.faq-q{
  width:100%;background:none;border:none;cursor:pointer;font-family:inherit;
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:17px 19px;font-size:.98rem;font-weight:700;color:var(--ink);text-align:left;
}
.faq-q .ic{width:19px;height:19px;color:var(--brand);transition:transform .25s;flex-shrink:0}
.faq-item.open .faq-q .ic{transform:rotate(180deg)}
/* acordeão por max-height: roda uma vez por clique do usuário, não em scroll nem em loop.
   grid-template-rows 0fr->1fr foi testado e não serve aqui: o container tem altura
   indefinida, então o 1fr resolve para 0 e a resposta nunca abre. */
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq-a p{padding:0 19px 17px;font-size:.92rem}
.faq-a p + p{padding-top:0;margin-top:-6px}

/* --------------------------------------------------------- bloco confiança */
.trust{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:28px 24px;max-width:900px;margin:0 auto;
}
.trust h3{font-size:1.1rem;margin-bottom:14px;display:flex;align-items:center;gap:10px}
.trust h3 .ic{width:21px;height:21px;color:var(--brand)}
.trust p{font-size:.9rem;line-height:1.75}
.trust p + p{margin-top:12px}
.trust .no-list{margin:12px 0 0;display:flex;flex-direction:column;gap:7px}
.trust .no-list li{display:flex;gap:10px;align-items:flex-start;font-size:.88rem}
.trust .no-list li .ic{width:17px;height:17px;color:#D9534F;flex-shrink:0;margin-top:4px}

/* --------------------------------------------------------------- rodapé */
.footer{background:#08080A;border-top:1px solid var(--line-soft);padding:50px 0 0}
.footer-grid{display:grid;grid-template-columns:1fr;gap:30px;padding-bottom:32px}
.footer h4{font-size:.95rem;margin-bottom:14px}
.footer-logo img{height:40px;width:auto;margin-bottom:14px}
.footer-about p{font-size:.88rem;line-height:1.7}
.footer ul li{margin-bottom:9px;font-size:.88rem}
.footer ul li a:hover{color:var(--brand-bright)}
.footer-contact li{display:flex;align-items:flex-start;gap:9px}
.footer-contact .ic{width:17px;height:17px;color:var(--brand);margin-top:4px}
.footer-legal{
  border-top:1px solid var(--line-soft);padding:20px 0;font-size:.79rem;
  line-height:1.7;color:var(--muted);
}
.footer-legal strong{color:var(--body);font-weight:600}
.footer-bar{
  border-top:1px solid var(--line-soft);padding:18px 0;display:flex;flex-direction:column;
  gap:10px;align-items:center;text-align:center;font-size:.8rem;color:var(--muted);
}
.footer-links{display:flex;gap:18px;flex-wrap:wrap;justify-content:center}
.footer-links a:hover{color:var(--brand-bright)}

/* --------------------------------------------------------- whats flutuante */
.float-whats{
  position:fixed;right:16px;bottom:16px;z-index:80;width:58px;height:58px;border-radius:50%;
  background:var(--whats);display:flex;align-items:center;justify-content:center;
  box-shadow:0 12px 28px -8px rgba(37,211,102,.6);transition:transform .2s;
}
.float-whats:hover{transform:scale(1.07)}
.float-whats .ic{width:31px;height:31px;color:#fff}

/* --------------------------------------------------------------- páginas legais */
.legal{padding:48px 0 62px}
.legal-inner{max-width:820px;margin:0 auto}
.legal h1{font-size:clamp(1.6rem,5vw,2.2rem);margin-bottom:8px}
.legal .legal-date{font-size:.85rem;color:var(--muted);margin-bottom:32px}
.legal h2{font-size:1.15rem;margin:32px 0 10px}
.legal p{font-size:.94rem;margin-bottom:12px}
.legal ul{margin:0 0 14px 0;display:flex;flex-direction:column;gap:8px}
.legal ul li{display:flex;gap:10px;align-items:flex-start;font-size:.93rem}
.legal ul li::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--brand);flex-shrink:0;margin-top:9px}
.legal a{color:var(--brand-bright);text-decoration:underline}

/* --------------------------------------------------------------- página 404 */
.erro-404{
  min-height:100vh;display:flex;align-items:center;text-align:center;
  padding:60px 0;position:relative;overflow:hidden;
}
.erro-404::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse 70% 50% at 50% 0%,rgba(242,96,12,.15),transparent 60%);
}
.erro-404 .container{position:relative;z-index:1;max-width:640px}
.erro-logo{display:inline-flex;margin-bottom:34px}
.erro-logo img{height:48px;width:auto}
.erro-num{
  font-size:clamp(3.4rem,14vw,5.5rem);font-weight:800;line-height:1;
  color:var(--brand);letter-spacing:-.04em;margin-bottom:10px;
}
.erro-404 h1{font-size:clamp(1.4rem,5.5vw,2.1rem);margin-bottom:12px;text-wrap:balance}
.erro-sub{font-size:1rem;color:var(--muted);margin:0 auto 30px;max-width:440px}
.erro-cta{display:flex;flex-direction:column;gap:11px;align-items:stretch;max-width:340px;margin:0 auto 34px}
.erro-links{display:flex;flex-wrap:wrap;gap:8px 22px;justify-content:center;font-size:.88rem}
.erro-links a{color:var(--body)}
.erro-links a:hover{color:var(--brand-bright)}
@media(min-width:560px){
  .erro-cta{flex-direction:row;max-width:none;justify-content:center}
}

/* --------------------------------------------------------------- reveal */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .6s cubic-bezier(.2,.7,.2,1),transform .6s cubic-bezier(.2,.7,.2,1)}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  /* carrossel e pulso do CTA ficam de fora: por decisão do cliente eles rodam sempre */
  *:not(.reviews-track):not(.btn-pulse){animation-duration:.001ms !important;transition-duration:.001ms !important}
}

@media(max-width:679px){
  /* card ímpar sozinho na última linha ocupa a largura toda */
  .services-grid > article:last-child:nth-child(odd){grid-column:1 / -1}
}

/* No mobile e no tablet o cabeçalho sai de cena: quem abre o site vê primeiro o logo,
   dentro da própria primeira dobra, com tudo centralizado. */
@media(max-width:999px){
  .header{display:none}
  /* a faixa de coleta empilha: pílula em cima, texto centralizado embaixo */
  .hero-flag{flex-direction:column;gap:10px;border-radius:18px;padding:14px 20px}
  .hero-flag-txt{text-align:center}
}

/* --------------------------------------------------------------- breakpoints */
@media(min-width:680px){
  .section{padding:80px 0}
  .stats-grid{grid-template-columns:repeat(4,1fr)}
  .services-grid{grid-template-columns:repeat(3,1fr)}
  .highlight-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .coverage-grid{grid-template-columns:repeat(3,1fr)}
  .gallery-grid{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:1.5fr 1fr 1.2fr;gap:36px}
  .footer-bar{flex-direction:row;justify-content:space-between;text-align:left}
  .crosslink{flex-direction:row;align-items:stretch}
  .crosslink-media img{height:100%;aspect-ratio:auto;min-height:230px}
  .float-whats{right:22px;bottom:22px;width:62px;height:62px}
}
@media(min-width:1000px){
  .nav{display:flex}
  .header .btn .label-full{display:inline}
  .hero-inner{flex-direction:row;align-items:center;gap:54px;padding-top:70px;padding-bottom:82px}
  .hero-text{flex:1;text-align:left}
  .hero-logo{display:none}   /* no desktop o logo já está no cabeçalho */
  /* No desktop: 2 linhas na home, 3 na LP (a frase dela é bem mais longa).
     Mesmo corpo nas duas para o peso visual não mudar de página para página.
     A coluna de texto para de crescer quando o container bate no máximo,
     por isso o vw tem teto. */
  .hero h1{font-size:clamp(1.9rem,3.2vw,2.7rem)}
  .hero-sub{margin-left:0;margin-right:0}
  .hero-cta{flex-direction:row;max-width:none;margin:0;flex-wrap:wrap;align-items:center}
  .hero-micro{justify-content:flex-start;width:100%}
  .hero-pills{justify-content:flex-start}
  .hero-media{flex-shrink:0;max-width:380px;margin:0}
  .steps{grid-template-columns:repeat(4,1fr)}
  .gallery-grid{grid-template-columns:repeat(5,1fr)}
  .about-inner{flex-direction:row;align-items:center;gap:56px}
}
