/* ============================================================
   SEGREDOS DA FLUÊNCIA — Landing de Conversão
   American English mastery · navy editorial · red accents
   Mobile first · Plus Jakarta Sans + Montserrat
   Desenvolvido pela Fregale
   ============================================================ */

/* ---------- 1. RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}
img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
strong,
b {
  font-weight: 700;
}
::selection {
  background: var(--red);
  color: #fff;
}
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- 2. TOKENS ---------- */
:root {
  /* USA core */
  --usa-red: #b40116;
  --usa-blue: #10104b;
  --usa-white: #ffffff;

  /* Reds */
  --red: #b40116;
  --red-bright: #b40116;
  --red-deep: rgb(112, 0, 15);
  --red-glow: rgba(178, 34, 52, 0.4);
  --red-soft: rgba(178, 34, 52, 0.1);

  /* Blues / navy scale */
  --navy: #0d1030;
  --navy-2: #11163c;
  --navy-3: #181d4c;
  --blue: #3c3b6e;
  --blue-2: #4d4c88;
  --blue-lt: #8d8dc4;
  --blue-glow: rgba(60, 59, 110, 0.45);

  /* Neutrals */
  --ink: #111111;
  --ink-2: #1a1a1a;
  --gray-3: #333333;
  --gray-5: #555555;
  --smoke: #f5f5f5;
  --mist: #eaeaea;
  --white: #ffffff;

  /* Theme defaults (light base) */
  --bg: #ffffff;
  --bg-alt: var(--smoke);
  --text: #1c2030;
  --text-mut: #545a72;
  --text-soft: #8b90a6;
  --line: rgba(20, 24, 55, 0.1);
  --line-2: rgba(20, 24, 55, 0.18);
  --card: #ffffff;

  /* Type */
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "Montserrat", sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius / shadow */
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --sh-1: 0 4px 18px rgba(13, 16, 48, 0.06);
  --sh-2: 0 18px 50px rgba(13, 16, 48, 0.12);
  --sh-3: 0 30px 80px rgba(13, 16, 48, 0.2);
  --sh-red: 0 16px 40px var(--red-glow);

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 40px);
}

/* ---------- 3. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section {
  padding-block: clamp(64px, 9vw, 120px);
  position: relative;
}
.section--tight {
  padding-block: clamp(44px, 6vw, 80px);
}

.theme-navy {
  background: var(--navy);
  color: #e8eaf6;
  --text: #e8eaf6;
  --text-mut: #aeb3d6;
  --text-soft: #7c82ad;
  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.2);
  --card: rgba(255, 255, 255, 0.04);
}
.theme-smoke {
  background: var(--smoke);
}

/* ---------- 4. TYPOGRAPHY ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1.1rem;
}
.theme-navy .eyebrow {
  color: #b40116;
}
.eyebrow::before {
  content: "";
  width: 0px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.is-center {
  justify-content: center;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: inherit;
}
.h1 {
  font-size: clamp(2.15rem, 6.5vw, 4.1rem);
  font-weight: 800;
}
.h2 {
  font-size: clamp(1.85rem, 4.6vw, 3.05rem);
}
.h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--text-mut);
  line-height: 1.6;
  font-weight: 400;
}
.sec-head {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.sec-head.is-center {
  margin-inline: auto;
  text-align: center;
}
.mark {
  color: var(--red);
}
.theme-navy .mark {
  color: #ff7283;
}
.u-underline {
  background: linear-gradient(transparent 62%, var(--red-soft) 62%);
}

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 1.05em 1.9em;
  border-radius: 100px;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease),
    background 0.3s var(--ease);
  text-align: center;
  line-height: 1.15;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
}
.btn svg {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--sh-red);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--red-bright), var(--red-deep));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 22px 54px var(--red-glow);
}
.btn--primary:hover::after {
  opacity: 1;
}
.btn--primary:active {
  transform: translateY(-1px) scale(0.99);
}
.btn--ghost {
  background: transparent;
  color: inherit;
  box-shadow: inset 0 0 0 1.5px var(--line-2);
}
.btn--ghost:hover {
  box-shadow: inset 0 0 0 1.5px currentColor;
  transform: translateY(-2px);
}
.btn--lg {
  font-size: 1.12rem;
  padding: 1.2em 2.3em;
}
.btn--block {
  width: 100%;
}
.btn__pulse {
  position: relative;
}
.btn__pulse::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--red-glow);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(178, 34, 52, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(178, 34, 52, 0);
  }
}

/* shimmer on primary */
.btn--primary .shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-18deg);
  animation: shine 4.5s var(--ease) infinite;
  z-index: -1;
}
@keyframes shine {
  0% {
    left: -60%;
  }
  22% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}

/* ---------- 6. PRELOADER ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: grid;
  place-items: center;
  transition:
    opacity 0.6s var(--ease),
    visibility 0.6s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.pl-mark {
  width: 64px;
  height: 64px;
  position: relative;
}
.pl-mark span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid transparent;
  border-top-color: var(--red);
  border-right-color: #fff;
  animation: spin 1s linear infinite;
}
.pl-mark span:nth-child(2) {
  inset: 9px;
  border-top-color: #fff;
  border-right-color: var(--blue-lt);
  animation-duration: 0.8s;
  animation-direction: reverse;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- 7. NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    padding 0.4s var(--ease);
  padding-block: 18px;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo img {
  height: 70px;
  width: auto;
}
.nav__logo .logo-dark {
  display: none;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow:
    0 1px 0 var(--line),
    var(--sh-1);
  padding-block: 11px;
}
.nav.scrolled .logo-light {
  display: none;
}
.nav.scrolled .logo-dark {
  display: block;
}
.nav__links {
  display: none;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-size: 0.94rem;
  font-weight: 600;
  color: #e8eaf6;
  position: relative;
}
.nav.scrolled .nav__links a {
  color: var(--gray-3);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__links a:hover {
  color: var(--red);
}
.nav__cta {
  display: none;
}
.nav__cta .btn {
  padding: 0.7em 1.35em;
  font-size: 0.92rem;
}

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.nav__toggle span {
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition:
    transform 0.35s var(--ease),
    opacity 0.25s;
}
.nav.scrolled .nav__toggle span {
  background: var(--ink);
}
.nav__toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav__mobile {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86%, 380px);
  z-index: 999;
  background: var(--navy-2);
  padding: 96px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}
.nav__mobile.active {
  transform: translateX(0);
}
.nav__mobile a {
  color: #e8eaf6;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav__mobile a:hover {
  color: #ff7283;
  padding-left: 8px;
}
.nav__mobile .btn {
  margin-top: 22px;
}
.nav__scrim {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(8, 10, 30, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.nav__scrim.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- 8. HERO ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: #eef0fb;
  overflow: hidden;
  padding-top: clamp(110px, 16vw, 160px);
  padding-bottom: clamp(60px, 9vw, 110px);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1100px 620px at 78% 8%,
      rgba(60, 59, 110, 0.55),
      transparent 60%
    ),
    radial-gradient(
      800px 600px at 12% 92%,
      rgba(178, 34, 52, 0.3),
      transparent 60%
    ),
    linear-gradient(160deg, #0d1030 0%, #11163c 55%, #0c0f2c 100%);
}
.hero__stars {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(
      1.4px 1.4px at 20% 30%,
      rgba(255, 255, 255, 0.6),
      transparent
    ),
    radial-gradient(
      1.2px 1.2px at 60% 70%,
      rgba(255, 255, 255, 0.45),
      transparent
    ),
    radial-gradient(
      1.6px 1.6px at 80% 20%,
      rgba(255, 255, 255, 0.5),
      transparent
    ),
    radial-gradient(
      1.1px 1.1px at 35% 80%,
      rgba(255, 255, 255, 0.4),
      transparent
    ),
    radial-gradient(
      1.3px 1.3px at 90% 60%,
      rgba(255, 255, 255, 0.35),
      transparent
    ),
    radial-gradient(1px 1px at 8% 60%, rgba(255, 255, 255, 0.4), transparent);
  background-size: 520px 520px;
  animation: drift 60s linear infinite;
}
@keyframes drift {
  to {
    background-position: 520px 520px;
  }
}
.hero__stripes {
  position: absolute;
  right: -5%;
  top: -10%;
  width: 60%;
  height: 120%;
  opacity: 0.06;
  background: repeating-linear-gradient(
    115deg,
    #fff 0 2px,
    transparent 2px 26px
  );
  transform: skewX(-8deg);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__grid {
  display: grid;
  gap: clamp(38px, 6vw, 60px);
  align-items: center;
}

.hero__flag {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c7cbef;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6em 1.05em;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}
.hero__flag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ad17a;
  box-shadow: 0 0 0 4px rgba(58, 209, 122, 0.18);
}

.hero h1 {
  margin-bottom: 1.1rem;
}
.hero h1 .grad {
  background: linear-gradient(100deg, #ff8089, #ffd3d7 55%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(1.05rem, 2.1vw, 1.32rem);
  color: #bcc1e6;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2.2rem;
}
.hero__cta .btn--ghost {
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.28);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 30px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.9rem;
  color: #c7cbef;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: #ff7283;
  flex: none;
}
.hero__avatars {
  display: flex;
  align-items: center;
  gap: 0.85em;
}
.hero__avatars .stack {
  display: flex;
}
.hero__avatars .stack span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  margin-left: -10px;
  background-size: cover;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: #fff;
}
.hero__avatars .stack span:first-child {
  margin-left: 0;
}
.hero__avatars small {
  font-size: 0.84rem;
  color: #c7cbef;
  line-height: 1.3;
  display: block;
}
.hero__avatars b {
  color: #fff;
}
.stars-row {
  color: #ffc83d;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

/* video */
.hero__video {
  position: relative;
}
.video-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    var(--sh-3),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  background: #05060f;
}
.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.video-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.video-ratio > iframe,
.video-ratio > video,
.video-ratio > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 14px;
  background: radial-gradient(circle at 50% 40%, #1a2050, #0b0e28);
  cursor: pointer;
}
.video-fallback .play {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-red);
  transition: transform 0.3s var(--ease);
}
.video-fallback:hover .play {
  transform: scale(1.08);
}
.video-fallback .play svg {
  width: 28px;
  height: 28px;
  color: #fff;
  margin-left: 4px;
}
.video-fallback p {
  color: #cdd2f2;
  font-size: 0.92rem;
  max-width: 240px;
}
.video-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(178, 34, 52, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45em 0.9em;
  border-radius: 100px;
}
.video-tag .rec {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  50% {
    opacity: 0.25;
  }
}

/* ---------- 9. REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal[data-d="1"] {
  transition-delay: 0.08s;
}
.reveal[data-d="2"] {
  transition-delay: 0.16s;
}
.reveal[data-d="3"] {
  transition-delay: 0.24s;
}
.reveal[data-d="4"] {
  transition-delay: 0.32s;
}
.reveal[data-d="5"] {
  transition-delay: 0.4s;
}
.reveal[data-d="6"] {
  transition-delay: 0.48s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  * {
    animation: none !important;
  }
}

/* ---------- 10. PROBLEM ---------- */
.prob-grid {
  display: grid;
  gap: 18px;
}
.prob-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease),
    border-color 0.4s;
}
.prob-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
  border-color: var(--red-soft);
}
.prob-card .x {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--red-soft);
  color: var(--red);
}
.prob-card .x svg {
  width: 22px;
  height: 22px;
}
.prob-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}
.prob-card p {
  color: var(--text-mut);
  font-size: 0.96rem;
}

/* ---------- 11. SOLUTION ---------- */
.sol-grid {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.sol-visual {
  position: relative;
}
.brain-card {
  background: linear-gradient(155deg, var(--navy-3), var(--navy));
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  color: #e8eaf6;
  box-shadow: var(--sh-3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.brain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px 320px at 80% 0%,
    rgba(178, 34, 52, 0.35),
    transparent 60%
  );
}
.brain-card > * {
  position: relative;
}
.brain-card .num {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  background: linear-gradient(120deg, #ff8089, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brain-stat {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.brain-stat > div {
  flex: 1;
  min-width: 120px;
}
.brain-stat small {
  color: #aeb3d6;
  font-size: 0.82rem;
}
.sol-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.sol-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sol-point .ck {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.sol-point .ck svg {
  width: 15px;
  height: 15px;
}

/* ---------- 12. BENEFITS ---------- */
.ben-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.ben-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 26px;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease),
    border-color 0.4s;
}
.ben-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s var(--ease-out);
}
.ben-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-2);
  border-color: transparent;
}
.ben-card:hover::after {
  transform: scaleY(1);
}
.ben-ico {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(140deg, var(--blue), var(--navy-3));
  color: #fff;
  box-shadow: 0 10px 24px var(--blue-glow);
  transition: transform 0.45s var(--ease-out);
}
.ben-card:hover .ben-ico {
  transform: rotate(-6deg) scale(1.06);
}
.ben-ico svg {
  width: 27px;
  height: 27px;
}
.ben-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}
.ben-card p {
  color: var(--text-mut);
  font-size: 0.97rem;
}

/* ---------- 13. TIMELINE / COMO FUNCIONA ---------- */
.steps {
  display: grid;
  gap: 0;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding-bottom: 40px;
  position: relative;
}
.step:last-child {
  padding-bottom: 0;
}
.step__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step__num {
  flex: none;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(145deg, var(--red-bright), var(--red-deep));
  box-shadow: var(--sh-red);
  position: relative;
  z-index: 2;
}
.step__line {
  width: 2px;
  flex: 1;
  margin-top: 6px;
  background: linear-gradient(var(--line-2), transparent);
}
.step:last-child .step__line {
  display: none;
}
.step__body {
  padding-top: 6px;
}
.step__body h3 {
  font-size: 1.22rem;
  margin-bottom: 0.5rem;
}
.step__body p {
  color: var(--text-mut);
}
.step__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(60, 59, 110, 0.1);
  padding: 0.35em 0.8em;
  border-radius: 100px;
  margin-bottom: 0.7rem;
}
.theme-navy .step__tag {
  color: #aeb3ff;
  background: rgba(141, 141, 196, 0.16);
}

/* ---------- 14. STATS BAND ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  text-align: center;
}
.stat .n {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  line-height: 1;
  background: linear-gradient(120deg, #ff8089, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .l {
  color: #c7cbef;
  font-size: 0.92rem;
  margin-top: 0.5rem;
}

/* ---------- 15. TESTIMONIALS ---------- */
.tst {
  position: relative;
}
.tst__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 22px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tst__track::-webkit-scrollbar {
  display: none;
}
.tst-card {
  scroll-snap-align: start;
  flex: 0 0 86%;
  max-width: 380px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 26px;
  box-shadow: var(--sh-1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s;
}
.tst-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
}
.tst-card .quote {
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--text);
}
.tst-card .quote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 2.6rem;
  color: var(--red);
  line-height: 0;
  display: block;
  height: 14px;
}
.tst-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.tst-foot .ava {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  background: linear-gradient(140deg, var(--blue-2), var(--navy-3));
}
.tst-foot b {
  font-size: 0.96rem;
}
.tst-foot small {
  color: var(--text-soft);
  font-size: 0.82rem;
  display: block;
}
.tst-foot .vrf {
  color: #1da851;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-weight: 600;
}
.tst__nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.tst__nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
  color: var(--text);
}
.tst__nav button:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-2px);
}
.tst__nav svg {
  width: 20px;
  height: 20px;
}

/* ---------- 16. PROFESSOR ---------- */
.prof-grid {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
}
.prof-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
  background: linear-gradient(var(--blue), var(--navy));
}
.prof-photo img {
  width: 100%;
  display: block;
}
.prof-photo .badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  backdrop-filter: blur(10px);
  background: rgba(13, 16, 48, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r);
  padding: 14px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
}
.prof-photo .badge .n {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.5rem;
  color: #ff8089;
  line-height: 1;
}
.prof-photo .badge small {
  font-size: 0.82rem;
  color: #cdd2f2;
}
.prof-body .sig {
  font-family: var(--font-mono);
  font-style: italic;
  font-weight: 600;
  color: var(--text-mut);
  margin-top: 18px;
}
.prof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.prof-chips span {
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.5em 1em;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.prof-chips span svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

/* ---------- 17. COMPARISON TABLE ---------- */
/* ---------- 17. COMPARISON TABLE ---------- */

.cmp {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-2);
}

.cmp__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  width: 100%;
}

.cmp__row + .cmp__row {
  border-top: 1px solid var(--line);
}

.cmp__cell {
  min-width: 0;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  text-align: left;
  line-height: 1.45;
  font-size: 0.95rem;
  overflow-wrap: break-word;
  word-break: normal;
}

.cmp__cell.feat {
  font-weight: 700;
  color: var(--text);
  background: #fff;
}

.cmp__head .cmp__cell {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--smoke);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-5);
}

.cmp__head .cmp__cell.us {
  background: var(--navy);
  color: #fff;
}

.cmp__cell.us {
  background: rgba(178, 34, 52, 0.05);
}

.cmp__cell.them {
  background: #fff;
  color: var(--text-soft);
}

.cmp__cell .ic {
  width: 24px;
  height: 24px;
  min-width: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.cmp__cell.us .ic {
  background: var(--red);
  color: #fff;
}

.cmp__cell.them .ic {
  background: var(--mist);
  color: var(--gray-5);
}

.cmp__cell .ic svg {
  width: 14px;
  height: 14px;
}

.cmp__cell.feat .ic {
  display: none;
}

/* ---------- TABLET ---------- */

@media (max-width: 991px) {
  .cmp__row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cmp__cell {
    padding: 16px 14px;
    font-size: 0.9rem;
  }
}

/* ---------- MOBILE ---------- */

@media (max-width: 767px) {
  .cmp {
    border: none;
    box-shadow: none;
    background: transparent;
    overflow: visible;
    display: grid;
    gap: 16px;
  }

  .cmp__head {
    display: none;
  }

  .cmp__row {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--sh-1);
  }

  .cmp__row + .cmp__row {
    border-top: 1px solid var(--line);
  }

  .cmp__cell {
    padding: 15px;
    font-size: 0.92rem;
    text-align: left;
    justify-content: flex-start;
  }

  .cmp__cell.feat {
    background: var(--navy);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .cmp__cell.us,
  .cmp__cell.them {
    flex-wrap: wrap;
  }

  .cmp__cell.us::before {
    content: "Segredos da Fluência";
    width: 100%;
    margin-bottom: 6px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
  }

  .cmp__cell.them::before {
    content: "Escola tradicional";
    width: 100%;
    margin-bottom: 6px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-soft);
  }
}

/* ---------- MOBILE PEQUENO ---------- */

@media (max-width: 480px) {
  .cmp__cell {
    padding: 14px;
    font-size: 0.88rem;
  }

  .cmp__cell.feat {
    font-size: 0.85rem;
  }

  .cmp__cell .ic {
    width: 22px;
    height: 22px;
    min-width: 22px;
    flex: 0 0 22px;
  }
}
/* ---------- 18. BONUS STACK ---------- */
.bonus-grid {
  display: grid;
  gap: 18px;
}
.bonus-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s,
    border-color 0.4s;
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
  border-color: var(--red-soft);
}
.bonus-card .bn {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(140deg, var(--red-bright), var(--red-deep));
}
.bonus-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.3rem;
}
.bonus-card p {
  color: var(--text-mut);
  font-size: 0.93rem;
}
.bonus-card .val {
  text-align: right;
  flex: none;
}
.bonus-card .val s {
  color: var(--text-soft);
  font-size: 0.85rem;
}
.bonus-card .val b {
  display: block;
  color: #1da851;
  font-weight: 800;
  font-family: var(--font-mono);
}
.bonus-total {
  margin-top: 24px;
  text-align: center;
  padding: 26px;
  border-radius: var(--r);
  background: var(--navy);
  color: #fff;
}
.bonus-total .lbl {
  color: #aeb3d6;
  font-size: 0.9rem;
}
.bonus-total .big {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 2.8rem);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  color: #fff;
}

/* ---------- 19. PRICING ---------- */
.price-wrap {
  display: grid;
  gap: 26px;
  max-width: 560px;
  margin-inline: auto;
}
.price-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.price-card__top {
  background: linear-gradient(150deg, var(--navy-3), var(--navy));
  color: #fff;
  padding: 30px 30px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price-card__top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px 200px at 50% 0%,
    rgba(178, 34, 52, 0.4),
    transparent 65%
  );
}
.price-card__top > * {
  position: relative;
}
.price-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 0.5em 1.1em;
  border-radius: 100px;
  margin-bottom: 16px;
}
.price-card .anchor {
  color: #aeb3d6;
  font-size: 1rem;
}
.price-card .anchor s {
  text-decoration-color: var(--red);
}
.price-card .x12 {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: #cdd2f2;
  margin-top: 10px;
}
.price-card .amount {
  font-family: var(--font-mono);
  font-weight: 800;
  line-height: 1;
  margin: 0.1em 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}
.price-card .amount .cur {
  font-size: 1.5rem;
  margin-top: 0.7rem;
}
.price-card .amount .int {
  font-size: clamp(3.4rem, 12vw, 4.6rem);
}
.price-card .amount .cents {
  font-size: 1.8rem;
  margin-top: 0.5rem;
}
.price-card .avista {
  color: #aeb3d6;
  font-size: 0.95rem;
  margin-top: 6px;
}
.price-card__body {
  padding: 28px 30px 32px;
  color: var(--gray-3);
}
.price-list {
  display: grid;
  gap: 13px;
  margin-bottom: 24px;
}
.price-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--ink-2);
}
.price-list .ck {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(29, 168, 81, 0.12);
  color: #1da851;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.price-list .ck svg {
  width: 14px;
  height: 14px;
}
.price-secure {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
  color: var(--gray-5);
  font-size: 0.82rem;
}
.price-secure span {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.price-secure svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

/* guarantee seal */
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  background: var(--card);
  border: 1px dashed var(--line-2);
  border-radius: var(--r);
  padding: 26px;
}
.seal {
  width: 96px;
  height: 96px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(
    circle at 50% 35%,
    var(--red-bright),
    var(--red-deep)
  );
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--sh-red);
  border: 3px solid rgba(255, 255, 255, 0.3);
}
.seal .d {
  font-size: 1.9rem;
}
.seal .t {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  margin-top: 3px;
}
.guarantee h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.guarantee p {
  color: var(--text-mut);
  font-size: 0.95rem;
}

/* assurance trio */
.assure {
  display: grid;
  gap: 18px;
}
.assure-card {
  text-align: center;
  padding: 26px 22px;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--line);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s;
}
.assure-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
}
.assure-card .ic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: rgba(60, 59, 110, 0.1);
  color: var(--blue);
}
.assure-card .ic svg {
  width: 28px;
  height: 28px;
}
.theme-navy .assure-card .ic {
  background: rgba(255, 255, 255, 0.07);
  color: #aeb3ff;
}
.assure-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}
.assure-card p {
  color: var(--text-mut);
  font-size: 0.92rem;
}

/* ---------- 20. FAQ ---------- */
.faq {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.faq-item.active {
  border-color: var(--red-soft);
  box-shadow: var(--sh-1);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-q .ic {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red-soft);
  color: var(--red);
  transition:
    transform 0.4s var(--ease),
    background 0.3s;
}
.faq-item.active .faq-q .ic {
  transform: rotate(135deg);
  background: var(--red);
  color: #fff;
}
.faq-q .ic svg {
  width: 16px;
  height: 16px;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a__inner {
  padding: 0 22px 22px;
  color: var(--text-mut);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ---------- 21. FINAL CTA ---------- */
.final {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding-block: clamp(70px, 10vw, 130px);
}
.final__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px 400px at 50% 0%,
      rgba(178, 34, 52, 0.35),
      transparent 65%
    ),
    radial-gradient(
      600px 500px at 80% 100%,
      rgba(60, 59, 110, 0.6),
      transparent 60%
    );
}
.final .container {
  position: relative;
  max-width: 800px;
}
.final .gift {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.7em 1.3em;
  border-radius: 100px;
  font-size: 0.9rem;
  color: #ffd3d7;
  margin-bottom: 1.6rem;
}
.final h2 .grad {
  background: linear-gradient(100deg, #ff8089, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final p {
  color: #bcc1e6;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  margin: 1.1rem auto 2.2rem;
  max-width: 600px;
}
.urgency {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: #ffb3ba;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.urgency svg {
  width: 18px;
  height: 18px;
}

/* ---------- 22. FOOTER ---------- */
.footer {
  background: #070914;
  color: #9aa0c4;
  padding-top: clamp(56px, 7vw, 84px);
}
.footer__top {
  display: grid;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer__brand img {
  height: 80px;
  margin-bottom: 18px;
}
.footer__brand p {
  font-size: 0.92rem;
  max-width: 340px;
  line-height: 1.6;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c7cbef;
  transition: all 0.3s var(--ease);
}
.footer__social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px);
}
.footer__social svg {
  width: 20px;
  height: 20px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.footer__col h6 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  padding: 7px 0;
  font-size: 0.92rem;
  color: #9aa0c4;
}
.footer__col a:hover {
  color: #ff7283;
  padding-left: 5px;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-block: 28px;
  font-size: 0.84rem;
  line-height: 1.6;
}
.footer__bottom a {
  color: #c7cbef;
}
.footer__bottom a:hover {
  color: #ff7283;
}
.footer__legal {
  font-size: 0.78rem;
  color: #6b7099;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 22px 34px;
}
.fregale b {
  color: #fff;
}

/* ---------- 23. WHATSAPP FLOAT ---------- */
.whats {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s var(--ease);
}
.whats:hover {
  transform: scale(1.08);
}
.whats svg {
  width: 30px;
  height: 30px;
  color: #fff;
}
.whats::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: pulse-w 2.4s infinite;
}
@keyframes pulse-w {
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---------- 24. COOKIE BAR ---------- */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 950;
  max-width: 540px;
  background: var(--navy-2);
  color: #dfe2f5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 20px 22px;
  box-shadow: var(--sh-3);
  transform: translateY(150%);
  transition: transform 0.5s var(--ease-out);
}
.cookie.visible {
  transform: none;
}
.cookie p {
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.cookie p a {
  color: #ff8089;
  text-decoration: underline;
}
.cookie__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie__btns .btn {
  padding: 0.7em 1.4em;
  font-size: 0.88rem;
}
.cookie .btn--ghost {
  color: #dfe2f5;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.2);
}

/* ---------- 25. LEGAL PAGES ---------- */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding-top: clamp(120px, 16vw, 160px);
  padding-bottom: clamp(40px, 6vw, 70px);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px 400px at 80% 0%,
      rgba(60, 59, 110, 0.6),
      transparent 60%
    ),
    radial-gradient(
      500px 400px at 10% 100%,
      rgba(178, 34, 52, 0.25),
      transparent 60%
    );
}
.page-hero .container {
  position: relative;
}
.page-hero p {
  color: #bcc1e6;
  margin-top: 0.8rem;
}
.legal {
  padding-block: clamp(48px, 7vw, 80px);
}
.legal__body {
  max-width: 800px;
  margin-inline: auto;
}
.legal__body h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin: 2.2rem 0 0.9rem;
  padding-top: 1rem;
}
.legal__body h2:first-child {
  margin-top: 0;
}
.legal__body h3 {
  font-size: 1.1rem;
  margin: 1.4rem 0 0.5rem;
}
.legal__body p,
.legal__body li {
  color: var(--text-mut);
  margin-bottom: 0.9rem;
  line-height: 1.72;
}
.legal__body ul {
  padding-left: 4px;
  display: grid;
  gap: 6px;
  margin-bottom: 1rem;
}
.legal__body li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.legal__body li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 0.6em;
}
.legal__body a {
  color: var(--red);
  text-decoration: underline;
}
.legal__meta {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  color: var(--red);
  margin-top: 2.5rem;
}
.back-link svg {
  width: 18px;
  height: 18px;
}

/* ---------- 26. RESPONSIVE ---------- */
@media (min-width: 560px) {
  .prob-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ben-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .assure {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__cols {
    grid-template-columns: repeat(3, 1fr);
  }
  .bonus-card {
    grid-template-columns: auto 1fr auto;
  }
}
@media (min-width: 768px) {
  .tst-card {
    flex-basis: 46%;
  }
  .cookie__btns {
    flex-wrap: nowrap;
  }
}
@media (min-width: 992px) {
  .nav__links {
    display: flex;
  }
  .nav__cta {
    display: inline-flex;
  }
  .nav__toggle {
    display: none;
  }
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .sol-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ben-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .prof-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .footer__top {
    grid-template-columns: 1.4fr 2fr;
  }
  .tst-card {
    flex-basis: 31%;
  }
  .guarantee {
    grid-template-columns: auto 1fr;
  }
}
@media (min-width: 1200px) {
  .steps {
    max-width: 860px;
  }
}
