/* ============================================================
   Atendrix — landing v7 (redesign jul/2026)
   Identidade: esmeralda profundo + tipografia display Bricolage
   ============================================================ */

:root {
  --ink: #0b1220;
  --ink-soft: #46556b;
  --ink-mute: #6b7a90;
  --paper: #f7f9f8;
  --card: #ffffff;
  --line: #e5eae7;

  --green: #10b981;
  --green-deep: #059669;
  --green-dark: #047857;
  --lime: #a3e635;
  --teal: #2dd4bf;

  --hero-bg: #04140e;
  --hero-bg-2: #072b1e;
  --hero-ink: #eaf6f0;
  --hero-mute: #9db8ab;

  --meta-blue: #1877f2;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(6, 24, 16, 0.06), 0 1px 6px rgba(6, 24, 16, 0.04);
  --shadow-md: 0 6px 24px rgba(6, 24, 16, 0.08);
  --shadow-lg: 0 24px 60px -18px rgba(6, 24, 16, 0.22);

  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1160px, 92%); margin: 0 auto; }
.container--narrow { width: min(780px, 92%); }

/* Revelação ao rolar */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 0; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  padding: 12px 22px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  will-change: transform;
}
.btn:active { transform: scale(.97); }
.btn--lg { padding: 16px 30px; font-size: 16.5px; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, #12c98b, var(--green-deep));
  color: #fff;
  box-shadow: 0 2px 10px rgba(16, 185, 129, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(16, 185, 129, .42); }
.btn--glow { box-shadow: 0 4px 18px rgba(16, 185, 129, .5), 0 0 60px rgba(45, 212, 191, .25); }
.btn--glow:hover { box-shadow: 0 12px 34px rgba(16, 185, 129, .55), 0 0 80px rgba(45, 212, 191, .3); }

.btn--ghost { background: transparent; color: inherit; font-weight: 600; }
.btn--ghost:hover { color: var(--green-deep); }

.btn--outline {
  background: transparent; color: var(--green-dark);
  border: 1.6px solid #b7e3d2;
}
.btn--outline:hover { border-color: var(--green); background: #ecfdf5; transform: translateY(-2px); }

.btn--outline-light {
  background: rgba(255, 255, 255, .05); color: var(--hero-ink);
  border: 1.4px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, .11); border-color: rgba(255, 255, 255, .32); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--green-dark); box-shadow: 0 4px 20px rgba(0, 0, 0, .18); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 0, 0, .24); }

/* ============ NAV ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding: 14px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  color: var(--hero-ink);
}
.nav.is-scrolled {
  background: rgba(4, 20, 14, .82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .07), 0 8px 30px rgba(0, 0, 0, .25);
  padding: 10px 0;
}
.nav__inner { display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { width: 36px; height: 36px; object-fit: contain; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 21px; letter-spacing: -0.02em;
}
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { font-size: 14.5px; font-weight: 600; opacity: .82; transition: opacity .15s; }
.nav__links a:hover { opacity: 1; }
.nav__login-mobile { display: none; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__actions .btn--ghost { color: var(--hero-ink); }
.nav__actions .btn--ghost:hover { color: var(--lime); }
.nav__burger { display: none; background: none; border: 0; color: var(--hero-ink); padding: 6px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(16, 185, 129, .16), transparent 60%),
    linear-gradient(165deg, var(--hero-bg) 0%, var(--hero-bg-2) 58%, #04321f 100%);
  color: var(--hero-ink);
  padding: 148px 0 110px;
  overflow: hidden;
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero__glow--1 { width: 560px; height: 560px; left: -180px; top: -120px; background: rgba(16, 185, 129, .17); }
.hero__glow--2 { width: 480px; height: 480px; right: -140px; bottom: -180px; background: rgba(45, 212, 191, .12); }
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 30%, transparent 75%);
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(16, 185, 129, .12);
  border: 1px solid rgba(16, 185, 129, .35);
  color: #7ff0c8;
  border-radius: 999px; padding: 7px 16px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .01em;
  margin-bottom: 26px;
}
.pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(163, 230, 53, .6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(163, 230, 53, .55); }
  70% { box-shadow: 0 0 0 9px rgba(163, 230, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(163, 230, 53, 0); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.grad {
  background: linear-gradient(92deg, #34d399 5%, var(--teal) 48%, var(--lime) 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { font-size: 18px; color: var(--hero-mute); max-width: 54ch; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hero__note { font-size: 13.5px; color: var(--hero-mute); margin-bottom: 26px; }
.meta-badge {
  display: inline-flex; align-items: flex-start; gap: 11px;
  background: rgba(24, 119, 242, .1);
  border: 1px solid rgba(96, 165, 250, .28);
  border-radius: 14px; padding: 12px 16px;
  font-size: 13.5px; color: #c9dcf5; max-width: 480px;
}
.meta-badge strong { color: #fff; }
.meta-badge__check {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--meta-blue); color: #fff;
  display: grid; place-items: center; font-size: 12px; font-weight: 800; margin-top: 1px;
}

/* Mockup do chat */
.hero__art { position: relative; display: flex; justify-content: center; }
.phone {
  width: min(370px, 100%);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 30px;
  padding: 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .1);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-.4deg); }
  50% { transform: translateY(-12px) rotate(.4deg); }
}
.phone__top {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.phone__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 17px;
}
.phone__top strong { display: block; font-size: 15px; }
.phone__top small { color: var(--hero-mute); font-size: 12px; display: inline-flex; align-items: center; gap: 5px; }
.phone__online { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); display: inline-block; }
.phone__chat { padding: 16px 8px 8px; display: flex; flex-direction: column; gap: 10px; }
.bubble {
  max-width: 84%;
  padding: 10px 14px; border-radius: 16px;
  font-size: 13.8px; line-height: 1.45;
  opacity: 0; transform: translateY(10px) scale(.97);
  animation: bubbleIn .5s cubic-bezier(.2,.9,.3,1.2) forwards;
}
.bubble:nth-child(1) { animation-delay: .5s; }
.bubble:nth-child(2) { animation-delay: 1.2s; }
.bubble:nth-child(3) { animation-delay: 1.9s; }
.bubble:nth-child(4) { animation-delay: 2.6s; }
.bubble:nth-child(5) { animation-delay: 3.3s; }
@keyframes bubbleIn { to { opacity: 1; transform: none; } }
.bubble--in { align-self: flex-start; background: rgba(255, 255, 255, .12); color: #f0faf5; border-bottom-left-radius: 5px; }
.bubble--out { align-self: flex-end; background: #0d5c40; color: #dcfce9; border-bottom-right-radius: 5px; }
.bubble--ai {
  background: rgba(163, 230, 53, .13); color: #d5f39b;
  border: 1px dashed rgba(163, 230, 53, .4);
  font-size: 12.2px;
}
.hero__badge {
  position: absolute;
  background: rgba(9, 32, 23, .88);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #eafff5;
  border-radius: 12px; padding: 9px 14px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .4);
  backdrop-filter: blur(8px);
}
.hero__badge--1 { top: 6%; left: -5%; animation: floaty 6s ease-in-out infinite .8s; }
.hero__badge--2 { bottom: -3%; right: 2%; animation: floaty 6.6s ease-in-out infinite .3s; }

/* ============ TIRINHA ============ */
.strip { background: var(--hero-bg); color: var(--hero-ink); border-top: 1px solid rgba(255,255,255,.06); }
.strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 30px 0;
}
.strip__item { text-align: center; padding: 6px 12px; }
.strip__item + .strip__item { border-left: 1px solid rgba(255, 255, 255, .09); }
.strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(92deg, #34d399, var(--lime));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.strip span { font-size: 13.5px; color: var(--hero-mute); }

/* ============ SEÇÕES ============ */
.section { padding: 96px 0; }
.section--alt { background: #eef4f0; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-deep);
  background: #d9f5e8;
  padding: 5px 14px; border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow--blue { color: var(--meta-blue); background: #e3edfd; }
.section__head h2, .meta-feature h2, .cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.12;
  margin-bottom: 14px;
  text-wrap: balance;
}
.section__head p { color: var(--ink-mute); font-size: 16.5px; }

/* ============ RECURSOS ============ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #bfe9d8;
}
.feature__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-size: 25px;
  border-radius: 15px;
  background: linear-gradient(135deg, #e6fbf2, #d2f5e6);
  border: 1px solid #c1ecdb;
  margin-bottom: 18px;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 18.5px; font-weight: 700; letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.feature p { color: var(--ink-mute); font-size: 14.5px; }

/* ============ COMO FUNCIONA ============ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  counter-reset: step;
  position: relative;
}
.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step__num {
  position: absolute; top: -18px; left: 24px;
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 17px; color: #fff;
  background: linear-gradient(135deg, #12c98b, var(--green-dark));
  box-shadow: 0 6px 16px rgba(16, 185, 129, .4);
}
.step h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 6px 0 8px; letter-spacing: -0.015em; }
.step p { color: var(--ink-mute); font-size: 14.5px; }

/* ============ META / API OFICIAL ============ */
.meta-feature {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center;
}
.meta-blue { color: var(--meta-blue); }
.meta-feature__lead { color: var(--ink-soft); font-size: 16.5px; margin: 6px 0 20px; }
.meta-feature__list { list-style: none; margin: 0 0 28px; display: grid; gap: 12px; }
.meta-feature__list li {
  position: relative; padding-left: 30px;
  color: var(--ink-soft); font-size: 15px;
}
.meta-feature__list li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 21px; height: 21px; border-radius: 50%;
  background: #d9f5e8; color: var(--green-dark);
  display: grid; place-items: center;
  font-size: 12.5px; font-weight: 800;
}
.meta-feature__card { display: flex; justify-content: center; }
.meta-card {
  width: min(340px, 100%);
  text-align: center;
  background: linear-gradient(170deg, #0b1e3d, #0f2f66);
  color: #e7effc;
  border: 1px solid rgba(96, 165, 250, .3);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 30px 70px -20px rgba(15, 47, 102, .55);
  position: relative;
  overflow: hidden;
}
.meta-card::before {
  content: "";
  position: absolute; inset: -40% 0 auto;
  height: 70%;
  background: radial-gradient(circle at 50% 0%, rgba(96, 165, 250, .25), transparent 65%);
  pointer-events: none;
}
.meta-card__seal { font-size: 44px; margin-bottom: 12px; }
.meta-card__title { font-family: var(--font-display); display: block; font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.meta-card__org { color: #9db9e8; font-size: 13px; }
.meta-card__line { height: 1px; background: rgba(255, 255, 255, .14); margin: 22px 0; }
.meta-card__checks { list-style: none; display: grid; gap: 10px; text-align: left; }
.meta-card__checks li { position: relative; padding-left: 26px; font-size: 14px; }
.meta-card__checks li::before {
  content: "✓";
  position: absolute; left: 0;
  color: #60a5fa; font-weight: 800;
}

/* ============ PREÇOS ============ */
.incluso {
  max-width: 920px; margin: 0 auto 34px;
  background: var(--card);
  border: 1.5px solid #a7e6cd;
  border-radius: 20px;
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
}
.incluso__title { font-family: var(--font-display); font-weight: 800; font-size: 17px; margin-bottom: 4px; }
.incluso__sub { color: var(--ink-mute); font-size: 13px; margin-bottom: 16px; }
.incluso__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 10px 22px; }
.incluso__item { display: flex; gap: 9px; font-size: 14px; color: var(--ink-soft); }
.incluso__item > span:first-child { color: var(--green); font-weight: 800; }
.incluso__note {
  margin-top: 18px;
  background: #e7f7ef; color: var(--green-deep);
  border-radius: 12px; padding: 12px 15px;
  font-size: 13.5px; font-weight: 600;
}

.billing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 44px;
}
.billing-toggle__label { font-weight: 700; font-size: 15px; color: var(--ink-mute); transition: color .2s; }
.billing-toggle__label.is-active { color: var(--ink); }
.billing-toggle__label em {
  font-style: normal; font-size: 11.5px; font-weight: 800;
  color: var(--green-dark); background: #d9f5e8;
  padding: 3px 9px; border-radius: 999px; margin-left: 6px;
  white-space: nowrap;
}
.switch {
  width: 56px; height: 30px; border-radius: 999px; border: 0;
  background: #cfe0d7; position: relative;
  transition: background .25s;
}
.switch span {
  position: absolute; top: 3px; left: 3px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
  transition: transform .25s cubic-bezier(.2,.9,.3,1.3);
}
.switch.is-yearly { background: var(--green); }
.switch.is-yearly span { transform: translateX(26px); }

.plans {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan--featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(150deg, #12c98b, var(--teal), var(--lime)) border-box;
  box-shadow: 0 18px 50px -14px rgba(16, 185, 129, .35);
  transform: scale(1.03);
}
.plan--featured:hover { transform: scale(1.03) translateY(-6px); }
.plan__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(92deg, #12c98b, var(--green-dark));
  color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
  padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(16, 185, 129, .4);
  white-space: nowrap;
}
.plan h3 { font-family: var(--font-display); font-size: 21px; font-weight: 800; letter-spacing: -0.015em; }
.plan__desc { color: var(--ink-mute); font-size: 13.5px; margin: 6px 0 20px; min-height: 40px; }
.plan__price { display: flex; align-items: baseline; gap: 4px; }
.plan__currency { font-weight: 700; font-size: 17px; color: var(--ink-soft); }
.plan__amount {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
}
.plan__period { color: var(--ink-mute); font-size: 15px; }
.plan__yearly { color: var(--green-deep); font-size: 12.5px; font-weight: 600; margin: 6px 0 20px; visibility: hidden; }
.plan .btn--block { margin-bottom: 10px; }
.plan__subscribe {
  display: block; text-align: center;
  color: var(--green-dark); font-weight: 700; font-size: 14px;
  margin-bottom: 22px;
  transition: color .15s;
}
.plan__subscribe:hover { color: var(--green); }
.plan__list { list-style: none; display: grid; gap: 11px; border-top: 1px solid var(--line); padding-top: 20px; margin-top: auto; }
.plan__list li { position: relative; padding-left: 27px; font-size: 14.5px; color: var(--ink-soft); }
.plan__list li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 19px; height: 19px; border-radius: 50%;
  background: #d9f5e8; color: var(--green-dark);
  display: grid; place-items: center;
  font-size: 11.5px; font-weight: 800;
}
.plans__foot { text-align: center; color: var(--ink-mute); font-size: 13px; margin-top: 26px; }

/* ============ FAQ ============ */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 0 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.faq__item[open] { border-color: #a7e6cd; }
.faq__item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 0;
  font-weight: 700; font-size: 15.5px;
  cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex: none;
  width: 27px; height: 27px; border-radius: 50%;
  display: grid; place-items: center;
  background: #eef6f1; color: var(--green-dark);
  font-size: 18px; font-weight: 600;
  transition: transform .25s ease, background .2s, color .2s;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
  background: var(--green); color: #fff;
}
.faq__item p { color: var(--ink-mute); font-size: 14.5px; padding: 0 0 20px; max-width: 62ch; }

/* ============ CTA FINAL ============ */
.cta-final {
  position: relative;
  background:
    radial-gradient(700px 340px at 50% -20%, rgba(163, 230, 53, .15), transparent 65%),
    linear-gradient(160deg, #064635, #03281c);
  color: #fff;
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}
.cta-final__glow {
  position: absolute; left: 50%; bottom: -240px; transform: translateX(-50%);
  width: 700px; height: 420px; border-radius: 50%;
  background: rgba(16, 185, 129, .22);
  filter: blur(100px);
  pointer-events: none;
}
.cta-final__inner { position: relative; }
.cta-final p { color: #a9cfbd; font-size: 17px; margin: 8px 0 30px; }

/* ============ FOOTER ============ */
.footer { background: #03130c; color: #b3c9bd; padding: 56px 0 0; }
.footer__inner {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.brand--footer .brand__name { color: #fff; }
.footer__tag { margin-top: 12px; font-size: 14px; }
.footer__meta { margin-top: 8px; font-size: 12.5px; color: #6f8a7c; }
.footer__links { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.footer__links a { font-size: 14px; font-weight: 600; opacity: .8; transition: opacity .15s, color .15s; }
.footer__links a:hover { opacity: 1; color: #7ff0c8; }
.footer__bottom { padding: 20px 0 26px; font-size: 12.5px; color: #6f8a7c; }

/* ============ MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 18px; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(3, 19, 12, .62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__box {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  background: #fff;
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .5);
  animation: modalIn .3s cubic-bezier(.2,.9,.3,1.15);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.97); } }
.modal__close {
  position: absolute; top: 14px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 0; background: #f1f5f2; color: #667;
  font-size: 20px; line-height: 1;
  transition: background .15s;
}
.modal__close:hover { background: #e4ebe6; }
.modal__head h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.015em; }
.modal__head p { color: var(--ink-mute); font-size: 14px; margin: 4px 0 20px; }
.modal__form { display: grid; gap: 14px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 5px; color: var(--ink-soft); }
.field input {
  width: 100%;
  border: 1.5px solid #dbe4de;
  border-radius: 11px;
  padding: 11px 13px;
  font-size: 14.5px; font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .14);
}
.modal__error {
  background: #fef2f2; color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 10px; padding: 10px 13px;
  font-size: 13.5px;
}
.modal__foot { text-align: center; font-size: 13.5px; color: var(--ink-mute); }
.modal__foot a { color: var(--green-dark); font-weight: 700; }

/* ============ WHATSAPP FLUTUANTE ============ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(37, 211, 102, .55); }
.wa-float svg { width: 30px; height: 30px; }

/* ============ RESPONSIVO ============ */
@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__copy { text-align: center; }
  .hero__cta { justify-content: center; }
  .meta-badge { text-align: left; }
  .hero__badge--1 { left: 2%; }
  .hero__badge--2 { right: 2%; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .meta-feature { grid-template-columns: 1fr; gap: 44px; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
}
@media (max-width: 720px) {
  .nav__links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(4, 20, 14, .97);
    backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 26px; font-size: 15.5px; }
  .nav__login-mobile { display: block; border-top: 1px solid rgba(255,255,255,.08); }
  .nav__actions { display: none; }
  .nav__burger { display: block; margin-left: auto; }
  .hero { padding: 120px 0 80px; }
  .section { padding: 68px 0; }
  .features { grid-template-columns: 1fr; }
  .strip__inner { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .strip__item:nth-child(3) { border-left: 0; }
  .hero__badge { display: none; }
  .incluso { padding: 22px 20px; }
  .footer__inner { flex-direction: column; gap: 26px; }
}
