/**
 * IronUp – Identidade visual do app (light UI, roxo primário)
 * Nível de acabamento: referência Befit – hierarquia clara, ritmo, storytelling.
 * Performance: ícones inline SVG (sem lib externa), imagens com loading="lazy" onde adequado.
 */
:root {
  /* Base clara */
  --bg-page: #fafafa;
  --bg-page-alt: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f4ff;
  --bg-soft: #f0efff;

  /* Texto */
  --text-primary: #1a1a1f;
  --text-secondary: #5c5c6a;
  --text-muted: #8e8e99;

  /* Roxo IronUp (app) */
  --primary: #7B6CFF;
  --primary-hover: #6F5BFF;
  --primary-light: #8A7CFF;
  --primary-soft: rgba(123, 108, 255, 0.14);
  --primary-soft-strong: rgba(123, 108, 255, 0.2);
  --gradient-purple: linear-gradient(135deg, #9B7CFF 0%, #7B6CFF 50%, #6F5BFF 100%);

  /* UI */
  --border: #e8e8ec;
  --border-focus: #d0cee0;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(123, 108, 255, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
  --font-head: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Escala tipográfica (headline domina, subtexto leve, contraste forte) */
  --text-hero: clamp(3.25rem, 8.5vw, 5rem);
  --text-hero-sub: 1.05rem;
  --text-h1: clamp(1.875rem, 4.5vw, 2.75rem);
  --text-h2: clamp(1.5rem, 3.5vw, 2rem);
  --text-body: 1.0625rem;
  --text-body-sm: 0.9375rem;
  --text-caption: 0.875rem;
  --font-weight-head: 800;
  --font-weight-sub: 500;
  --font-weight-body: 400;

  --container: min(100% - 2.5rem, 1140px);
  --section-padding: 5rem;
  --section-padding-tight: 3.5rem;
}

/* ========== Animações e impacto visual ========== */
@media (prefers-reduced-motion: no-preference) {
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(28px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes heroGradient {
    0%, 100% { opacity: 0.6; transform: scale(1) translate(0, 0); }
    50% { opacity: 1; transform: scale(1.05) translate(2%, -2%); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  @keyframes pulse-soft {
    0%, 100% { box-shadow: 0 8px 24px rgba(123, 108, 255, 0.12); }
    50% { box-shadow: 0 12px 32px rgba(123, 108, 255, 0.2); }
  }

  /* Revelar ao scroll */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* Atraso em sequência (stagger) */
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* Hero: entrada em sequência na carga */
  .hero .hero-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .hero .hero-reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .hero .hero-reveal.hero-delay-1 { transition-delay: 0.1s; }
  .hero .hero-reveal.hero-delay-2 { transition-delay: 0.2s; }
  .hero .hero-reveal.hero-delay-3 { transition-delay: 0.25s; }
  .hero .hero-reveal.hero-delay-4 { transition-delay: 0.35s; }
  .hero .hero-reveal.hero-delay-5 { transition-delay: 0.45s; }
  .hero .hero-reveal.hero-delay-6 { transition-delay: 0.55s; }
  .hero .hero-reveal.hero-delay-7 { transition-delay: 0.7s; }

  /* Mockup hero: leve flutuação */
  .hero-mockup .placeholder-img,
  .hero-mockup img,
  .hero-mockup .hero-app-mockup {
    animation: float 5s ease-in-out infinite;
  }

  /* Gradiente do hero com leve movimento */
  .hero::before {
    animation: heroGradient 12s ease-in-out infinite;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .hero .hero-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero::before { animation: none; }
  .hero-mockup .placeholder-img,
  .hero-mockup img,
  .hero-mockup .hero-app-mockup { animation: none; }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--primary-hover);
}

/* Navbar – mais limpo e espaçado */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  min-height: 72px;
  padding: 0.9rem 0;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 0.65rem 0;
}
.navbar .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.navbar-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.navbar-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text-primary) !important;
}
@media (min-width: 992px) {
  .navbar-collapse {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navbar-nav--center {
    margin-left: 0;
    margin-right: 0;
    margin-inline: auto;
  }
  .navbar-right {
    margin-left: auto;
  }
}
.lang-flags {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.lang-flag-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.lang-flag-btn:hover {
  opacity: 1;
  background: var(--bg-card);
  border-color: var(--border);
}
.lang-flag-btn.active {
  opacity: 1;
  background: var(--primary-soft);
  border-color: rgba(123, 108, 255, 0.5);
}
.lang-flags .flag-svg svg,
.lang-flag-wrap .flag-svg svg {
  width: 20px;
  height: 16px;
  display: block;
}

/* Dropdown idioma (help/blog): apenas bandeiras, sem texto PT/EN */
.lang-switcher .lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 1.35rem;
  line-height: 1;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lang-switcher .lang-btn:hover {
  background: var(--bg-card);
  border-color: rgba(123, 108, 255, 0.3);
}
.lang-switcher .lang-btn::after {
  margin-left: 4px;
}
.lang-switcher .lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  min-width: 48px;
}
.lang-switcher .lang-option.active {
  background: var(--primary-soft);
}
.lang-switcher .lang-code,
.lang-switcher .lang-name,
.lang-switcher .lang-left {
  display: none !important;
}

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
  background: var(--primary-soft);
  transform: translateY(-1px);
}
.navbar-nav .nav-link:hover::after {
  width: 80%;
}
.navbar .btn-cta {
  background: var(--primary);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.625rem 1.25rem;
  border-radius: 10px;
  border: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s ease, box-shadow 0.2s;
}
.navbar .btn-cta:hover {
  background: var(--primary-hover);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.dropdown-menu {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: var(--shadow-md);
}
.dropdown-item {
  color: var(--text-primary);
  border-radius: 8px;
}
.dropdown-item:hover {
  background: var(--primary-soft);
  color: var(--primary);
}
.navbar-toggler {
  border-color: var(--border);
  padding: 0.5rem;
}
.navbar-toggler-icon {
  /* ícone escuro no fundo claro */
}

/* Sections – ritmo e respiração (evitar buracos gigantes) */
section {
  padding: var(--section-padding) 0;
}
section.section-tight {
  padding-top: var(--section-padding-tight);
  padding-bottom: var(--section-padding-tight);
}
section.section-alt {
  background: var(--bg-page);
}
.section-title {
  font-family: var(--font-head);
  font-size: var(--text-h1);
  font-weight: var(--font-weight-head);
  margin-bottom: 0.875rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.section-subtitle {
  font-size: 1.0625rem;
  font-weight: var(--font-weight-body);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.75rem;
}
.section-future-icon {
  color: var(--primary);
  margin-bottom: 1rem;
  display: inline-flex;
  opacity: 0.9;
}
.section-future-icon svg {
  display: block;
}

/* Hero – impacto visual (headline gigante, subheadline leve, shapes roxos, profundidade) */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-page-alt);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 75%;
  height: 120%;
  background: radial-gradient(ellipse, var(--primary-soft) 0%, transparent 58%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(123, 108, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  max-width: min(100% - 2.5rem, 1240px);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-sub);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  padding: 0.6rem 1.15rem;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: var(--text-hero);
  font-weight: var(--font-weight-head);
  line-height: 1.08;
  margin-bottom: 1.75rem;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  position: relative;
  display: block;
  max-width: 16ch;
  text-wrap: balance;
}
/* Linha decorativa premium sob o headline */
.hero-headline::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero.visible .hero-headline::after,
.hero-headline.visible::after {
  width: 100px;
}
@media (prefers-reduced-motion: reduce) {
  .hero-headline::after { transition: none; }
  .card-feature,
  .card-feature::before,
  .card-feature .card-icon { transition-duration: 0.1s; }
  .navbar,
  .navbar-scrolled,
  .navbar-nav .nav-link,
  .navbar-nav .nav-link::after { transition-duration: 0.15s; }
}
.hero-subheadline {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 56ch;
  margin-bottom: 2.25rem;
}
/* CTA Hero – destaque premium: glow e elevação no hover */
.hero .btn-google-play-badge {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.25s ease;
  border: 1px solid transparent;
}
.hero .btn-google-play-badge--hero {
  padding: 12px 22px 12px 18px;
  border-radius: 12px;
  min-height: 60px;
}
.hero .btn-google-play-badge--hero .badge-icon img {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
}
.hero .btn-google-play-badge--hero .badge-line1 {
  font-size: 13px;
}
.hero .btn-google-play-badge--hero .badge-line2 {
  font-size: 20px;
  font-weight: 700;
}
.hero .btn-google-play-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 32px rgba(123, 108, 255, 0.25);
}
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  border-radius: 10px;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-play:hover {
  background: var(--primary-hover);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-play svg {
  width: 22px;
  height: 22px;
}
.hero-mockup {
  margin-top: 3.5rem;
  text-align: center;
}
.hero-mockup img {
  max-height: 540px;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

/* Hero: mockup celular com “tela” do app visível */
.hero-app-mockup {
  min-height: 280px;
  max-width: 280px;
  margin: 0 auto;
  background: linear-gradient(160deg, #1a1a24 0%, #252532 100%);
  border: 3px solid var(--border);
  border-radius: 32px;
  box-shadow: 0 24px 56px rgba(123, 108, 255, 0.2), 0 0 0 1px rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.hero-app-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}
.hero-app-mockup .mockup-screen {
  width: 100%;
  flex: 1;
  min-height: 220px;
  padding: 28px 16px 16px;
  background: linear-gradient(180deg, rgba(123, 108, 255, 0.18) 0%, rgba(123, 108, 255, 0.06) 100%);
  border-radius: 0 0 29px 29px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-app-mockup .mockup-screen .mockup-line {
  height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.2);
  width: 100%;
}
.hero-app-mockup .mockup-screen .mockup-line:nth-child(1) { width: 60%; }
.hero-app-mockup .mockup-screen .mockup-line:nth-child(2) { width: 90%; }
.hero-app-mockup .mockup-screen .mockup-line:nth-child(3) { width: 75%; }
.hero-app-mockup .mockup-screen .mockup-line:nth-child(4) { width: 85%; }
.hero-app-mockup .mockup-screen .mockup-bar {
  margin-top: 8px;
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 48px;
}
.hero-app-mockup .mockup-screen .mockup-bar span {
  width: 20%;
  min-height: 12px;
  border-radius: 4px;
  background: var(--primary);
  opacity: 0.85;
}
.hero-app-mockup .mockup-screen .mockup-bar span:nth-child(1) { height: 35%; }
.hero-app-mockup .mockup-screen .mockup-bar span:nth-child(2) { height: 70%; }
.hero-app-mockup .mockup-screen .mockup-bar span:nth-child(3) { height: 45%; }
.hero-app-mockup .mockup-screen .mockup-bar span:nth-child(4) { height: 85%; }
.hero-app-mockup .mockup-screen .mockup-bar span:nth-child(5) { height: 55%; }
.hero-app-mockup--desktop .mockup-screen .mockup-bar { height: 64px; }
.hero-app-mockup--desktop .mockup-screen .mockup-bar span { min-height: 16px; }
.hero-app-mockup .mockup-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 8px;
}
.hero-app-mockup--desktop {
  min-height: 420px;
  max-width: 320px;
  margin-left: auto;
}
.hero-app-mockup--desktop .mockup-screen { min-height: 340px; }
.hero-app-mockup--desktop .mockup-screen .mockup-line { height: 12px; }
.hero-app-mockup--desktop .mockup-screen .mockup-bar span { min-height: 32px; }

/* Header + Hero v2 (acabamento premium estilo produto) */
@media (min-width: 992px) {
  .navbar-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
  }
  .navbar-collapse {
    justify-self: center;
    width: 100%;
  }
  .navbar-nav {
    gap: 0.25rem;
  }
}
.navbar-brand {
  font-size: 1.72rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.navbar-right {
  gap: 0.65rem !important;
}
.btn-header-primary {
  padding: 0.8rem 1.15rem;
  border-radius: 12px;
  font-size: 0.92rem;
  box-shadow: 0 8px 20px rgba(123, 108, 255, 0.22);
}

.hero {
  min-height: 92vh;
  padding-top: 7rem;
  padding-bottom: 4.5rem;
}
.hero-headline {
  font-size: clamp(3rem, 7.5vw, 4.6rem);
  line-height: 1.04;
  max-width: 14.5ch;
}
.hero-subheadline {
  font-size: clamp(1.02rem, 2.1vw, 1.26rem);
  max-width: 44ch;
}
html[lang='es'] .hero-headline {
  max-width: 16.5ch;
  font-size: clamp(2.8rem, 6.8vw, 4.2rem);
  letter-spacing: -0.032em;
}
.hero-social-proof {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #e6e3f7;
  background: #fff;
  box-shadow: 0 4px 16px rgba(123, 108, 255, 0.08);
}
.proof-avatars {
  display: inline-flex;
  margin-right: 0.2rem;
}
.proof-avatars span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #9b7cff, #6f5bff);
}
.proof-avatars span:first-child {
  margin-left: 0;
}
.proof-star {
  color: #f6b600;
  display: inline-flex;
  align-items: center;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-metrics {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.hero-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #e8e8ef;
  background: #fff;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.hero-metric strong {
  color: var(--primary);
  font-size: 0.86rem;
  line-height: 1;
}
.hero-metric span {
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
}

.hero-phone-stack {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone {
  position: absolute;
  width: min(46vw, 280px);
  aspect-ratio: 9 / 19.5;
  border-radius: 34px;
  overflow: hidden;
  border: 8px solid #1a1a1f;
  background: #111;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), 0 0 44px rgba(123, 108, 255, 0.2);
}
.hero-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-phone::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  z-index: 2;
}
.hero-phone--primary {
  transform: translateX(54px) rotate(10deg);
  z-index: 2;
}
.hero-phone--secondary {
  transform: translateX(-68px) translateY(-22px) rotate(-13deg) scale(0.92);
  z-index: 1;
  opacity: 0.95;
}
.hero-phone-stack--mobile {
  min-height: 0;
}
.hero-phone-stack--mobile .hero-phone {
  position: relative;
  width: min(72vw, 290px);
  transform: none;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 6.25rem;
    padding-bottom: 3.25rem;
  }
  .hero-headline {
    max-width: 16ch;
    font-size: clamp(2.15rem, 9.4vw, 3.35rem);
  }
  .hero-subheadline {
    max-width: 100%;
  }
  html[lang='es'] .hero-headline {
    max-width: 17ch;
    font-size: clamp(2rem, 8.8vw, 3.1rem);
  }
  .hero-cta-row {
    gap: 0.55rem;
  }
  .hero-cta-row .btn-google-play-badge {
    width: 100%;
    justify-content: center;
  }
}

/* Seção: Para quem é (foto homem/mulher) – emocional/visual: imagem em destaque + headline curta + 1 frase + CTA */
.section-audience {
  background: linear-gradient(180deg, rgba(123, 108, 255, 0.06), transparent 55%);
}
.audience-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: 20px;
  background: rgba(123, 108, 255, 0.04);
  border: 1px solid rgba(123, 108, 255, 0.16);
}
@media (min-width: 992px) {
  .audience-block {
    grid-template-columns: minmax(360px, 520px) 1fr;
    gap: 2.5rem;
    padding: 1.75rem;
  }
}
.audience-headline {
  font-family: var(--font-head);
  font-size: var(--text-h1);
  font-weight: var(--font-weight-head);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.audience-tagline {
  font-size: var(--text-body);
  font-weight: var(--font-weight-body);
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.audience-content {
  text-align: left;
}
.audience-bullets {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.audience-bullets li {
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.55;
  position: relative;
  padding-left: 1.2rem;
}
.audience-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.audience-badge {
  margin-left: 0.5rem;
}
.audience-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.audience-img-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 0 60px rgba(123, 108, 255, 0.2);
}
.audience-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  background: transparent;
  position: relative;
  z-index: 1;
}

/* Seção Evolução Comprovada – pipeline horizontal (4 etapas + linha + ícones) */
.evolution-pipeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  .evolution-pipeline {
    gap: 0 0.25rem;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}
.evolution-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.evolution-step.visible {
  opacity: 1;
  transform: translateY(0);
}
.evolution-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  border: 2px solid rgba(123, 108, 255, 0.25);
  box-shadow: 0 0 0 0 rgba(123, 108, 255, 0.15), 0 4px 12px rgba(123, 108, 255, 0.12);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.3s ease;
}
.evolution-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.evolution-step:hover .evolution-icon {
  background: rgba(123, 108, 255, 0.2);
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(123, 108, 255, 0.25), 0 6px 16px rgba(123, 108, 255, 0.15);
}
.evolution-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  max-width: 100px;
}
@media (min-width: 768px) {
  .evolution-label {
    font-size: 0.875rem;
    max-width: 120px;
  }
}
.evolution-connector {
  display: none;
  flex: 1;
  min-width: 24px;
  max-width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), rgba(123, 108, 255, 0.4));
  border-radius: 1px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.evolution-connector.visible {
  opacity: 1;
  transform: scaleX(1);
}
@media (min-width: 768px) {
  .evolution-connector {
    display: block;
  }
}

/* Cards – destaque visual com barra lateral */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }
}
.card-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.24s ease, transform 0.24s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.card-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  opacity: 0;
  transform: scaleY(0.6);
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.card-feature:hover {
  background: var(--bg-card-hover);
  border-color: rgba(123, 108, 255, 0.4);
  box-shadow: 0 12px 40px rgba(123, 108, 255, 0.18), 0 0 0 1px rgba(123, 108, 255, 0.1);
  transform: translateY(-6px);
}
.card-feature:hover::before {
  opacity: 1;
  transform: scaleY(1);
}
.card-feature .card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.35rem;
  color: var(--primary);
  flex-shrink: 0;
  background: var(--primary-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.card-feature:hover .card-icon {
  transform: scale(1.06);
  background: rgba(123, 108, 255, 0.2);
  box-shadow: 0 4px 16px rgba(123, 108, 255, 0.25);
}
.card-feature .card-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.75;
}
.card-feature h3 {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.card-feature p {
  font-size: 0.9375rem;
  font-weight: var(--font-weight-body);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* Stats row – contador animado (Tech86) */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
}
.stat-item {
  text-align: center;
  min-width: 180px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: var(--font-weight-sub);
}
.feature-bullets {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.feature-bullets li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.15rem;
}
.feature-bullets li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0.5rem;
}
.feature-pro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: center;
}
.feature-pro-content {
  max-width: 620px;
}
.feature-pro-media {
  display: flex;
}
.feature-pro-content .section-title {
  max-width: 15ch;
}
.feature-pro-content .section-subtitle,
.feature-pro-content .text-secondary {
  max-width: 52ch;
}
.feature-pro-content .section-subtitle {
  margin-bottom: 2rem;
}
.section-visual--plans {
  min-height: 360px;
  border-radius: 24px;
  border: 1px solid rgba(123, 108, 255, 0.26);
  box-shadow: 0 18px 44px rgba(123, 108, 255, 0.16);
  background: radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.6), rgba(123, 108, 255, 0.06) 58%);
}
.section-visual--plans .section-visual__img {
  object-fit: contain;
  padding: 0.8rem;
}
.feature-pro-float {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  border-radius: 12px;
  border: 1px solid rgba(123, 108, 255, 0.28);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(123, 108, 255, 0.17);
  padding: 0.45rem 0.7rem;
}
.feature-pro-float strong {
  font-size: 0.78rem;
  line-height: 1.1;
  color: var(--primary);
}
.feature-pro-float span {
  font-size: 0.72rem;
  line-height: 1.2;
  color: var(--text-secondary);
}
.feature-pro-float--one {
  top: 0.9rem;
  left: 0.9rem;
}
.feature-pro-float--two {
  bottom: 0.9rem;
  left: 0.9rem;
}
@media (min-width: 992px) {
  .feature-pro-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 520px);
    gap: 2rem;
    align-items: stretch;
  }
  .feature-pro-media {
    height: 100%;
  }
  .section-visual--plans {
    min-height: 100%;
    height: 100%;
  }
  .section-visual--plans .section-visual__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  .section-visual--plans {
    min-height: 300px;
  }
}
.exercise-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}
.exercise-tags span {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(123, 108, 255, 0.26);
  background: rgba(123, 108, 255, 0.08);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.kpi-chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.kpi-chips span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card-hover);
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
}
.future-bullet {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(123, 108, 255, 0.1);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Seção narrativa compacta (imagem central + mensagens) */
.section-story-flow {
  background: linear-gradient(180deg, rgba(123, 108, 255, 0.07), rgba(123, 108, 255, 0.02));
}
.story-flow-layout {
  margin-top: 2.2rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: center;
}
.story-col {
  display: grid;
  gap: 0.9rem;
}
.story-message {
  position: relative;
  border: 1px solid rgba(123, 108, 255, 0.2);
  border-radius: 18px;
  background: #fff;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 30px rgba(123, 108, 255, 0.1);
}
.story-message h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  margin-bottom: 0.45rem;
}
.story-message p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}
.story-center {
  display: flex;
  justify-content: center;
}
.story-image-wrap {
  position: relative;
  width: min(68vw, 460px);
  border-radius: 24px;
  padding: 0.8rem;
  border: 1px solid rgba(123, 108, 255, 0.24);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 244, 255, 0.95));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.12), 0 0 56px rgba(123, 108, 255, 0.18);
}
.story-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.story-flow-cta {
  margin-top: 1.5rem;
  border: 1px solid rgba(123, 108, 255, 0.22);
  border-radius: 20px;
  background: #fff;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 14px 36px rgba(123, 108, 255, 0.12);
}
.story-flow-cta h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-head);
  font-size: clamp(1.24rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--text-primary);
}
.story-flow-cta-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .story-flow-layout {
    grid-template-columns: minmax(210px, 1fr) minmax(340px, 480px) minmax(210px, 1fr);
    gap: 1rem 1.5rem;
  }
  .story-col--left .story-message:nth-child(1) { margin-right: 0.8rem; }
  .story-col--left .story-message:nth-child(2) { margin-left: 1rem; }
  .story-col--right .story-message:nth-child(1) { margin-left: 0.8rem; }
  .story-col--right .story-message:nth-child(2) { margin-right: 1rem; }
  .story-message::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    height: 2px;
    background: linear-gradient(90deg, rgba(123, 108, 255, 0.55), rgba(123, 108, 255, 0.15));
  }
  .story-col--left .story-message::after {
    right: -14px;
  }
  .story-col--right .story-message::after {
    left: -14px;
    transform: rotate(180deg);
  }
}
@media (max-width: 991.98px) {
  .story-image-wrap {
    width: min(86vw, 420px);
  }
  .story-flow-cta {
    padding: 1rem 0.85rem;
  }
  .story-flow-cta-row .btn-google-play-badge {
    width: 100%;
    justify-content: center;
  }
}

/* Bloco CTA meio – gradiente roxo, shapes, impacto */
.cta-block {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, rgba(123, 108, 255, 0.12) 0%, var(--bg-soft) 40%, rgba(123, 108, 255, 0.06) 100%);
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(123, 108, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(123, 108, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-block .section-title {
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.cta-block .section-subtitle {
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-block .btn-google-play-badge {
  position: relative;
  z-index: 1;
}

/* Depoimentos – showcase em movimento (Tech86 + Befit) */
.section-reviews {
  background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-soft) 30%, var(--bg-page) 100%);
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  overflow: hidden;
}
.section-title--reviews {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-subtitle--reviews {
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Header: headline + subtitle (entrada com stagger via GSAP) */
.reviews-header {
  margin-bottom: 2.5rem;
}

/* Showcase: duas pistas com scroll infinito */
.reviews-showcase {
  margin-top: 1rem;
}
.reviews-track {
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}
.reviews-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.reviews-track--left::after {
  right: 0;
  background: linear-gradient(to right, transparent, var(--bg-page));
}
.reviews-track--right::after {
  left: 0;
  background: linear-gradient(to left, transparent, var(--bg-page));
}
.reviews-track:last-child {
  margin-bottom: 0;
}
.reviews-track-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}
.reviews-track--left .reviews-track-inner {
  animation: reviewsScrollLeft 45s linear infinite;
}
.reviews-track--right .reviews-track-inner {
  animation: reviewsScrollRight 50s linear infinite;
}
.reviews-track:hover .reviews-track-inner {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track--left .reviews-track-inner,
  .reviews-track--right .reviews-track-inner {
    animation: none;
  }
}

@keyframes reviewsScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes reviewsScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Card: largura fixa para o scroll, sombra soft, ícone aspas, glow no hover */
.reviews-track .review-card {
  flex: 0 0 min(320px, 85vw);
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
  position: relative;
}
.reviews-track .review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(123, 108, 255, 0.2);
  border-color: rgba(123, 108, 255, 0.35);
}

.review-quote-icon {
  position: absolute;
  top: 0.875rem;
  left: 1.15rem;
  color: var(--primary-soft);
  z-index: 0;
  line-height: 1;
}
.review-quote-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.reviews-track .review-card .review-stars {
  position: relative;
  z-index: 1;
}
.reviews-track .review-card .review-text,
.reviews-track .review-card .review-footer {
  position: relative;
  z-index: 1;
}

/* Grid estático (fallback / não usado no showcase) */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
  position: relative;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(123, 108, 255, 0.14);
  border-color: rgba(123, 108, 255, 0.25);
}

.review-quote {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--primary-soft);
  font-family: Georgia, serif;
}

.review-card .review-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.review-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.review-card p.review-text {
  font-style: normal;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.review-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--primary);
  flex-shrink: 0;
}

.review-card .author {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  display: block;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.blog-card:hover {
  border-color: rgba(123, 108, 255, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(123, 108, 255, 0.18);
  color: inherit;
}
.blog-card .thumb {
  transition: transform 0.4s ease, background 0.2s;
  height: 160px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2.5rem;
}
.blog-card:hover .thumb {
  transform: scale(1.02);
  background: rgba(123, 108, 255, 0.08);
}
.blog-card .thumb.thumb-icon {
  font-size: 0;
}
.blog-card .thumb.thumb-icon svg {
  color: var(--primary);
  display: block;
}
.blog-card .body {
  padding: 1.25rem;
}
.blog-card .category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.blog-card:hover h3 {
  text-decoration-color: rgba(123, 108, 255, 0.85);
}
.blog-card .snippet {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
}
.blog-card .author {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* FAQ Accordion – nível Cyberout: cards com borda/glow, numeração, chevron em círculo, hover e open state */
.faq-accordion {
  counter-reset: faq;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  counter-increment: faq;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(123, 108, 255, 0.06);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.faq-accordion .accordion-item:hover {
  border-color: rgba(123, 108, 255, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(123, 108, 255, 0.12), 0 0 24px rgba(123, 108, 255, 0.08);
  transform: translateX(4px);
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(123, 108, 255, 0.4);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(123, 108, 255, 0.18), 0 0 28px rgba(123, 108, 255, 0.12);
}
.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border: none !important;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease;
  position: relative;
}
.faq-accordion .accordion-button::before {
  content: counter(faq, decimal-leading-zero) " – ";
  color: var(--primary);
  font-weight: 700;
  margin-right: 0.35rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--bg-card-hover) !important;
  color: var(--primary) !important;
  border-bottom-color: var(--border) !important;
}
.faq-accordion .accordion-button::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 32px;
  height: 32px;
  margin: 0;
  background-color: rgba(123, 108, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237B6CFF' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-size: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(90deg);
  background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-button:hover::after {
  background-color: rgba(123, 108, 255, 0.22);
}
.faq-accordion .accordion-button:not(.collapsed):hover::after {
  background-color: var(--primary-hover);
}
.faq-accordion .accordion-collapse {
  transition: height 0.35s ease-out;
}
.faq-accordion .accordion-collapse.collapsing {
  transition: height 0.35s ease-out;
}
.faq-accordion .accordion-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  background: var(--bg-card);
  border: none;
  border-top: none;
  border-radius: 0;
}
.faq-help-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.faq-help-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* CTA final – último impacto: gradiente forte, shapes, animação */
#cta-final {
  position: relative;
  overflow: hidden;
}
.cta-final {
  text-align: center;
  padding: 5.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(123, 108, 255, 0.18) 0%, var(--primary-soft) 35%, var(--bg-soft) 70%, transparent 100%);
  border-radius: 20px;
  position: relative;
  border: 1px solid rgba(123, 108, 255, 0.2);
  z-index: 1;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(123, 108, 255, 0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: ctaGlow 18s ease-in-out infinite;
}
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -15%;
  width: 45%;
  height: 90%;
  background: radial-gradient(circle, rgba(123, 108, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.85; transform: scale(1) translate(0, 0); }
  50% { opacity: 1; transform: scale(1.08) translate(-3%, -2%); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-final::before { animation: none; opacity: 0.95; }
}
.cta-final .section-title {
  margin-bottom: 1.75rem;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}
.cta-final a {
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  position: relative;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(123, 108, 255, 0.24);
  background: linear-gradient(180deg, rgba(123, 108, 255, 0.06) 0%, var(--bg-page-alt) 26%);
}
.footer::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1120px, 92%);
  height: 2px;
  background: linear-gradient(90deg, rgba(123, 108, 255, 0), rgba(123, 108, 255, 0.7), rgba(123, 108, 255, 0));
}
.footer::after {
  content: '';
  position: absolute;
  inset: 0 auto auto 50%;
  transform: translateX(-50%);
  width: min(1120px, 94%);
  height: 120px;
  pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(123, 108, 255, 0.14), rgba(123, 108, 255, 0) 70%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 0.625rem;
}
.footer a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer a:hover {
  color: var(--primary);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Util */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 2rem; }

/* Text secondary (Bootstrap override em páginas internas) */
.text-secondary {
  color: var(--text-secondary) !important;
}

/* Placeholder image */
.placeholder-img {
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

/* Bloco visual (substitui placeholder: gradiente + ícone ou gráfico) */
.section-visual {
  min-height: 260px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.section-visual__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(123, 108, 255, 0.12) 0%, var(--bg-soft) 50%, rgba(123, 108, 255, 0.06) 100%);
}
.section-visual__icon {
  position: relative;
  z-index: 1;
  color: var(--primary);
  opacity: 0.9;
}
.section-visual__icon svg {
  display: block;
}
.section-visual__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-visual--library {
  margin-bottom: 1.25rem;
  max-width: 840px;
  min-height: 260px;
}
.section-visual--progress .section-visual__chart {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
  padding: 0 1rem;
}
.section-visual--progress .bar {
  width: 24px;
  min-height: 20px;
  height: var(--h);
  max-height: 100%;
  background: linear-gradient(to top, var(--primary), rgba(123, 108, 255, 0.5));
  border-radius: 6px 6px 0 0;
  animation: barGrow 1.2s ease-out backwards;
  animation-delay: var(--d);
}
@keyframes barGrow {
  from { height: 0; opacity: 0.6; }
  to { height: var(--h); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .section-visual--progress .bar { animation: none; }
}
