/* ════════════════════════════════════════════
   GUILHERME ENNES — Programa Prime
   Strategy : Committed dark/light alternation
   Surface   : White hero → Dark alt sections
   Accent    : Gold C8970E (selective, premium)
   Font      : Montserrat (headings) + Sora (body)
   ════════════════════════════════════════════ */

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

:root {
  /* Light surface */
  --bg: #fefefe;
  --bg-card: #ffffff;
  --text: #111111;
  --text-2: #4a4a4a;
  --text-3: #717171;
  --border: #e4e4e4;

  /* Dark surface */
  --dark: #0c0c0c;
  --dark-2: #171717;
  --dark-card: #1e1e1e;
  --dark-border: #2c2c2c;
  --dark-text: #f0f0f0;
  --dark-text-2: #a0a0a0;

  /* Brand accent: Gold (selective — Olympic doctor, Prime identity) */
  --gold: #c8970e;
  --gold-dark: #a87d08;
  --gold-light: #e0b840;
  --gold-bg: rgba(200, 151, 14, 0.1);
  --gold-border: rgba(200, 151, 14, 0.25);

  /* CTA */
  --green-wa: #25d366;

  /* Type */
  --font-heading: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Sora", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --nav-h: 64px;
  --r: 16px;
  --r-lg: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.13);
  --shadow-vid: 0 24px 80px rgba(0, 0, 0, 0.16);

  /* Motion */
  --t: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Accessibility: Focus Outlines */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
video {
  display: block;
}

/* ── CONTAINER ──────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow {
  max-width: 760px;
}

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--t);
  padding: 14px 28px;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--green-wa);
  color: #fff;
  box-shadow: 0 2px 16px rgba(37, 211, 102, 0.28);
}
.btn-primary:hover {
  background: #1fb55a;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.38);
}
.btn-primary:active {
  transform: translateY(0);
}

/* Light outline (used on white sections) */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--text);
  background: rgba(0, 0, 0, 0.04);
}

/* Inverse outline (used on dark sections) */
.btn-outline-inv {
  background: transparent;
  color: var(--dark-text-2);
  border: 1.5px solid var(--dark-border);
}
.btn-outline-inv:hover {
  border-color: var(--dark-text-2);
  color: var(--dark-text);
  background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 0.92rem;
}
.btn-xl {
  padding: 20px 46px;
  font-size: 1rem;
}
.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── NAV ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: rgba(254, 254, 254, 0.9);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo img {
  height: 54px;
  width: auto;
}
.nav__links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-family: var(--font-heading);
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color var(--t);
}
.nav__links a:hover {
  color: var(--text);
}
.nav__cta {
  margin-left: 8px;
  padding: 10px 20px;
  font-size: 0.82rem;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform var(--t),
    opacity var(--t);
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 64px) 32px 88px;
  display: flex;
  align-items: center;
  background: var(--bg);
}
.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: center;
}

/* Tag pill (replaces eyebrow) */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.hero__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-wa);
  flex-shrink: 0;
  animation: pulseDot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero__title {
  font-size: clamp(2rem, 3.8vw, 2.7rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero__title .line-accent {
  color: var(--gold);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

/* Trust bar under hero CTA */
.hero__proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-3);
  font-family: var(--font-body);
  line-height: 1.5;
}
.hero__proof strong {
  color: var(--gold-dark);
  font-weight: 600;
}

/* Video column */
.hero__video-col {
  position: relative;
}
.hero__video-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-vid);
  background: #111;
  aspect-ratio: 16/9;
  cursor: pointer;
  border: 1px solid var(--border);
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ── VIDEO NATIVE CONTROLS ───────────────────── */
.hero__video {
  width: 100%;
  border-radius: var(--r-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: var(--dark-bg);
}

/* ── ACCENT ─────────────────────────────────── */
.accent {
  color: var(--gold);
}

/* ── SECTIONS ───────────────────────────────── */
.section {
  padding: 100px 0;
}

/* Dark section — used for Sobre + Bônus */
.section-dark {
  background: var(--dark);
  color: var(--dark-text);
}
.section-dark .section-title {
  color: var(--dark-text);
}
.section-dark .section-title .accent {
  color: var(--gold-light);
}
.section-dark .section-sub {
  color: var(--dark-text-2);
}
.section-dark .body-text {
  color: var(--dark-text-2);
}
.section-dark .body-text strong {
  color: var(--dark-text);
}
.section-dark .check-list li {
  color: var(--dark-text-2);
}
.section-dark .check-icon {
  background: rgba(200, 151, 14, 0.12);
  border-color: rgba(200, 151, 14, 0.3);
  color: var(--gold-light);
}
.section-dark .divider {
  background: var(--dark-border);
}

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

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 580px;
}
.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* ── TWO COL & SPLIT SEC ────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-section {
  position: relative;
  padding: 0;
}
.split-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}
.split-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-container {
  position: relative;
  z-index: 1;
}
.split-empty {
  visibility: hidden;
}
.split-section .two-col__text {
  padding: 100px 0;
  padding-left: 40px;
}
.two-col--reverse .two-col__text:first-child {
  order: 2;
}
.two-col--reverse .two-col__media {
  order: 1;
}

.body-text {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.body-text strong {
  color: var(--text);
  font-weight: 600;
}

/* ── CHECK LIST ─────────────────────────────── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px;
}
.check-list li {
  display: flex;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--text-2);
  align-items: flex-start;
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg {
  width: 12px;
  height: 12px;
}
.check-list--lg li {
  font-size: 1.02rem;
  gap: 14px;
}

/* ── STAT ROW (replaces the 2×2 card grid) ──── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.stat-item {
  padding: 32px 24px;
  border-top: 1px solid var(--dark-border);
}
.stat-item:nth-child(-n + 2) {
  border-top: none;
}
.stat-item:nth-child(even) {
  border-left: 1px solid var(--dark-border);
}

.stat-num-lg {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.055em;
  color: var(--dark-text);
  line-height: 1;
}
.stat-num-lg sup {
  font-size: 1.1rem;
  vertical-align: super;
  letter-spacing: 0;
  font-weight: 700;
}
.stat-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--dark-text-2);
  font-weight: 500;
  margin-top: 8px;
  line-height: 1.4;
}

/* ── BASE LIST (replaces identical feature cards) */
.base-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.base-item {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  transition: background var(--t);
  position: relative;
}
.base-item:last-child {
  border-right: none;
}
.base-item:hover {
  background: var(--gold-bg);
}

.base-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.base-item h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.base-item p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
}

/* ── BONUS ROWS ─────────────────────────────── */
.bonus-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px 0;
}
.bonus-row--featured {
  background: rgba(200, 151, 14, 0.06);
  border: 1px solid rgba(200, 151, 14, 0.22);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  margin: 16px 0;
}
.bonus-tag {
  font-family: var(--font-heading);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-text-2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 4px;
  text-align: center;
}
.bonus-tag--featured {
  color: var(--gold-light);
  background: rgba(200, 151, 14, 0.12);
  border-color: rgba(200, 151, 14, 0.28);
}
.two-col__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-foto {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  background: var(--dark-2);
}
.sobre-foto::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.sobre-foto img {
  width: 100%;
  height: auto;
  display: block;
}

.two-col__text h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
.bonus-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.bonus-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text-2);
  flex-shrink: 0;
  margin-top: 2px;
}
.bonus-row--featured .bonus-icon-wrap {
  background: rgba(200, 151, 14, 0.12);
  border-color: rgba(200, 151, 14, 0.3);
  color: var(--gold-light);
}
.feature-svg {
  width: 24px;
  height: 24px;
}

.bonus-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.bonus-text p {
  font-size: 0.92rem;
  color: var(--dark-text-2);
  line-height: 1.8;
}
.bonus-text strong {
  color: var(--dark-text);
  font-weight: 600;
}

.divider {
  height: 1px;
  background: var(--dark-border);
}

.dr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.dr-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 151, 14, 0.12);
  border: 1px solid rgba(200, 151, 14, 0.28);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
}
.tag-svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── FAQ ────────────────────────────────────── */
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color var(--t);
}
.faq-q:hover {
  color: var(--gold-dark);
}
.faq-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform var(--t);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}
.faq-a > p {
  overflow: hidden;
  min-height: 0;
  margin: 0;
}
.faq-item.open .faq-a > p {
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.8;
}

/* ── CTA FINAL ──────────────────────────────── */
.cta-final {
  padding: 140px 32px;
  background: var(--dark);
  color: var(--dark-text);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(200, 151, 14, 0.14) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-final .container {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.cta-final__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  background: rgba(200, 151, 14, 0.1);
  border: 1px solid rgba(200, 151, 14, 0.22);
  border-radius: 100px;
  padding: 6px 18px;
}
.cta-final__title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--dark-text);
  margin-bottom: 20px;
  text-wrap: balance;
}
.cta-final__title .accent {
  color: var(--gold-light);
}
.cta-final__sub {
  font-size: 1.05rem;
  color: var(--dark-text-2);
  line-height: 1.75;
  margin-bottom: 48px;
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: #060606;
  border-top: 1px solid #1a1a1a;
  padding: 48px 32px;
  text-align: center;
}
.footer__logo {
  height: 28px;
  margin: 0 auto 16px;
  opacity: 0.8;
}
.footer__text {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
  font-style: italic;
}
.footer__copy {
  font-size: 0.75rem;
  color: #444;
  margin-bottom: 32px;
}
.footer__agency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
}
.footer__agency span {
  font-size: 0.75rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer__agency-logo {
  height: 24px;
  opacity: 0.7;
}

/* ── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Accessibility: respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 48px) 24px 64px;
  }
  .hero__desc {
    max-width: none;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two-col--reverse .two-col__text:first-child {
    order: 0;
  }
  .two-col--reverse .two-col__media {
    order: 0;
  }

  .split-bg {
    position: relative;
    width: 100%;
    height: 400px;
  }
  .split-empty {
    display: none;
  }
  .split-section .two-col__text {
    padding: 64px 0;
    padding-left: 0;
  }

  .base-list {
    grid-template-columns: 1fr;
  }
  .base-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 36px 28px;
  }
  .base-item:last-child {
    border-bottom: none;
  }

  .bonus-row {
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 0;
  }
  .bonus-row > .btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
  .bonus-row--featured {
    padding: 28px 24px;
  }
}

@media (max-width: 680px) {
  :root {
    --nav-h: 56px;
  }

  /* Prevent horizontal scroll on mobile */
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .container {
    padding: 0 20px;
  }
  .section {
    padding: 64px 0;
  }

  /* ── NAV ── */
  .nav__links {
    display: none;
  }
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 199;
  }
  .nav__links.open a {
    font-size: 1.1rem;
    color: var(--text);
  }

  /* ── HERO ── */
  .hero {
    padding: calc(var(--nav-h) + 32px) 20px 48px;
  }
  .hero__inner {
    gap: 32px;
  }
  .hero__tag {
    font-size: 0.68rem;
  }
  .hero__title {
    font-size: clamp(1.8rem, 7.5vw, 2.3rem);
    margin-bottom: 16px;
  }
  .hero__desc {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
  .hero__video-wrap {
    border-radius: var(--r);
  }
  .hero__proof {
    font-size: 0.78rem;
  }

  /* ── SECTION TITLES ── */
  .section-title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  }
  .section-sub {
    font-size: 0.95rem;
  }
  .section-header {
    margin-bottom: 36px;
  }

  /* ── STATS ── */
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 24px 16px;
  }
  .stat-num-lg {
    font-size: 2.2rem;
  }

  /* ── BASE LIST (Metodologia) ── */
  .base-list {
    border-radius: var(--r);
  }
  .base-item {
    padding: 28px 20px;
  }
  .base-item h3 {
    font-size: 1rem;
  }

  /* ── SPLIT (Sobre) ── */
  .split-bg {
    position: relative;
    width: 100%;
    height: 420px;
    left: 0;
  }
  .split-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .split-section .two-col__text {
    padding: 40px 0;
  }
  .sobre-foto {
    max-width: 100%;
  }
  .two-col__text h2 {
    font-size: 1.6rem;
  }

  /* ── BONUS ── */
  .bonus-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 0;
  }
  .bonus-tag {
    width: fit-content;
  }
  .bonus-content {
    gap: 16px;
  }
  .bonus-row > .btn {
    width: 100%;
    justify-content: center;
  }
  .bonus-row--featured {
    padding: 24px 20px;
  }
  .bonus-text h3 {
    font-size: 1.05rem;
  }

  /* ── FAQ ── */
  .faq-q {
    font-size: 0.95rem;
    padding: 18px 0;
  }
  .section-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── CTA FINAL ── */
  .cta-final {
    padding: 80px 20px;
  }
  .cta-final__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .cta-final__sub {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  .btn-xl {
    padding: 18px 28px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  /* ── FOOTER ── */
  .footer {
    padding: 40px 20px;
  }
  .footer__agency {
    flex-direction: column;
    gap: 8px;
  }
}
