/* ═══════════════════════════════════════════════
   FabiFitness · Design System
   Paleta extraída do logo: coral salmão + coral vivo
   ═══════════════════════════════════════════════ */

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

:root {
  /* Paleta do logo */
  --coral-50: #FFF4F1;
  --coral-100: #FFE8E3;
  --coral-200: #FFD3CB;
  --coral-300: #F8B0A3;
  --coral-400: #F4998B;   /* "Fabi" no logo */
  --coral-500: #F0705F;
  --coral-600: #EE5A4E;   /* "Fitness" no logo */
  --coral-700: #D63A2E;
  --coral-800: #B02A20;

  /* Neutros quentes */
  --ink: #2E2320;
  --ink-soft: #7A6862;
  --bg: #FFFBFA;
  --card: #FFFFFF;
  --line: #FFE0DA;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-card: 0 20px 50px -25px rgba(238, 90, 78, 0.25);
  --shadow-cta: 0 18px 40px -12px rgba(233, 79, 67, 0.5);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.has-sticky {
  padding-bottom: 96px;
}

::selection {
  background: var(--coral-200);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--coral-300);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ───────────────────────────────
   Fundo decorativo
   ─────────────────────────────── */

.bg-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: blobFloat 18s ease-in-out infinite alternate;
}

.blob-1 {
  width: 480px;
  height: 480px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, var(--coral-100) 0%, transparent 70%);
}

.blob-2 {
  width: 420px;
  height: 420px;
  top: 30%;
  right: -180px;
  background: radial-gradient(circle, #FFE3DD 0%, transparent 70%);
  animation-delay: -6s;
}

.blob-3 {
  width: 380px;
  height: 380px;
  bottom: -140px;
  left: 20%;
  background: radial-gradient(circle, var(--coral-100) 0%, transparent 70%);
  animation-delay: -12s;
}

@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -24px) scale(1.08); }
}

/* ───────────────────────────────
   Top bar
   ─────────────────────────────── */

.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 251, 250, 0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--coral-100);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--coral-700);
  background: var(--coral-50);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--coral-200);
  white-space: nowrap;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--coral-600);
  border-radius: 50%;
  animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(238, 90, 78, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(238, 90, 78, 0); }
}

/* ───────────────────────────────
   Layout
   ─────────────────────────────── */

.container {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 2.75rem 1.25rem 3.5rem;
}

/* ───────────────────────────────
   Hero
   ─────────────────────────────── */

.hero {
  text-align: center;
  margin-bottom: 2.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--coral-100);
  color: var(--coral-800);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--coral-200);
  margin-bottom: 1.25rem;
  animation: eyebrowGlow 2.4s ease-in-out infinite;
}

@keyframes eyebrowGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(238, 90, 78, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(238, 90, 78, 0); }
}

.headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.05rem, 5.6vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.hl {
  background: linear-gradient(120deg, var(--coral-500), var(--coral-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hl-mark {
  background-image: linear-gradient(transparent 62%, var(--coral-200) 62%);
  border-radius: 4px;
  padding: 0 0.15em;
}

.subheadline {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 62ch;
  margin: 0 auto;
}

.subheadline strong {
  color: var(--ink);
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.hero-proof p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.hero-proof strong {
  color: var(--ink);
}

.avatars {
  display: flex;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  box-shadow: 0 4px 10px rgba(46, 35, 32, 0.15);
}

.avatars .avatar + .avatar {
  margin-left: -10px;
}

.av-1 { background: linear-gradient(135deg, var(--coral-400), var(--coral-600)); }
.av-2 { background: linear-gradient(135deg, var(--coral-300), var(--coral-500)); }
.av-3 { background: linear-gradient(135deg, var(--coral-500), var(--coral-700)); }
.av-4 { background: linear-gradient(135deg, var(--coral-400), var(--coral-500)); }

/* ───────────────────────────────
   Vídeo
   ─────────────────────────────── */

.video-section {
  margin-bottom: 1.5rem;
}

.video-frame {
  padding: 7px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--coral-300), var(--coral-600) 45%, var(--coral-300));
  box-shadow:
    0 24px 60px -18px rgba(238, 90, 78, 0.45),
    0 8px 24px rgba(46, 35, 32, 0.12);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #1A0F0D;
  border-radius: 18px;
  overflow: hidden;
}

#youtube-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#youtube-player iframe {
  width: 100%;
  height: 100%;
}

.video-shield {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: transparent;
  cursor: default;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  background: radial-gradient(ellipse at center, rgba(26, 15, 13, 0.35) 0%, rgba(26, 15, 13, 0.72) 100%);
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(238, 90, 78, 0.55);
  transition: transform 0.25s ease;
}

.play-btn::before,
.play-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  animation: ringPulse 2.4s ease-out infinite;
}

.play-btn::after {
  animation-delay: 1.2s;
}

@keyframes ringPulse {
  from { transform: scale(1); opacity: 0.7; }
  to { transform: scale(1.9); opacity: 0; }
}

.play-btn svg {
  width: 38px;
  height: 38px;
  margin-left: 5px;
}

.play-btn:hover {
  transform: scale(1.07);
}

.overlay-hint {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(transparent, rgba(15, 8, 7, 0.8));
}

.ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 38px;
  padding: 0 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
}

.ctrl-btn svg {
  width: 18px;
  height: 18px;
}

.ctrl-btn .hidden {
  display: none;
}

.speed-btn.active {
  background: var(--coral-600);
  border-color: var(--coral-600);
}

/* ───────────────────────────────
   Progresso
   ─────────────────────────────── */

.progress-wrap {
  margin-top: 1rem;
}

.progress-bar {
  height: 8px;
  background: var(--coral-100);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--coral-400), var(--coral-600), var(--coral-400));
  background-size: 200% 100%;
  border-radius: 999px;
  transition: width 0.45s ease;
  animation: sheenMove 2.6s linear infinite;
}

@keyframes sheenMove {
  from { background-position: 0% 0; }
  to { background-position: 200% 0; }
}

.progress-hint {
  margin-top: 0.6rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.progress-hint.unlocked {
  color: var(--coral-700);
  font-weight: 700;
}

/* ───────────────────────────────
   Revelação da oferta
   ─────────────────────────────── */

.offer-content {
  display: none;
}

.offer-content.visible {
  display: block;
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ───────────────────────────────
   CTA principal
   ─────────────────────────────── */

.cta-section {
  text-align: center;
  margin-top: 2.25rem;
}

.unlock-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 26px -8px rgba(233, 79, 67, 0.55);
  margin-bottom: 1.4rem;
  animation: bounceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.6); }
  60% { transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}

.cta-button {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
  max-width: 560px;
  padding: 1.4rem 2rem;
  background: linear-gradient(135deg, #F27059 0%, #E8443A 100%);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-cta);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: ctaBreath 2.8s ease-in-out infinite;
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: shine 3.4s ease-in-out infinite;
}

@keyframes shine {
  0%, 55% { left: -70%; }
  100% { left: 170%; }
}

@keyframes ctaBreath {
  0%, 100% { box-shadow: 0 18px 40px -12px rgba(233, 79, 67, 0.5); }
  50% { box-shadow: 0 22px 52px -10px rgba(233, 79, 67, 0.68); }
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 56px -12px rgba(233, 79, 67, 0.7);
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-text {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.cta-text svg {
  width: 22px;
  height: 22px;
}

.cta-sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.cta-trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.6rem;
  margin-top: 1.2rem;
}

.cta-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.cta-trust-row svg {
  width: 17px;
  height: 17px;
  color: var(--coral-600);
}

/* ───────────────────────────────
   Caixa da oferta
   ─────────────────────────────── */

.offer-box {
  margin-top: 2.6rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.2rem 1.9rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 0.35rem;
}

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.offer-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.offer-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #FFF8F6;
  border: 1px solid var(--coral-100);
  border-radius: 16px;
  padding: 1.05rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -14px rgba(238, 90, 78, 0.35);
}

.item-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--coral-50), var(--coral-100));
  border: 1px solid var(--coral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.offer-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.offer-list li > div > span {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Pilares */

.pillars {
  margin-top: 2.1rem;
}

.pillars h3 {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.7rem;
}

.pillar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 0.8rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pillar:hover {
  transform: translateY(-3px);
  border-color: var(--coral-300);
  box-shadow: 0 12px 28px -16px rgba(238, 90, 78, 0.4);
}

.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  background: linear-gradient(120deg, var(--coral-500), var(--coral-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.25rem;
}

.pillar-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

/* Preço */

.price-stack {
  position: relative;
  margin-top: 2.4rem;
  background: linear-gradient(160deg, #FFF3F0, #FFE7E2);
  border: 1px solid var(--coral-200);
  border-radius: 20px;
  padding: 2.4rem 1.5rem 1.9rem;
  text-align: center;
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral-600);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(233, 79, 67, 0.5);
  white-space: nowrap;
}

.price-anchor {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

.price-anchor s {
  color: var(--coral-700);
  font-weight: 600;
}

.price-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}

.price-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 3.6rem);
  color: var(--coral-600);
  line-height: 1;
}

.price-main span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.price-daily {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: var(--ink);
}

/* ───────────────────────────────
   Depoimentos
   ─────────────────────────────── */

.testimonials {
  margin-top: 2.6rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 14px 34px -22px rgba(46, 35, 32, 0.25);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
  color: var(--coral-500);
}

.stars svg {
  width: 16px;
  height: 16px;
}

.testimonial p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1rem;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.testimonial .avatar {
  width: 42px;
  height: 42px;
  border: none;
  font-size: 0.95rem;
}

.t-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.t-role {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ───────────────────────────────
   Estatísticas
   ─────────────────────────────── */

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.6rem;
}

.trust-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -18px rgba(238, 90, 78, 0.4);
}

.trust-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(120deg, var(--coral-500), var(--coral-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-label {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

/* ───────────────────────────────
   CTA final
   ─────────────────────────────── */

.final-cta {
  position: relative;
  margin-top: 2.8rem;
  background: linear-gradient(140deg, #EE5F52, #DC3F33);
  border-radius: 26px;
  padding: 3rem 1.75rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(220, 63, 51, 0.6);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.final-cta::before {
  width: 260px;
  height: 260px;
  top: -110px;
  right: -80px;
}

.final-cta::after {
  width: 200px;
  height: 200px;
  bottom: -90px;
  left: -60px;
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}

.final-cta > p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 54ch;
  margin: 0 auto 1.6rem;
}

.final-cta > p strong {
  display: block;
  margin-top: 0.4rem;
  color: #fff;
}

.final-button {
  background: #fff;
  color: var(--coral-600);
  animation: none;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.final-button::after {
  display: none;
}

.final-button:hover {
  box-shadow: 0 22px 44px -12px rgba(0, 0, 0, 0.45);
}

.final-button .cta-sub {
  color: var(--coral-700);
  opacity: 0.85;
}

/* ───────────────────────────────
   Footer
   ─────────────────────────────── */

.footer {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-top: 1px solid var(--coral-100);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.disclaimer {
  margin-top: 0.45rem;
  max-width: 620px;
  margin-inline: auto;
  opacity: 0.75;
  font-size: 0.72rem;
}

/* ───────────────────────────────
   CTA fixo (aparece ao liberar)
   ─────────────────────────────── */

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 90;
  width: min(560px, calc(100% - 24px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--coral-200);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px -12px rgba(46, 35, 32, 0.3);
  transform: translate(-50%, 130%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.sticky-cta.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.sticky-info strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.sticky-info span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.sticky-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, #F27059, #E8443A);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px -8px rgba(233, 79, 67, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(233, 79, 67, 0.65);
}

/* ───────────────────────────────
   Animações de scroll
   ─────────────────────────────── */

.js-anim .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-anim .reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ───────────────────────────────
   Acessibilidade e responsivo
   ─────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 680px) {
  .offer-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 680px) {
  .offer-list {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .top-bar {
    padding: 0.7rem 1rem;
  }

  .brand-logo {
    height: 36px;
  }

  .live-badge {
    font-size: 0.62rem;
    padding: 0.35rem 0.7rem;
  }

  .container {
    padding: 2rem 1rem 3rem;
  }

  .play-btn {
    width: 70px;
    height: 70px;
  }

  .play-btn svg {
    width: 30px;
    height: 30px;
  }

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

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

  .offer-box {
    padding: 1.6rem 1.2rem;
  }

  .final-cta {
    padding: 2.4rem 1.25rem;
  }

  .cta-text {
    font-size: 1.05rem;
  }

  .sticky-info span {
    display: none;
  }
}
