/* ============================================
   CLIQUE LOCAL — cliquelocal.com.br
   Paleta: Azul escuro + Laranja + Branco
   ============================================ */

/* ---- TOKENS ---- */
:root {
  /* Azul */
  --blue-dark:    #0d2240;
  --blue:         #1a3c8f;
  --blue-mid:     #2352b8;
  --blue-light:   #4a7fd4;
  --blue-pale:    #e8eef8;
  --blue-xpale:   #f2f6fc;

  /* Laranja (energia, CTA, destaque) */
  --orange:       #f05a1a;
  --orange-dark:  #c94610;
  --orange-light: #f47d4a;
  --orange-pale:  #fef0ea;

  /* Neutros */
  --white:        #ffffff;
  --cream:        #f8f9fb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-300:     #d1d5db;
  --gray-400:     #9ca3af;
  --gray-500:     #6b7280;
  --gray-600:     #4b5563;
  --gray-700:     #374151;
  --gray-800:     #1f2937;
  --text:         #0d1b2a;
  --text-muted:   #4b5c6b;

  /* WhatsApp */
  --wpp:          #25d366;
  --wpp-dark:     #128c7e;

  /* Tipografia */
  --font-head:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Espaçamento */
  --radius:       10px;
  --radius-lg:    18px;
  --radius-xl:    26px;

  /* Sombras */
  --shadow-xs:    0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:    0 2px 10px rgba(0,0,0,.08);
  --shadow:       0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.14);
  --shadow-xl:    0 20px 60px rgba(0,0,0,.16);

  /* Transições */
  --ease:         .25s ease;
  --ease-out:     .3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- UTILITÁRIOS ---- */
.container {
  width: min(1160px, 100% - 40px);
  margin-inline: auto;
}
.section { padding: 88px 0; }
.section--alt { background: var(--cream); }
.section--dark { background: var(--blue-dark); color: var(--white); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-top: 12px;
  letter-spacing: -.02em;
}
.section--dark .section__title { color: var(--white); }
.section__title em {
  color: var(--orange);
  font-style: normal;
}
.section__desc {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section--dark .section__desc { color: rgba(255,255,255,.7); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(240,90,26,.15);
}
.section--dark .eyebrow {
  background: rgba(240,90,26,.15);
  border-color: rgba(240,90,26,.3);
}

/* ---- BOTÕES ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(240,90,26,.35);
}
.btn--orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 28px rgba(240,90,26,.45);
}

.btn--wpp {
  background: var(--wpp);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn--wpp:hover {
  background: var(--wpp-dark);
  box-shadow: 0 6px 28px rgba(37,211,102,.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue-pale);
}
.btn--ghost:hover {
  background: var(--blue-pale);
}

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,34,64,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.3); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__mark {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  font-family: var(--font-head);
  letter-spacing: -.03em;
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -.02em;
}
.logo__sub {
  font-size: .65rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  padding: 7px 14px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color var(--ease), background var(--ease);
}
.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav__link--cta {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 600;
  padding: 8px 20px;
  box-shadow: 0 2px 12px rgba(240,90,26,.3);
}
.nav__link--cta:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 18px rgba(240,90,26,.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--blue-dark);
  padding: 150px 0 100px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(26,60,143,.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(240,90,26,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,90,26,.15);
  border: 1px solid rgba(240,90,26,.3);
  color: #ffb38a;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero__title span { color: var(--orange); }

.hero__subtitle {
  font-size: 1.12rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat span {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__mockup {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 420px;
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.mockup__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup__dot:nth-child(1) { background: #ff5f56; }
.mockup__dot:nth-child(2) { background: #ffbd2e; }
.mockup__dot:nth-child(3) { background: #27c93f; }
.mockup__url {
  flex: 1;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

.mockup__result {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.result-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 14px 16px;
  transition: background var(--ease);
}
.result-item--top {
  background: rgba(240,90,26,.12);
  border-color: rgba(240,90,26,.25);
}
.result-item__pos {
  font-size: .7rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.result-item--top .result-item__pos { color: #ffb38a; }
.result-item__title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.result-item__url {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
}
.result-item__desc {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  line-height: 1.4;
}

.hero__floating {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__floating--leads {
  bottom: -20px;
  left: -30px;
}
.hero__floating--rank {
  top: -20px;
  right: -20px;
}
.floating__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.floating__icon--green { background: #dcfce7; }
.floating__icon--blue { background: var(--blue-pale); }
.floating__text strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.floating__text span {
  font-size: .7rem;
  color: var(--gray-500);
}

/* ---- HOW IT WORKS ---- */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.step {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
}
.step__num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--blue-pale);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.04em;
}
.step__icon {
  width: 52px; height: 52px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.step__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.step__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step__arrow {
  position: absolute;
  top: 50%; right: -18px;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: .9rem;
  z-index: 2;
}
.step:last-child .step__arrow { display: none; }

/* ---- DIFERENCIAIS ---- */
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.diferencial {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  transition: background var(--ease), border-color var(--ease);
}
.diferencial:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(240,90,26,.3);
}
.diferencial__icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: rgba(240,90,26,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.diferencial__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.diferencial__desc {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

/* ---- NICHOS ---- */
.nichos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.nicho {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.nicho:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(240,90,26,.12);
  transform: translateY(-2px);
}
.nicho__icon {
  font-size: 1.4rem;
  line-height: 1;
}
.nicho__name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
}
.nicho--high .nicho__name::after {
  content: " ↑";
  color: var(--orange);
  font-size: .78rem;
}

/* ---- RESULTADOS ---- */
.resultados__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.resultado-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}
.resultado-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.resultado-card__number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -.04em;
}
.resultado-card__number span { color: var(--orange); }
.resultado-card__label {
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ---- PLANOS ---- */
.planos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plano {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.plano:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.plano--featured {
  border-color: var(--orange);
  box-shadow: 0 8px 40px rgba(240,90,26,.15);
  position: relative;
}
.plano__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plano__name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.plano__price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.04em;
}
.plano__price sup {
  font-size: 1.2rem;
  font-weight: 700;
  vertical-align: super;
}
.plano__price small {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.plano__desc {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 12px 0 24px;
  line-height: 1.5;
}
.plano__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plano__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
  line-height: 1.4;
}
.plano__feature::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- FAQ ---- */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq__item.open { border-color: var(--blue-light); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: .96rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--ease);
}
.faq__item.open .faq__question { color: var(--blue); }
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: var(--gray-500);
  transition: background var(--ease), transform var(--ease), color var(--ease);
}
.faq__item.open .faq__icon {
  background: var(--blue-pale);
  color: var(--blue);
  transform: rotate(45deg);
}
.faq__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq__item.open .faq__answer { display: block; }

/* ---- CTA FINAL ---- */
.cta-final {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(240,90,26,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.cta-final__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.cta-final__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.footer {
  background: #080f1a;
  color: rgba(255,255,255,.55);
  padding: 48px 0 32px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: .82rem;
  line-height: 1.6;
}
.footer__links {
  display: flex;
  gap: 20px;
}
.footer__link {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  transition: color var(--ease);
}
.footer__link:hover { color: var(--white); }

/* ---- WHATSAPP FLOAT ---- */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 58px; height: 58px;
  background: var(--wpp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.wpp-float svg { width: 28px; height: 28px; fill: white; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nichos__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--blue-dark); border-top: 1px solid rgba(255,255,255,.08); padding: 16px 20px; }
  .nav.open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { display: block; padding: 12px 16px; border-radius: var(--radius); text-align: left; }
  .hamburger { display: flex; }

  .hero { padding: calc(env(safe-area-inset-top,0px) + 110px) 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .hero__stats { gap: 20px; }

  .steps__grid { grid-template-columns: 1fr; gap: 0; }
  .step__arrow { display: none; }

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

  .nichos__grid { grid-template-columns: repeat(2, 1fr); }

  .resultados__grid { grid-template-columns: 1fr; gap: 16px; }

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

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .nichos__grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 16px; }
}
