/*
 * EccoPlay — style.css
 * Versão unificada: tokens light + todos os componentes da LP
 * Fonts: Outfit (headings) · DM Sans (body) — via Google Fonts
 * ─────────────────────────────────────────────────────────────
 */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Nunito:wght@400;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ══════════════════════════════════════
   1. DESIGN TOKENS
══════════════════════════════════════ */
:root {
  /* Marca */
  --primary:        #e65f82;
  --primary-mid:    #d44f72;
  --primary-dark:   #c03d62;
  --primary-soft:   rgba(230, 95, 130, 0.06);
  --primary-softer: rgba(230, 95, 130, 0.10);
  --primary-glow:   rgba(230, 95, 130, 0.20);

  --secondary:      #55bedc;
  --secondary-soft: rgba(85, 190, 220, 0.08);
  --secondary-mid:  rgba(85, 190, 220, 0.18);

  --yellow:         #f4a200;
  --yellow-soft:    rgba(244, 162, 0, 0.08);

  /* Texto e fundo */
  --dark:           #1a1a1a;
  --dark-2:         #2d2d2d;
  --text:           #555555;
  --text-muted:     #878787;
  --white:          #ffffff;
  --bg-section:     #f7f7f7;
  --bg-subtle:      #f2f2f2;
  --border:         #e8e8e8;
  --border-mid:     #d8d8d8;

  /* Raios */
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Sombras */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 20px 48px rgba(0,0,0,0.10);
  --shadow-pink: 0 8px 28px rgba(230,95,130,0.22);

  /* Aliases legados — mantidos para retrocompatibilidade */
  --pink:      #e65f82;
  --blue:      #55bedc;
  --gray:      #878787;
}


/* ══════════════════════════════════════
   2. RESET & BASE
══════════════════════════════════════ */
.d-none{display: none!important;}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section    { padding: 96px 0; }
.section-sm { padding: 72px 0; }


/* ══════════════════════════════════════
   3. SCROLL PROGRESS
══════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 9999;
  transition: width 0.1s linear;
}


/* ══════════════════════════════════════
   4. TAGS / BADGES
══════════════════════════════════════ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Outfit', sans-serif;
}

.tag-pink   { background: var(--primary-soft);   color: var(--primary);   border: 1px solid rgba(230,95,130,0.15); }
.tag-blue   { background: var(--secondary-soft);  color: var(--secondary); border: 1px solid rgba(85,190,220,0.18); }
.tag-yellow { background: var(--yellow-soft);     color: var(--yellow);    border: 1px solid rgba(244,162,0,0.18); }
.tag-gray   { background: var(--bg-section);      color: var(--text-muted);border: 1px solid var(--border); }

/* Alias legado — candy-tag */
.candy-tag {
  display: inline-block;
  padding: 5px 15px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 15px;
  font-family: 'Outfit', sans-serif;
}

.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-tag 2s ease-in-out infinite;
}

@keyframes pulse-tag {
  0%,100% { opacity: 1; transform: scale(1);   }
  50%      { opacity: .4; transform: scale(1.4); }
}


/* ══════════════════════════════════════
   5. BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  background: var(--primary-mid);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(230,95,130,0.32);
}

.btn-outline {
  background: #fff;
  color: var(--secondary);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
}

/* Aliases legados */
.btn-menu {
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(230,95,130,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-menu:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(230,95,130,0.4);
  color: #fff;
  background: var(--primary);
}


/* ══════════════════════════════════════
   6. NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 14px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wm-ecco {
  color: #e65f82;
} /* reusa --primary do global */
.wm-play {
  color: #55bedc;
}

.ep-brand {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 2.3rem;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.ep-subt {
  font-family: "Nunito";
  color: #969696;
  font-size: 0.7rem;
  display: block;
  margin-top: 5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 7px 15px;
  border-radius: 50px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--primary); background: var(--primary-soft); }

/* Alias legado — nav-link (para uso com Bootstrap ou estrutura anterior) */
.nav-link {
  font-weight: 500;
  color: var(--text) !important;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* CTA no nav */
.nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Outfit', sans-serif;
}
.nav-cta:hover { background: var(--primary-mid); transform: translateY(-1px); color: #fff; }
.nav-cta svg  { width: 15px; height: 15px; }

/* Hamburger / menu mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 998;
  padding: 28px 24px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 14px 20px;
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.mobile-menu a:hover {
  background: var(--primary-soft);
  border-color: rgba(230,95,130,0.2);
  color: var(--primary);
}
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-links, .nav-cta-desktop { display: none; }
}


/* ══════════════════════════════════════
   7. HERO
══════════════════════════════════════ */
.hero {
  padding: 148px 0 96px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Orbs decorativos */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 560px; height: 560px;
  background: rgba(230,95,130,0.07);
  top: -160px; right: -100px;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  background: rgba(85,190,220,0.07);
  bottom: -80px; left: -80px;
}

/* Grid de pontos de fundo */
.hero-dotgrid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(0,0,0,0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .accent       { color: var(--primary); }
.hero h1 .accent-pink  { color: var(--primary); }
.hero h1 .accent-blue  { color: var(--secondary); }

.hero-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats  { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 3px;
}
.hero-stat-num span    { color: var(--primary); }
.hero-stat-label       { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* Entrada animada do bloco de texto */
.hero-txt > * {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-in 0.85s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-txt > *:nth-child(1) { animation-delay: .05s; }
.hero-txt > *:nth-child(2) { animation-delay: .14s; }
.hero-txt > *:nth-child(3) { animation-delay: .22s; }
.hero-txt > *:nth-child(4) { animation-delay: .30s; }
.hero-txt > *:nth-child(5) { animation-delay: .38s; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* Mockup */
.hero-visual { position: relative; }

.hero-mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: float-hero 4s ease-in-out infinite;
}
@keyframes float-hero {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.mockup-bar {
  background: var(--bg-section);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #FF5F57; }
.dot-y { background: #FEBC2E; }
.dot-g { background: #28C840; }

.mockup-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'DM Sans', monospace;
}

.mockup-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 1px;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse-tag 1.5s ease-in-out infinite;
}

.mockup-body { padding: 20px; }

.mc-score {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
}
.mc-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 5px;
}
.mc-flag      { font-size: 1.6rem; }
.mc-score-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--dark);
}
.mc-time { font-size: 0.72rem; color: var(--secondary); font-weight: 700; letter-spacing: 0.5px; }

.mc-rank-title {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 9px;
  font-family: 'Outfit', sans-serif;
}
.mc-rank-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 10px;
  margin-bottom: 6px;
  border: 1px solid var(--border);
  background: #fff;
}
.mc-rank-row:first-of-type { border-color: rgba(230,95,130,0.3); background: var(--primary-soft); }

.mc-pos   { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.82rem; width: 18px; }
.mc-pos-1 { color: var(--primary); }
.mc-pos-n { color: var(--text-muted); }

.mc-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}
.av-1 { background: var(--primary-soft);  color: var(--primary);   }
.av-2 { background: var(--secondary-soft);color: var(--secondary); }
.av-3 { background: var(--yellow-soft);   color: var(--yellow);    }

.mc-name { font-size: 0.8rem; font-weight: 600; color: var(--dark); flex: 1; }
.mc-pts  { font-size: 0.78rem; font-weight: 800; color: var(--yellow); font-family: 'Outfit', sans-serif; }

/* Floating badges do hero */
.fl-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
}
.fl-top { top: -22px;   right: -18px; animation: float-b1 3s ease-in-out infinite; }
.fl-bot { bottom: -18px; left: -18px;  animation: float-b2 3.5s ease-in-out infinite 0.5s; }

@keyframes float-b1 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-7px) rotate(-2deg)} }
@keyframes float-b2 { 0%,100%{transform:translateY(0) rotate(1.5deg)} 50%{transform:translateY(-5px) rotate(1.5deg)} }

.fl-badge-label { font-size: 0.6rem;  color: var(--text-muted); font-weight: 600; margin-bottom: 3px; }
.fl-badge-value { font-size: 0.82rem; font-weight: 700; color: var(--dark); }
.fl-badge-value .em { color: var(--primary); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { order: -1; }
  .hero { padding: 120px 0 72px; }
  .fl-top, .fl-bot { display: none; }
}


/* ══════════════════════════════════════
   8. MARQUEE STRIP
══════════════════════════════════════ */
.marquee-strip {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
  border-right: 1px solid var(--border);
}
.marquee-item:last-child { border-right: none; }
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}


/* ══════════════════════════════════════
   9. SECTION HEADING (.sh)
══════════════════════════════════════ */
.sh { margin-bottom: 52px; }
.sh .tag { margin-bottom: 16px; }
.sh h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  margin-bottom: 14px;
}
.sh h2 em { font-style: normal; color: var(--primary); }
.sh p {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 730px;
  line-height: 1.75;
}
.sh.center      { text-align: center; }
.sh.center p    { margin: 0 auto; }

/* Alias legados */
.section-title {
  position: relative;
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 50px;
}
.section-title em          { font-style: normal; color: var(--primary); }
.section-title .accent-pink{ color: var(--primary); }
.section-title::before {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  background: var(--secondary-soft);
  border-radius: 50%;
  top: -10px; left: -20px;
  z-index: -1;
}
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 10px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}


/* ══════════════════════════════════════
   10. PROBLEMA (4 cards)
══════════════════════════════════════ */
.problem-section { background: var(--bg-section); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230,95,130,0.2);
}
.problem-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
  border: 1px solid rgba(230,95,130,0.12);
}
.problem-card h3 { font-size: 0.98rem; margin-bottom: 10px; font-weight: 700; }
.problem-card p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.68; }

@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .problem-grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════
   11. POR QUE FUNCIONA
══════════════════════════════════════ */
.why-section { background: #fff; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-left h2   { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 18px; }
.why-lead      { font-size: 1.02rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 32px; }

.pain-list     { display: flex; flex-direction: column; gap: 16px; }
.pain-item     { display: flex; gap: 14px; align-items: flex-start; }
.pain-num {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--primary-soft);
  border: 1px solid rgba(230,95,130,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}
.pain-item p        { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.pain-item strong   { color: var(--dark); font-weight: 600; }

.why-right { display: flex; flex-direction: column; gap: 16px; }

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: all 0.25s;
}
.value-card:hover {
  border-color: rgba(230,95,130,0.25);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.value-card-hd { display: flex; align-items: center; gap: 12px; margin-bottom: 9px; }
.value-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.vi-pink   { background: var(--primary-soft);   }
.vi-blue   { background: var(--secondary-soft);  }
.vi-yellow { background: var(--yellow-soft);     }
.vi-gray   { background: var(--bg-section);      }

.value-card h3 { font-size: 0.95rem; font-weight: 700; }
.value-card p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; gap: 48px; } }


/* ══════════════════════════════════════
   12. JORNADA (4 passos)
══════════════════════════════════════ */
.journey-section { background: var(--bg-section); }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.journey-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.journey-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.journey-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.05em;
  transition: color 0.3s;
}
.journey-step:hover .journey-num { color: rgba(230,95,130,0.15); }

.journey-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}
.ji-1 { background: var(--primary-soft);   }
.ji-2 { background: var(--secondary-soft);  }
.ji-3 { background: var(--yellow-soft);     }
.ji-4 { background: var(--bg-section);      }

.journey-step h3 { font-size: 0.98rem; margin-bottom: 8px; font-weight: 700; }
.journey-step p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

.journey-connector {
  position: absolute;
  top: 28px; right: -12px;
  z-index: 2;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}
.journey-step:last-child .journey-connector { display: none; }

@media (max-width: 860px) {
  .journey-steps { grid-template-columns: 1fr 1fr; }
  .journey-connector { display: none; }
}
@media (max-width: 520px) { .journey-steps { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════
   13. COMPARAÇÃO (antes / depois)
══════════════════════════════════════ */
.comparison-section { background: #fff; }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comparison-col {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comp-header {
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}
.comp-before .comp-header { background: #fff5f5; border-bottom: 1px solid #ffe4e4; color: #d14a4a; }
.comp-after  .comp-header { background: var(--secondary-soft); border-bottom: 1px solid rgba(85,190,220,0.2); color: var(--secondary); }

.comp-items {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-section);
}
.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 15px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}
.comp-before .comp-item { border-left: 3px solid #ffbaba; }
.comp-after  .comp-item { border-left: 3px solid rgba(85,190,220,0.45); }
.comp-icon   { font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }
.comp-item p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; }
.comp-item strong { color: var(--dark); font-weight: 600; }

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


/* ══════════════════════════════════════
   14. FEATURES (sticky scroll)
══════════════════════════════════════ */
.features-section { background: var(--bg-section); border-top: 1px solid var(--border); }

.features-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: start;
}
.features-texts { padding-top: 32px; }

.feature-block {
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0.3;
  transition: opacity 0.4s;
}
.feature-block.active     { opacity: 1; }
.feature-block:last-child { border-bottom: none; }

.fb-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 12px;
  display: block;
}
.feature-block h3 { font-size: 1.35rem; margin-bottom: 12px; max-width: 360px; }
.feature-block p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
}
.feature-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}

/* Painel sticky */
.features-sticky { position: sticky; top: 100px; }

.sticky-screen {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 520px;
  position: relative;
}

/* Dots de progresso */
.sp-dots {
  position: absolute;
  right: -30px; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.sp-dot.active { background: var(--primary); transform: scale(1.4); }

/* Slides */
.screen-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s;
  display: flex;
  flex-direction: column;
}
.screen-slide.active { opacity: 1; }

/* Topbar do slide */
.sc-topbar {
  background: var(--bg-section);
  padding: 13px 17px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 11px;
}
.sc-topbar-icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.sti-pink   { background: var(--primary-soft);   }
.sti-blue   { background: var(--secondary-soft);  }
.sti-yellow { background: var(--yellow-soft);     }
.sti-gray   { background: var(--bg-subtle);       }

.sc-topbar-title { font-size: 0.86rem; font-weight: 700; color: var(--dark); font-family: 'Outfit', sans-serif; }
.sc-topbar-sub   { font-size: 0.66rem; color: var(--text-muted); }
.sc-body         { flex: 1; padding: 17px; overflow: hidden; }

/* Slide 0 – Dashboard */
.s-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 14px;
}
.s-m-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 8px;
  text-align: center;
}
.s-m-val   { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 900; color: var(--primary); line-height: 1; }
.s-m-lbl   { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-top: 3px; font-weight: 700; }
.s-m-trend { font-size: 0.62rem; color: var(--secondary); font-weight: 700; }

.s-prog-lbl { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 700; margin-bottom: 10px; font-family: 'Outfit', sans-serif; }
.s-prog-row { margin-bottom: 8px; }
.s-prog-hd  { display: flex; justify-content: space-between; font-size: 0.76rem; margin-bottom: 4px; }
.s-prog-hd span:first-child { color: var(--dark); font-weight: 600; }
.s-prog-hd span:last-child  { color: var(--primary); font-weight: 800; font-family: 'Outfit', sans-serif; }
.s-prog-bar  { height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.s-prog-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); }

/* Slide 1 – Ranking */
.s-rank-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 7px;
}
.s-rank-row:first-child { border-color: rgba(230,95,130,0.3); background: var(--primary-soft); }

.s-rpos { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 0.85rem; width: 18px; }
.r1 { color: var(--primary);   }
.r2 { color: var(--text-muted);}
.r3 { color: var(--yellow);    }
.rn { color: var(--text-muted);}

.s-rav {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}
.ra1 { background: var(--primary-soft);   color: var(--primary);   }
.ra2 { background: var(--bg-section);     color: var(--text-muted);}
.ra3 { background: var(--yellow-soft);    color: var(--yellow);    }
.ra4 { background: var(--secondary-soft); color: var(--secondary); }
.ra5 { background: var(--bg-subtle);      color: var(--text-muted);}

.s-rname { font-size: 0.8rem; font-weight: 700; color: var(--dark); flex: 1; }
.s-rdept { font-size: 0.62rem; color: var(--text-muted); }
.s-rpts  { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 0.8rem; color: var(--yellow); }

/* Slide 2 – Quiz */
.s-quiz-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}
.s-quiz-hd   { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; }
.s-quiz-game { font-size: 0.8rem; font-weight: 700; color: var(--dark); font-family: 'Outfit', sans-serif; }
.s-quiz-pts  {
  background: var(--secondary-soft);
  color: var(--secondary);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(85,190,220,0.25);
  font-family: 'Outfit', sans-serif;
}
.s-quiz-q    { font-size: 0.84rem; color: var(--dark); font-weight: 600; margin-bottom: 9px; line-height: 1.4; }
.s-quiz-opt  {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.s-quiz-opt.correct { background: var(--secondary-soft); border-color: rgba(85,190,220,0.4); color: var(--secondary); font-weight: 700; }
.s-quiz-inst { font-size: 0.7rem; color: var(--primary); font-weight: 600; margin-top: 6px; }
.s-quiz-note { font-size: 0.67rem; color: var(--text-muted); text-align: center; margin-top: 8px; }

/* Slide 3 – White-label */
.s-wl-preview { border: 1.5px solid rgba(230,95,130,0.2); border-radius: 12px; overflow: hidden; margin-bottom: 12px; }
.s-wl-nav     { background: var(--primary); padding: 10px 14px; display: flex; align-items: center; }
.s-wl-coname  { font-size: 0.88rem; font-weight: 900; color: #fff; font-family: 'Outfit', sans-serif; }
.s-wl-body    { background: var(--primary-softer); padding: 14px; }
.s-wl-score-row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  margin-bottom: 8px;
}
.s-wl-num  { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--dark); }
.s-wl-tag  { font-size: 0.64rem; font-weight: 700; font-family: 'Outfit', sans-serif; text-align: center; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.s-wl-chips{ display: flex; flex-wrap: wrap; gap: 7px; }
.s-wl-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

/* Slide 4 – Duplas */
.s-duo-card  { background: var(--bg-section); border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.s-duo-title { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 700; font-family: 'Outfit', sans-serif; margin-bottom: 11px; }
.s-duo-pair  {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  border: 1px solid var(--border);
}
.s-duo-pair:first-of-type { border-color: rgba(85,190,220,0.3); }
.s-duo-avs { display: flex; }
.s-duo-av  {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  border: 2px solid #fff;
  font-family: 'Outfit', sans-serif;
}
.s-duo-av:nth-child(2) { margin-left: -8px; }
.da1 { background: var(--secondary-soft); color: var(--secondary); }
.da2 { background: var(--primary-soft);   color: var(--primary);   }
.da3 { background: var(--yellow-soft);    color: var(--yellow);    }
.da4 { background: var(--bg-section);     color: var(--text-muted);}

.s-duo-names { font-size: 0.8rem; font-weight: 600; color: var(--dark); flex: 1; }
.s-duo-dept  { font-size: 0.62rem; color: var(--text-muted); }
.s-duo-pts   { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 0.8rem; color: var(--secondary); }
.s-duo-note  { font-size: 0.72rem; color: var(--text-muted); text-align: center; padding: 8px; line-height: 1.5; }

@media (max-width: 1000px) {
  .features-layout { grid-template-columns: 1fr; }
  .features-sticky { display: none; }
  .feature-block   { opacity: 1; }
  .sp-dots         { display: none; }
}


/* ══════════════════════════════════════
   15. MÉTRICAS
══════════════════════════════════════ */
.metrics-section { background: var(--bg-section); }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.metric-card {
  background: #fff;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}
.metric-card:hover { background: var(--primary-soft); }
.metric-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--primary);
}
.metric-num .acc { color: var(--primary); }
.metric-lbl { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 860px) { .metrics-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .metrics-grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════
   16. DEPOIMENTOS
══════════════════════════════════════ */
.test-section { background: #fff; }

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.test-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230,95,130,0.2);
}
.test-stars { color: var(--yellow); font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 14px; }
.test-card blockquote {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  border: none;
  padding: 0;
  margin-bottom: 22px;
  flex: 1;
}
.test-author { display: flex; align-items: center; gap: 11px; }
.test-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  border: 1px solid rgba(230,95,130,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}
.test-name { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.test-role { font-size: 0.72rem; color: var(--text-muted); }

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


/* ══════════════════════════════════════
   17. PLANOS / PRICING
══════════════════════════════════════ */
.pricing-section { background: var(--bg-section); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.price-card:hover          { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured       { border-color: var(--primary); border-width: 1.5px; }
.price-card.featured:hover { box-shadow: var(--shadow-pink); }

.popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}

.plan-name    { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 4px; font-family: 'Outfit', sans-serif; }
.plan-size    { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.plan-price   { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.plan-price small { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.plan-price.consult { font-size: 1.5rem; }
.plan-period  { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 18px; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 14px 0; }

.plan-feats   { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.plan-feats li{ display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: var(--text); }
.plan-feats .chk { color: var(--secondary); font-weight: 900; flex-shrink: 0; }

.plan-cta {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px;
  border-radius: 50px;
  transition: all 0.25s;
  border: 1.5px solid transparent;
}
.plan-cta:hover { background: var(--primary-mid); color: #fff; transform: translateY(-1px); }
.plan-cta.ghost { background: transparent; border-color: var(--border); color: var(--text-muted); }
.plan-cta.ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }

.pricing-note         { text-align: center; margin-top: 24px; font-size: 0.84rem; color: var(--text-muted); }
.pricing-note strong  { color: var(--yellow); }

@media (max-width: 1000px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .pricing-grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════
   18. TRUST BADGES
══════════════════════════════════════ */
.trust-section { background: #fff; padding: 52px 0; border-top: 1px solid var(--border); }
.trust-label   { text-align: center; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 28px; font-family: 'Outfit', sans-serif; }
.trust-badges  { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
}
.trust-badge:hover { border-color: rgba(230,95,130,0.25); color: var(--primary); background: var(--primary-soft); }
.trust-badge .ico  { font-size: 0.95rem; }


/* ══════════════════════════════════════
   19. FAQ
══════════════════════════════════════ */
.faq-section { background: var(--bg-section); }
.faq-wrap    { max-width: 700px; margin: 48px auto 0; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open { border-color: rgba(230,95,130,0.25); box-shadow: var(--shadow-sm); }

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 17px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  gap: 16px;
  text-align: left;
  transition: background 0.2s;
}
.faq-btn:hover { background: var(--bg-section); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary-soft); border-color: rgba(230,95,130,0.25); }

.faq-body    { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-body { max-height: 300px; }
.faq-body-in { padding: 4px 22px 18px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.78; }


/* ══════════════════════════════════════
   20. CTA FINAL
══════════════════════════════════════ */
.cta-section { background: #fff; padding: 52px 0; }

.cta-box {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-orb-1 {
  position: absolute; top: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.cta-orb-2 {
  position: absolute; bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(85,190,220,0.18);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }

.cta-box .tag { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); color: #fff; margin-bottom: 22px; display: inline-flex; }
.cta-box h2   { font-size: clamp(1.9rem, 4vw, 2.9rem); color: #fff; margin-bottom: 14px; }
.cta-lead     { font-size: 1rem; color: rgba(255,255,255,0.72); max-width: 480px; margin: 0 auto 30px; line-height: 1.75; }
.cta-actions  { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-sub      { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.cta-sub strong { color: rgba(255,255,255,0.85); }

/* Countdown */
.countdown { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.cd-block  {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 13px 18px;
  min-width: 70px;
  text-align: center;
}
.cd-num { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 900; color: #fff; line-height: 1; display: block; }
.cd-lbl { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.55); margin-top: 3px; font-weight: 700; font-family: 'Outfit', sans-serif; }

@media (max-width: 640px) { .cta-box { padding: 52px 22px; } }


/* ══════════════════════════════════════
   21. FOOTER
══════════════════════════════════════ */
.footer {
  background: #fafafa;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--dark); letter-spacing: -0.03em; }
.footer-brand span { color: var(--primary); }
.footer-by   { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; margin-left: 6px; }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-links{ display: flex; gap: 22px; }
.footer-links a      { font-size: 0.78rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover{ color: var(--primary); }


/* ══════════════════════════════════════
   22. WHATSAPP FLOAT
══════════════════════════════════════ */
.wpp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: all 0.25s;
}
.wpp-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }


/* ══════════════════════════════════════
   23. DIVIDERS
══════════════════════════════════════ */
.divider        { height: 1px; background: var(--border); }
.divider-accent { height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0.25; }


/* ══════════════════════════════════════
   24. ANIMAÇÕES E REVEAL
══════════════════════════════════════ */

/* Reveal via IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* Alias legado */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Delays em cascata */
.d1 { transition-delay: .07s !important; }
.d2 { transition-delay: .16s !important; }
.d3 { transition-delay: .25s !important; }
.d4 { transition-delay: .34s !important; }

/* Entrada genérica — usada com JS que adiciona classe .visible */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeInUp 0.8s ease-out forwards; }


/* ══════════════════════════════════════
   25. UTILITÁRIOS
══════════════════════════════════════ */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.txt-primary   { color: var(--primary);   font-weight: bold; }
.txt-secondary { color: var(--secondary); font-weight: bold; }


/* ══════════════════════════════════════
   26. DORES CORPORATIVAS
══════════════════════════════════════ */
.pains-section { background: var(--bg-section); }

.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s;
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 95, 130, 0.2);
}
.pain-card:hover::before { opacity: 1; }

.pain-card-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.pain-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
}
.pain-card-stat {
  margin-top: 4px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-family: 'Outfit', sans-serif;
}
.pain-card-stat span {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 2px;
}

/* Ponte narrativa */
.pains-bridge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pains-bridge-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 36px;
}
.pains-bridge-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 10px;
}
.pains-bridge-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 620px;
}
.pains-bridge-text strong { color: var(--dark); font-weight: 600; }

@media (max-width: 860px) {
  .pains-grid { grid-template-columns: 1fr 1fr; }
  .pains-bridge-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
}
@media (max-width: 520px) {
  .pains-grid { grid-template-columns: 1fr; }
}
