/* =============================================
   TOP FORROS — style.css
   Paleta: Verde #2D6B3F | Verde claro #8BC34A
            Laranja #F57C00 | Branco #FFFFFF
            Cinza claro #F5F5F5 | Texto #333333
   ============================================= */

/* ----- VARIÁVEIS & RESET ----- */
:root {
  --green-dark:   #2D6B3F;
  --green-mid:    #245733;
  --green-light:  #8BC34A;
  --orange:       #F57C00;
  --orange-dark:  #D96900;
  --white:        #FFFFFF;
  --gray-light:   #F5F5F5;
  --gray-mid:     #E8E8E8;
  --text:         #333333;
  --text-muted:   #666666;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:    0 16px 56px rgba(0,0,0,.16);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font:         'Montserrat', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.15;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
}

.btn--sm  { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg  { padding: 16px 32px; font-size: 1rem; }
.btn--xl  { padding: 20px 40px; font-size: 1.1rem; }

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,124,0,.35);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ----- SECTION COMMONS ----- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(45,107,63,.1);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-tag--light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-title--light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.section-sub--light { color: rgba(255,255,255,.8); }

.highlight-orange { color: var(--orange); }

/* ----- SCROLL REVEAL ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__icon {
  width: 44px;
  height: 40px;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__top {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: 0.08em;
}

.logo__bottom {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.18em;
}

/* Nav */
.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover {
  color: var(--green-dark);
  background: var(--gray-light);
}

.header__cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
  padding: 16px 24px 24px;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu__link {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--gray-mid);
  display: block;
}

.mobile-menu__cta {
  margin-top: 16px;
  justify-content: center;
  width: 100%;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,.04) 39px,
      rgba(255,255,255,.04) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,.02) 79px,
      rgba(255,255,255,.02) 80px
    );
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 24px;
}

.hero__badge svg {
  width: 8px;
  height: 8px;
  color: var(--green-light);
}

.hero__headline {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero__headline-line {
  display: block;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 16px;
  max-width: 500px;
  line-height: 1.7;
}

.hero__sub strong { color: var(--white); }

.hero__tagline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green-light);
  margin-bottom: 36px;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero__note {
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__note::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: rgba(255,255,255,.4);
}

/* Hero Visual */
.hero__visual { position: relative; }

.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__img-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--orange);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 36px);
}

.hero__img-badge strong {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__img-badge span {
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* Wave separator */
.hero__wave {
  display: block;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: 60px;
}

/* =============================================
   BENEFÍCIOS
   ============================================= */
.benefits {
  background: var(--white);
  padding: 96px 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.benefit-card { grid-column: span 2; }
/* 5 cards: 3 na linha 1, 2 centralizados na linha 2 */
.benefit-card:nth-child(4) { grid-column: 2 / span 2; }
.benefit-card:nth-child(5) { grid-column: 4 / span 2; }

.benefit-card {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: var(--gray-mid);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.benefit-card__icon svg { width: 100%; height: 100%; }

.benefit-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   SERVIÇOS
   ============================================= */
.services {
  background: var(--green-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.services__bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,.03) 39px,
      rgba(255,255,255,.03) 40px
    );
  pointer-events: none;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
  position: relative;
}

.service-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  color: var(--white);
}

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.13);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--green-light);
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  background: rgba(139,195,74,.2);
  color: var(--green-light);
  border: 1px solid rgba(139,195,74,.3);
}

.service-card__badge--premium {
  background: rgba(245,124,0,.2);
  color: #FFB74D;
  border-color: rgba(245,124,0,.3);
}

.service-card__badge--luxury {
  background: rgba(255,215,0,.15);
  color: #FFD54F;
  border-color: rgba(255,215,0,.25);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

.services__cta {
  text-align: center;
  position: relative;
}

.services__cta p {
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* =============================================
   ÁREA DE ATENDIMENTO
   ============================================= */
.coverage {
  background: var(--gray-light);
  padding: 96px 0;
}

.coverage__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.coverage__hub {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.coverage__hub-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
}

.coverage__hub strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.coverage__hub span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.coverage__hub em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--green-light);
  font-weight: 600;
}

.coverage__cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1px solid var(--gray-mid);
  transition: transform var(--transition), box-shadow var(--transition);
}

.city-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.city-item__state {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.city-item__state.ms {
  background: rgba(45,107,63,.1);
  color: var(--green-dark);
}

.city-item__state.go {
  background: rgba(245,124,0,.1);
  color: var(--orange);
}

.city-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 700;
}

.city-item small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.coverage__note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.coverage__note svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: var(--white);
  padding: 96px 0;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq__item:has(.faq__question[aria-expanded="true"]) {
  box-shadow: var(--shadow-sm);
  border-color: rgba(45,107,63,.25);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}

.faq__question:hover { color: var(--green-dark); }

.faq__question[aria-expanded="true"] { color: var(--green-dark); }

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green-dark);
  transition: transform var(--transition);
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 24px 22px;
}

.faq__answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  background: var(--green-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(139,195,74,.12) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 29px,
      rgba(255,255,255,.02) 29px,
      rgba(255,255,255,.02) 30px
    );
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  display: flex;
  justify-content: center;
}

.cta-final__content {
  text-align: center;
  max-width: 920px;
}

.cta-final__eyebrow {
  display: inline-block;
  background: rgba(139,195,74,.25);
  color: var(--green-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.cta-final__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__title span {
  display: inline-block;
}

.cta-final__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  margin: 0 auto 40px;
  line-height: 1.65;
  max-width: 620px;
}

.cta-final__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-final__trust {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 32px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer__brand .logo--light .logo__top  { color: var(--white); }
.footer__brand .logo--light .logo__bottom { color: rgba(255,255,255,.5); }

.footer__slogan {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin: 16px 0 8px;
  text-transform: uppercase;
}

.footer__tagline {
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
  padding: 6px 0;
  transition: color var(--transition);
  font-weight: 500;
}

.footer__link:hover { color: var(--white); }

.phone-num { white-space: nowrap; }
.footer__link-text { display: inline-block; }

.footer__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

.footer__hours p {
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.footer__hours strong {
  color: var(--white);
  font-weight: 700;
}

.footer__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
  margin-top: 12px;
}

.footer__location svg { width: 16px; height: 16px; opacity: 0.6; }

.footer__nav { display: flex; flex-direction: column; }
.footer__nav .footer__link { font-size: 0.875rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,.35);
}

/* =============================================
   WHATSAPP FLUTUANTE
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  padding: 14px 22px 14px 16px;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37,211,102,.5);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.whatsapp-float__label {
  white-space: nowrap;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  background: rgba(37,211,102,.4);
  animation: pulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: .7; }
  80%  { transform: scale(1.18); opacity: 0; }
  100% { opacity: 0; }
}

/* =============================================
   COUNTER ANIMATION
   ============================================= */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVO
   ============================================= */

/* Large desktop */
@media (max-width: 1100px) {
  /* 2 cols em tablet largo: 4 cards 2x2 + 5º card centralizado linha 3 */
  .benefits__grid { grid-template-columns: repeat(4, 1fr); }
  .benefit-card { grid-column: span 2; }
  .benefit-card:nth-child(4) { grid-column: span 2; }
  .benefit-card:nth-child(5) { grid-column: 2 / span 2; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Tablet */
@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .hamburger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding-bottom: 0;
  }

  .hero__badge { display: inline-flex; }
  .hero__sub { margin: 0 auto 16px; }
  .hero__tagline { text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__note { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__img-wrap { max-width: 460px; margin: 0 auto; }
  .hero__stats { max-width: 460px; margin: 20px auto 0; }

  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card,
  .benefit-card:nth-child(4),
  .benefit-card:nth-child(5) { grid-column: span 1; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .coverage__grid { grid-template-columns: 1fr; }
  .coverage__hub { flex-direction: row; flex-wrap: wrap; justify-content: center; padding: 24px; }

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

/* Mobile */
@media (max-width: 600px) {
  .container { padding: 0 16px; }

  .hero { padding: 60px 0 0; }
  .hero__headline { font-size: 1.9rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__stats { grid-template-columns: 1fr; gap: 10px; }
  .stat { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 16px; }
  .stat strong { font-size: 1.3rem; }
  .stat span { font-size: 0.78rem; line-height: 1.3; text-align: left; }

  .benefits { padding: 64px 0; }
  .benefits__grid { grid-template-columns: 1fr; gap: 16px; }
  .benefit-card,
  .benefit-card:nth-child(4),
  .benefit-card:nth-child(5) {
    grid-column: 1 / -1;
    text-align: center;
    display: block;
    padding: 28px 22px;
  }
  .benefit-card__icon { margin: 0 auto 14px; width: 48px; height: 48px; }

  .services { padding: 64px 0; }
  .services__grid { grid-template-columns: 1fr; }

  .coverage { padding: 64px 0; }
  .coverage__cities { grid-template-columns: 1fr; }

  .faq { padding: 64px 0; }
  .faq__question { font-size: 0.9rem; padding: 18px 18px; }
  .faq__answer { padding: 0 18px 18px; }

  .cta-final { padding: 64px 0; }
  .cta-final__actions { flex-direction: column; align-items: stretch; }
  .cta-final__actions .btn { justify-content: center; }
  .cta-final__trust { grid-template-columns: 1fr; gap: 12px; justify-items: center; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 16px 32px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .whatsapp-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
  .whatsapp-float__label { display: none; }
  .whatsapp-float svg { width: 28px; height: 28px; }

  .section-header { margin-bottom: 40px; }
}

/* Tiny mobile */
@media (max-width: 380px) {
  .hero__headline { font-size: 1.65rem; }
  .cta-final__title { font-size: 1.6rem; }
}
