/* =========================================
   GDVET 2026 · Design System Premium Editorial
   ========================================= */

:root {
  /* Cores · Light Mode (default) */
  --navy-900: #0B1F3A;
  --navy-800: #0E2647;
  --navy-700: #163058;
  --navy-50:  #F5F7FA;
  --ink: #0A1424;
  --ink-soft: #1F2D44;
  --muted: #6B7A90;
  --line: #E3E8F0;

  --teal: #14C39A;
  --teal-soft: #2BDFB3;
  --teal-dark: #0F8F71;
  --amber: #F7B538;
  --danger: #E1474B;
  --success: #2BB673;

  /* Cores temáticas por curso (ecossistema GDVet) */
  --c-gdav:   #F2811D;
  --c-gdav-2: #FF9D40;
  --c-gdetiv: #DC2A2E;
  --c-gdetiv-2: #F2484C;
  --c-ssa:    #2563EB;
  --c-ssa-2:  #4D85F2;
  --c-ccd:    #E89A0C;
  --c-ccd-2:  #F5B638;

  --bg: #FFFFFF;
  --bg-alt: #F5F7FA;
  --bg-card: #FFFFFF;
  --bg-dark: #0B1F3A;
  --text: #0A1424;
  --text-muted: #6B7A90;
  --text-inverse: #FFFFFF;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(11, 31, 58, 0.06);
  --shadow:    0 4px 16px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 20px 50px -12px rgba(11, 31, 58, 0.18);
  --shadow-teal: 0 12px 32px -8px rgba(20, 195, 154, 0.35);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1200px;
  --container-narrow: 800px;

  /* Form · Light (default) */
  --form-label: var(--ink-soft);
  --form-text: var(--text);
  --form-placeholder: var(--muted);
  --form-bg: rgba(0, 0, 0, 0.03);
  --form-border: rgba(0, 0, 0, 0.12);
  --form-card-bg: rgba(0, 0, 0, 0.02);
  --form-card-border: var(--line);
}

[data-theme="dark"] {
  --bg: #0B1F3A;
  --bg-alt: #0E2647;
  --bg-card: #122E54;
  --bg-dark: #050E1C;
  --text: #F5F7FA;
  --text-muted: #97A6BD;
  --text-inverse: #0A1424;
  --line: rgba(255, 255, 255, 0.08);
  --ink: #FFFFFF;

  /* Form · Dark */
  --form-label: rgba(255, 255, 255, 0.85);
  --form-text: #FFFFFF;
  --form-placeholder: rgba(255, 255, 255, 0.4);
  --form-bg: rgba(255, 255, 255, 0.06);
  --form-border: rgba(255, 255, 255, 0.12);
  --form-card-bg: rgba(255, 255, 255, 0.04);
  --form-card-border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.3s ease, color 0.3s ease;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: var(--container-narrow); }

/* ========== TIPOGRAFIA ========== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

.h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.h2--light { color: var(--text-inverse); }
[data-theme="dark"] .h2--light { color: var(--text); }

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 12px;
}

.kicker--light { color: var(--teal-soft); }

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-top: 12px;
}

.lead--light { color: rgba(245, 247, 250, 0.7); }
[data-theme="dark"] .lead--light { color: var(--text-muted); }

/* ========== NAV GLASS ========== */

.nav-glass {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 100px;
  padding: 10px 10px 10px 24px;
  box-shadow: var(--shadow);
}

[data-theme="dark"] .nav-glass {
  background: rgba(11, 31, 58, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(0.95);
}

[data-theme="light"] .nav-glass .logo-img {
  filter: brightness(0) saturate(100%);
}

[data-theme="light"] .footer .logo-img {
  filter: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-action-mobile { display: none; }

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s;
}

.theme-toggle:hover { background: var(--bg-alt); color: var(--text); }

.icon-sun, .icon-moon { display: none; }
[data-theme="light"] .icon-moon { display: block; }
[data-theme="dark"] .icon-sun { display: block; }

/* ========== SELETOR DE IDIOMA ========== */

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 100px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}

[data-theme="dark"] .lang-switch {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  border-radius: 100px;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.lang-switch a:hover { opacity: 0.9; transform: scale(1.05); }

.lang-switch a.is-active {
  opacity: 1;
  background: var(--bg-card);
  box-shadow: 0 1px 3px rgba(11, 31, 58, 0.12);
}

[data-theme="dark"] .lang-switch a.is-active {
  background: rgba(20, 195, 154, 0.18);
  box-shadow: inset 0 0 0 1px rgba(20, 195, 154, 0.4);
}

.lang-flag {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  overflow: hidden;
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.lang-flag svg { display: block; width: 100%; height: 100%; }

@media (max-width: 640px) {
  .lang-switch { padding: 2px; gap: 2px; }
  .lang-switch a { width: 32px; height: 26px; }
  .lang-flag { width: 22px; height: 16px; }
}

/* ========== MENU MOBILE: HAMBURGER + OVERLAY ========== */

.nav-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 12px 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-menu-toggle:hover { background: var(--bg-alt); }

.nav-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-panel {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  z-index: 200;
  padding: 24px 24px 32px;
  padding-top: max(24px, env(safe-area-inset-top));
  padding-bottom: max(32px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* O atributo HTML hidden deve esconder mesmo com display:flex acima */
.nav-mobile-panel[hidden] { display: none; }

.nav-mobile-panel.is-open {
  transform: translateY(0);
  opacity: 1;
}

[data-theme="dark"] .nav-mobile-panel { background: var(--bg-dark); }

.nav-mobile-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.nav-mobile-close:hover { background: var(--bg-alt); }

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.nav-mobile-links a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 8px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}

.nav-mobile-links a:hover { color: var(--teal); }

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
}

.nav-mobile-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-mobile-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 52px;
  font-size: 1rem;
}

body[data-menu-open] {
  overflow: hidden;
}

@media (max-width: 900px) {
  .nav-menu-toggle { display: flex; }
  .nav-glass .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-inner { gap: 8px; }
  .nav-glass { padding: 8px 12px 8px 16px; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn-primary { font-size: 0.85rem; padding: 0 14px; height: 38px; }
}

@media (min-width: 901px) {
  .nav-mobile-panel { display: none !important; }
}

/* ========== BOTÕES ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  height: 44px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-lg {
  height: 56px;
  padding: 0 28px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-primary {
  background: var(--teal);
  color: #042B22;
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  background: var(--teal-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(20, 195, 154, 0.55);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: rgba(11, 31, 58, 0.06);
  color: var(--text);
  border: 1px solid rgba(11, 31, 58, 0.12);
}

[data-theme="dark"] .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover { background: rgba(11, 31, 58, 0.1); }
[data-theme="dark"] .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover { color: var(--text); }

/* ========== HERO ========== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(20, 195, 154, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(11, 31, 58, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(20, 195, 154, 0.04) 0%, transparent 50%);
}

[data-theme="dark"] .hero-gradient {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(20, 195, 154, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(20, 195, 154, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(247, 181, 56, 0.03) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

[data-theme="dark"] .hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(20, 195, 154, 0.1);
  border: 1px solid rgba(20, 195, 154, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--teal-dark);
  margin-bottom: 32px;
}

[data-theme="dark"] .eyebrow { color: var(--teal-soft); }

.eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(20, 195, 154, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
  position: relative;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 24px auto 40px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.trust-item strong {
  color: var(--text);
  font-weight: 600;
}

.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ========== SECTIONS ========== */

.section {
  padding: 96px 0;
}

.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: var(--text-inverse); }
[data-theme="dark"] .section--dark { background: var(--bg-dark); }

.section--stats {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--text-inverse);
}

.section-head {
  margin-bottom: 56px;
}

.section-head--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-head--center .lead { margin-left: auto; margin-right: auto; }

/* ========== PERSONAS ========== */

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.persona-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  color: inherit;
}

.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.persona-card--featured {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white;
  border-color: transparent;
}

.persona-card--featured h3,
.persona-card--featured p { color: white; }

.persona-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.persona-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(20, 195, 154, 0.1);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.persona-card--featured .persona-icon {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.persona-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.persona-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.persona-card--featured p { color: rgba(255, 255, 255, 0.85); }

.persona-track {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.track-step {
  background: rgba(11, 31, 58, 0.06);
  padding: 4px 10px;
  border-radius: 6px;
}

.persona-card--featured .track-step {
  background: rgba(255, 255, 255, 0.2);
}

.track-arrow {
  color: var(--text-muted);
  opacity: 0.6;
}

.persona-card--featured .track-arrow { color: white; opacity: 0.8; }

/* ========== BENTO GRID (mobile-first) ========== */

.bento {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(auto, auto);
  gap: 16px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(20, 195, 154, 0.3);
}

/* Card xl mantém a estrutura interna stack no mobile e split em desktop */
.bento-card--xl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.bento-card--md {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .bento-card { padding: 28px; }
  .bento-card--xl { grid-column: span 2; }
}

@media (min-width: 1024px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento-card--xl {
    grid-column: span 4;
    grid-row: span 2;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .bento-card--md { grid-column: span 2; }
  .bento-card--sm { grid-column: span 2; }
}

.bento-card--dark {
  background: linear-gradient(135deg, #0E2647 0%, #163058 100%);
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
}

.bento-card--dark .bento-title,
.bento-card--dark .bento-desc { color: white; }

.bento-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(11, 31, 58, 0.06);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

[data-theme="dark"] .bento-tag {
  background: rgba(255, 255, 255, 0.06);
}

.bento-tag--accent {
  background: rgba(20, 195, 154, 0.12);
  color: var(--teal);
}

.bento-tag--gold {
  background: rgba(247, 181, 56, 0.15);
  color: var(--amber);
}

.bento-tag--neutral {
  background: rgba(11, 31, 58, 0.06);
  color: var(--text-muted);
}

.bento-card--dark .bento-tag--gold {
  background: rgba(247, 181, 56, 0.2);
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.bento-title-sm {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.bento-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.bento-desc-sm {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bento-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.875rem;
}

.bento-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.bento-list svg { color: var(--teal); }

.bento-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.bento-meta-sm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.price {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.bento-card--dark .price { color: rgba(255, 255, 255, 0.7); }
.bento-card--dark .price strong { color: white; }

.price-sm {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.link-arrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s;
}

.link-arrow:hover { letter-spacing: 0.02em; }

.link-arrow--light { color: var(--teal-soft); }

.link-arrow-sm {
  font-size: 1.25rem;
  color: var(--teal);
  text-decoration: none;
  transition: transform 0.2s;
}

.link-arrow-sm:hover { transform: translateX(4px); }

/* Visuais mock dos cards */

.bento-visual {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-screen {
  background: var(--bg-dark);
  border-radius: 12px;
  padding: 12px;
  width: 100%;
  max-width: 340px;
  box-shadow: var(--shadow-lg);
}

.mock-screen-head {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.mock-screen-head .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mock-screen-head .dot--red { background: #FF5F57; }
.mock-screen-head .dot--amber { background: #FFBD2E; }
.mock-screen-head .dot--green { background: #28C940; }

.mock-screen-body { padding: 8px 0; }

.mock-row {
  background: rgba(255, 255, 255, 0.06);
  height: 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.mock-row--lg { width: 70%; height: 12px; background: rgba(20, 195, 154, 0.3); }
.mock-row--md { width: 50%; }

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.mock-tile {
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--teal);
  font-size: 0.75rem;
}

.phone-mockup {
  background: linear-gradient(135deg, #0A1424 0%, #122E54 100%);
  border-radius: 24px;
  padding: 16px 12px;
  margin: 16px 0;
  box-shadow: var(--shadow-lg);
}

.phone-screen {
  background: var(--bg);
  border-radius: 14px;
  padding: 14px;
  color: var(--text);
}

[data-theme="dark"] .phone-screen { background: #122E54; }

.phone-head {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.phone-input {
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.phone-result {
  background: rgba(20, 195, 154, 0.1);
  border-radius: 8px;
  padding: 10px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-label { font-size: 0.6875rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.phone-value { font-family: var(--font-display); font-weight: 600; color: var(--teal); }

.mentor-stack {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 20px;
}

.mentor-count {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  margin-left: -10px;
  border: 2px solid var(--bg-card);
}

.avatar:first-child { margin-left: 0; }

.avatar--1 { background: linear-gradient(135deg, #14C39A, #0F8F71); }
.avatar--2 { background: linear-gradient(135deg, #F7B538, #D89110); }
.avatar--3 { background: linear-gradient(135deg, #6B7AE0, #3E50C7); }
.avatar--g { background: linear-gradient(135deg, #14C39A, #0F8F71); }
.avatar--p { background: linear-gradient(135deg, #6B7AE0, #3E50C7); }
.avatar--o { background: linear-gradient(135deg, #F7B538, #D89110); }

.bento-card--dark .avatar { border-color: #0E2647; }

/* ========== STATS ========== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat {
  padding: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-number span {
  color: var(--teal-soft);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  font-family: var(--font-mono);
}

/* ========== DEPOIMENTOS ========== */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-thumb {
  aspect-ratio: 16/9;
  position: relative;
  display: grid;
  place-items: center;
}

.testimonial-thumb--1 { background: linear-gradient(135deg, #0F8F71, #14C39A); }
.testimonial-thumb--2 { background: linear-gradient(135deg, #3E50C7, #6B7AE0); }
.testimonial-thumb--3 { background: linear-gradient(135deg, #D89110, #F7B538); }

.testimonial-thumb .play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 2px solid white;
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.testimonial:hover .play { transform: scale(1.1); }

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  padding: 24px 24px 0;
  color: var(--text);
}

.testimonial-author {
  padding: 20px 24px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author .avatar {
  margin: 0;
  border: none;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ========== PROFESSORES ========== */

.prof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.prof-card {
  text-align: center;
  padding: 8px;
  transition: all 0.3s ease;
}

.prof-card:hover { transform: translateY(-4px); }

.prof-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.prof-photo--1 { background: linear-gradient(135deg, #0E2647, #14C39A); }
.prof-photo--2 { background: linear-gradient(135deg, #163058, #3E50C7); }
.prof-photo--3 { background: linear-gradient(135deg, #0E2647, #F7B538); }
.prof-photo--4 { background: linear-gradient(135deg, #163058, #14C39A); }
.prof-photo--5 { background: linear-gradient(135deg, #0E2647, #6B7AE0); }

.prof-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3));
}

.prof-initials {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: white;
  z-index: 1;
  letter-spacing: -0.02em;
}

.prof-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.prof-role {
  font-size: 0.8125rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}

.prof-creds {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-family: var(--font-mono);
}

/* ========== CALCULADORA DEMO ========== */

.calc-demo {
  display: flex;
  justify-content: center;
}

.calc-card {
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 700px;
  color: white;
}

.calc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.calc-head h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 4px;
}

.calc-head p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.badge-live {
  background: rgba(20, 195, 154, 0.15);
  color: var(--teal-soft);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-field span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.calc-field input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  color: white;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: all 0.2s;
}

.calc-field input:focus {
  border-color: var(--teal);
  background: rgba(20, 195, 154, 0.05);
}

.calc-result {
  background: linear-gradient(135deg, rgba(20, 195, 154, 0.15) 0%, rgba(20, 195, 154, 0.05) 100%);
  border: 1px solid rgba(20, 195, 154, 0.3);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-result-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calc-result-value {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: white;
}

.calc-result-value strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--teal-soft);
  margin-right: 4px;
}

.calc-foot {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 20px;
  line-height: 1.5;
}

/* ========== CTA CARD ========== */

.cta-card {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  color: white;
  --form-label: rgba(255, 255, 255, 0.85);
  --form-text: #FFFFFF;
  --form-placeholder: rgba(255, 255, 255, 0.4);
  --form-bg: rgba(255, 255, 255, 0.06);
  --form-border: rgba(255, 255, 255, 0.12);
  --form-card-bg: rgba(255, 255, 255, 0.04);
  --form-card-border: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 195, 154, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-content .kicker { color: var(--teal-soft); }

.cta-content .h2 { color: white; margin-bottom: 16px; }

.cta-content .lead { color: rgba(255, 255, 255, 0.7); }

.cta-form {
  position: relative;
  z-index: 1;
  background: var(--form-card-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--form-card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--form-bg);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--form-placeholder);
}

.step.active {
  background: var(--teal);
  color: #042B22;
}

.step-line {
  flex: 1;
  height: 1px;
  background: var(--form-card-border);
}

.form-step label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--form-text);
  margin-bottom: 16px;
  display: block;
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.opt-btn {
  background: var(--form-card-bg);
  border: 1px solid var(--form-card-border);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--form-text);
  font-family: inherit;
  font-size: 0.9375rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.opt-btn:hover {
  background: rgba(20, 195, 154, 0.1);
  border-color: var(--teal);
}

.form-meta {
  font-size: 0.75rem;
  color: var(--form-placeholder);
  margin-top: 20px;
  text-align: center;
}

/* ========== FAQ ========== */

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}

.faq-item[open] {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  position: relative;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-content {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ========== FOOTER ========== */

.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.logo--footer { color: white; }

.footer-brand p {
  margin: 16px 0 24px;
  font-size: 0.9375rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 280px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--teal);
  color: #042B22;
}

.footer-social img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}

.footer-social a:hover img {
  filter: brightness(0) invert(0.15);
}

.footer-col h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--teal-soft); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
}

/* ========== WHATSAPP FLOAT ========== */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: all 0.2s;
  animation: float-pulse 3s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7); }
}

/* ========== RESPONSIVO ========== */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-action-mobile { display: inline-flex; }

  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card--xl { grid-column: span 2; grid-template-columns: 1fr; }
  .bento-card--md { grid-column: span 1; }
  .bento-card--sm { grid-column: span 1; }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav-glass { padding: 8px 8px 8px 14px; }
  .nav-actions { gap: 4px; }
  .nav-actions .btn-primary { font-size: 0.72rem; padding: 0 10px; height: 34px; }

  .hero { padding: 100px 0 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; }

  .bento { grid-template-columns: 1fr; }
  .bento-card--xl { grid-column: 1; }
  .bento-card--md { grid-column: 1; }
  .bento-card--sm { grid-column: 1; }

  .cta-card { padding: 32px 24px; }
  .calc-card { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== UTILS ========== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   REAL ASSETS — fotos, logos, badges reais
   ======================================== */

/* GDAV product card visual */
.bento-visual--cursos {
  position: relative;
  background: linear-gradient(135deg, #0E2647 0%, #163058 60%, #14C39A 200%);
  border-radius: var(--radius-lg);
  min-height: 280px;
  overflow: hidden;
}

.bento-visual--cursos::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(20, 195, 154, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(247, 181, 56, 0.1) 0%, transparent 50%);
}

.product-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 65%;
  max-height: 75%;
  width: auto;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.floating-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  background: white;
  animation: float-badge 4s ease-in-out infinite;
}

.floating-badge img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}

/* Multi-tier price block */
.price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.3;
}

.price-strike {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.7;
}

.price small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-alt {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.price-alt strong {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
}

/* App mockup real */
.phone-mockup-real {
  margin: 16px 0 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(20, 195, 154, 0.06) 0%, transparent 70%);
  border-radius: var(--radius);
  padding: 12px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup-real img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(11, 31, 58, 0.25));
}

.app-stores {
  display: flex;
  gap: 8px;
  margin-top: auto;
  align-items: center;
}

.app-stores a {
  flex: 1;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}

.app-stores a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.app-stores img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* Mentor stack with real photos */
.mentor-stack-real {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 16px 0 20px;
  flex-wrap: wrap;
}

.mentor-pic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  border: 3px solid #122E54;
  margin-left: -14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #0E2647, #163058);
}

.mentor-pic:first-child { margin-left: 0; }

.mentor-stack-real .mentor-count {
  margin-left: 12px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-mono);
}

/* Testimonial thumbs with real photos */
.testimonial-thumb-real {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0E2647 0%, #14C39A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.testimonial-thumb-real::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(20, 195, 154, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(247, 181, 56, 0.2) 0%, transparent 50%);
}

.testimonial-thumb-real img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 1;
  position: relative;
}

/* Professor photos reais */
.prof-photo-real {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0E2647 0%, #163058 50%, #14C39A 200%);
}

.prof-photo-real::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(11, 31, 58, 0.35));
  z-index: 1;
}

.prof-photo-real img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 20%;
  object-position: center 20%;
  transition: transform 0.4s ease;
}

.prof-card:hover .prof-photo-real img {
  transform: scale(1.05);
}

/* Calculator presets */
.calc-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.preset-btn {
  background: rgba(20, 195, 154, 0.08);
  border: 1px solid rgba(20, 195, 154, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  color: var(--teal-soft);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.preset-btn:hover {
  background: rgba(20, 195, 154, 0.18);
  border-color: var(--teal);
  color: white;
  transform: translateY(-1px);
}

.preset-btn.active {
  background: var(--teal);
  color: #042B22;
  border-color: var(--teal);
}

/* CTA mini stats */
.cta-mini-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cta-mini-stats span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-mini-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal-soft);
  line-height: 1;
  margin-bottom: 4px;
}

/* FAQ footer */
.faq-footer {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.faq-footer p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Footer brand logo size */
.footer .logo-img {
  height: 56px;
}

[data-theme="dark"] .footer .logo-img {
  filter: none;
}

/* Bento card --xl permite altura natural com imagem real (desktop) */
@media (min-width: 1024px) {
  .bento-card--xl .bento-visual {
    min-height: 280px;
    align-self: stretch;
  }
}

/* Ajustes mobile do visual de cursos */
.bento-visual--cursos { min-height: 240px; margin-top: 24px; }
.floating-badge { width: 90px; height: 90px; }

@media (max-width: 640px) {
  .price-block { font-size: 0.875rem; }
  .price strong { font-size: 1.25rem !important; }
  .mentor-pic { width: 44px; height: 44px; }
  .testimonial-thumb-real img { width: 80px; height: 80px; }
  .cta-mini-stats { gap: 12px; }
  .cta-mini-stats strong { font-size: 1.125rem; }
  .floating-badge { width: 72px; height: 72px; bottom: 12px; right: 12px; }
  .nav-links { display: none; }
  .logo-img { height: 36px; }
  .footer .logo-img { height: 44px; }
}

/* ========================================
   LANDING COMPACTA · v2
   ======================================== */

/* Hero compacto */
.hero--compact {
  min-height: auto;
  padding: 140px 0 80px;
}

.hero--compact .hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
}

.hero--compact .hero-sub {
  margin: 20px auto 32px;
}

.hero--compact .hero-cta {
  margin-bottom: 36px;
}

/* Anim entry helpers (anime.js prepara via data-anim).
   Só esconde se a classe .js-anim-ready (adicionada pelo app.js após
   carregar anime.js) estiver no <html>. Se o CDN do anime.js cair ou
   o JS falhar, conteúdo fica visível por padrão. */
.js-anim-ready [data-anim] {
  opacity: 0;
  will-change: transform, opacity;
}

/* Products grid (substitui bento) */
.section--products {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Products grid (mobile-first) */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .products-grid .product-card--featured { grid-column: span 2; }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(6, 1fr); }
  .products-grid .product-card--featured { grid-column: span 4; }
  .products-grid .product-card--dark { grid-column: span 2; }
  .products-grid .product-card--sm { grid-column: span 2; }
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  grid-column: span 2;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(20, 195, 154, 0.6), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(20, 195, 154, 0.3);
}

.product-card:hover::after { opacity: 1; }

.product-card--featured {
  background: linear-gradient(135deg, #0E2647 0%, #163058 60%, rgba(20, 195, 154, 0.15) 200%);
  color: white;
  border-color: rgba(20, 195, 154, 0.25);
}

[data-theme="light"] .product-card--featured {
  background: linear-gradient(135deg, #0B1F3A 0%, #163058 60%, rgba(20, 195, 154, 0.18) 200%);
  color: white;
}

.product-card--featured .product-card-desc { color: rgba(255, 255, 255, 0.78); }

.product-card--dark {
  background: linear-gradient(135deg, #0A1424 0%, #163058 100%);
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
}

.product-card--dark .product-card-desc { color: rgba(255, 255, 255, 0.72); }

.product-card--sm {
  padding: 22px;
}

.product-card-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(11, 31, 58, 0.06);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  align-self: flex-start;
}

[data-theme="dark"] .product-card-tag {
  background: rgba(255, 255, 255, 0.06);
}

.product-card--featured .product-card-tag,
.product-card--dark .product-card-tag {
  background: rgba(20, 195, 154, 0.18);
  color: var(--teal-soft);
}

.product-card-tag--accent {
  background: rgba(20, 195, 154, 0.12);
  color: var(--teal);
}

.product-card-tag--gold {
  background: rgba(247, 181, 56, 0.18) !important;
  color: var(--amber) !important;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: inherit;
}

.product-card--featured .product-card-title { color: white; }
.product-card--dark .product-card-title { color: white; }

.product-card-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card--featured .product-card-subtitle,
.product-card--dark .product-card-subtitle { color: var(--teal-soft); }

.product-card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 22px;
  flex: 1;
}

.product-card-title-sm {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.product-card-desc-sm {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.product-card-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.product-card-price .price-strike {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.7;
}

.product-card-price .price-launch-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  background: rgba(247, 181, 56, 0.14);
  border: 1px solid rgba(247, 181, 56, 0.4);
  color: var(--amber);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}

.product-card-price .price-launch-tag svg {
  flex-shrink: 0;
}

.product-card-price .price-main {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.02em;
}

.product-card-price .price-main small {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
}

.product-card--featured .price-main small,
.product-card--dark .price-main small { color: rgba(255, 255, 255, 0.6); }

.product-card-price .price-month {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.product-card--featured .price-month,
.product-card--dark .price-month { color: rgba(255, 255, 255, 0.65); }

.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: auto;
  transition: gap 0.2s;
}

.product-card--featured .product-card-cta,
.product-card--dark .product-card-cta { color: var(--teal-soft); }

.product-card:hover .product-card-cta { gap: 12px; }

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card-meta .price-sm {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.product-card-meta .link-arrow-sm {
  font-size: 1.25rem;
  color: var(--teal);
  transition: transform 0.2s;
}

.product-card:hover .link-arrow-sm { transform: translateX(4px); }

/* Testimonials compactos (2 col em vez de auto-fit) */
.testimonials--compact {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

/* CTA card compacto */
.cta-card--compact {
  padding: 48px;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

.cta-card--compact .h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--form-label);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input {
  width: 100%;
  background: var(--form-bg);
  border: 1px solid var(--form-border);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--form-text);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.form-input::placeholder { color: var(--form-placeholder); }
.form-input:focus { border-color: var(--teal); background: rgba(20, 195, 154, 0.06); }

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-turnstile {
  display: flex;
  justify-content: center;
  margin: 8px 0 14px;
  min-height: 65px;
}

.form-turnstile.has-error {
  outline: 2px solid #E5484D;
  outline-offset: 4px;
  border-radius: 6px;
}

.btn-block { width: 100%; }

.cta-form.is-success {
  text-align: center;
}

/* Responsivo products grid */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .product-card { grid-column: span 2; }
  .product-card--featured { grid-column: span 4; }
  .product-card--dark { grid-column: span 4; }
  .product-card--sm { grid-column: span 2; }
  .testimonials--compact { grid-template-columns: 1fr; }
  .cta-card--compact { grid-template-columns: 1fr; padding: 36px; }
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card,
  .product-card--featured,
  .product-card--dark,
  .product-card--sm { grid-column: 1; }
  .product-card-title { font-size: 1.75rem; }
  .hero--compact { padding: 110px 0 60px; }
  .cta-card--compact { padding: 28px; }
}

/* ========================================
   ANIMAÇÕES · v3 (particles · ECG · phone)
   ======================================== */

/* Hero · partículas SVG */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.hero-particles .particles-layer circle {
  fill: url(#particle-glow);
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}

.hero-particles .ecg-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 8px rgba(20, 195, 154, 0.6));
}

/* ========== Section · App em ação ========== */

.section--app-showcase {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(20, 195, 154, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .section--app-showcase {
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(20, 195, 154, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, #050E1C 0%, #0A1424 100%);
}

.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.app-showcase-text .kicker { color: var(--teal); }

.app-showcase-text .h2 {
  margin-bottom: 16px;
}

.app-showcase-text .lead {
  margin-bottom: 24px;
}

.app-showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.app-showcase-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.app-showcase-list svg { color: var(--teal); flex-shrink: 0; }

/* Phone mockup animado */
.phone-anim {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.phone-anim-glow {
  position: absolute;
  inset: 5% 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(20, 195, 154, 0.5) 0%, transparent 65%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.phone-anim-frame {
  position: relative;
  width: 320px;
  max-width: 100%;
  aspect-ratio: 9/19;
  background: linear-gradient(145deg, #1B3661 0%, #112E54 50%, #0B1F3A 100%);
  border-radius: 38px;
  padding: 14px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(20, 195, 154, 0.3),
    0 0 80px -16px rgba(20, 195, 154, 0.35),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  z-index: 1;
  will-change: transform;
}

.phone-anim-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #050E1C;
  border-radius: 14px;
  z-index: 2;
}

.phone-anim-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0E2647 0%, #050E1C 100%);
  border-radius: 26px;
  padding: 44px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: white;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.phone-anim-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-anim-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.phone-anim-live {
  background: rgba(20, 195, 154, 0.18);
  color: var(--teal-soft);
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.phone-anim-presets {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.phone-anim-chip {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 7px 4px;
  border-radius: 100px;
  cursor: default;
  transition: all 0.4s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-anim-chip.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #042B22;
}

.phone-anim-field {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-anim-label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.phone-anim-value {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
}

.phone-anim-result {
  margin-top: auto;
  background: linear-gradient(135deg, rgba(20, 195, 154, 0.18) 0%, rgba(20, 195, 154, 0.04) 100%);
  border: 1px solid rgba(20, 195, 154, 0.3);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-anim-result-label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.phone-anim-result-value {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.phone-anim-result-value strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal-soft);
  margin-right: 4px;
}

.phone-anim-wave {
  width: 100%;
  height: 32px;
  opacity: 0.7;
  margin-top: 4px;
}

.phone-anim-wave-path {
  filter: drop-shadow(0 0 6px rgba(20, 195, 154, 0.5));
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-particles .particles-layer circle,
  .phone-anim-wave-path,
  .phone-anim-frame {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsivo */
@media (max-width: 1024px) {
  .app-showcase { grid-template-columns: 1fr; gap: 48px; }
  .phone-anim-frame { width: 280px; }
}

@media (max-width: 640px) {
  .section--app-showcase { padding: 64px 0; }
  .phone-anim-frame { width: 240px; padding: 10px; }
  .phone-anim-screen { padding: 36px 14px 16px; }
}

/* ========== Mentoria · step diagram ========== */
.mentoria-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 40px 0 32px;
  margin-top: 24px;
}

.mentoria-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0;
}

.mentoria-step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--line);
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--teal);
  transition: border-color 0.4s, transform 0.4s;
  position: relative;
}

.mentoria-step.is-active .mentoria-step-circle {
  border-color: var(--teal);
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(20, 195, 154, 0.12);
}

.mentoria-step-num {
  position: absolute;
  top: -8px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: #042B22;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg-alt);
}

.mentoria-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.mentoria-step p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 160px;
  margin: 0 auto;
}

.mentoria-steps-line {
  position: absolute;
  top: 72px;
  left: 8%;
  right: 8%;
  height: 2px;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.mentoria-steps-line path {
  stroke: var(--teal);
  stroke-width: 2;
  stroke-dasharray: 4 6;
  fill: none;
  stroke-dashoffset: 100%;
}

@media (max-width: 700px) {
  .mentoria-steps { flex-direction: column; gap: 24px; align-items: stretch; }
  .mentoria-steps-line { display: none; }
  .mentoria-step { display: flex; align-items: center; text-align: left; gap: 16px; }
  .mentoria-step-circle { margin: 0; flex-shrink: 0; }
  .mentoria-step p { max-width: none; margin: 0; }
  .mentoria-step h4 { text-align: left; }
}

/* ========================================
   PERSONA SELECTOR (topo da seção produtos)
   ======================================== */

.persona-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.persona-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.persona-chip:hover {
  border-color: var(--teal);
  color: var(--text);
  transform: translateY(-1px);
}

.persona-chip.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #042B22;
  box-shadow: 0 6px 20px -6px rgba(20, 195, 154, 0.5);
}

.persona-chip svg { flex-shrink: 0; }

.persona-chip--reset {
  background: transparent;
  border-style: dashed;
}

.persona-chip--reset:hover {
  background: var(--bg-card);
}

/* ========================================
   PRODUCT CARD · "Para quem é" + recommend
   ======================================== */

.product-card-for {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--teal);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}

.product-card-for--sm {
  font-size: 0.8125rem;
  margin-bottom: 10px;
}

[data-theme="dark"] .product-card-for {
  color: var(--teal-soft);
}

.product-card--featured .product-card-for,
.product-card--dark .product-card-for {
  color: var(--teal-soft);
}

/* Recommend badge — só aparece quando o card está .is-recommended */
.product-card-recommend-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--teal);
  color: #042B22;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 3;
  box-shadow: 0 4px 12px -2px rgba(20, 195, 154, 0.55);
  opacity: 0;
  transform: translateY(-6px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.product-card.is-recommended .product-card-recommend-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-card.is-recommended {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), 0 20px 50px -12px rgba(20, 195, 154, 0.25);
}

.product-card.is-dim {
  opacity: 0.4;
  filter: saturate(0.7);
  transform: none !important;
  pointer-events: auto;
}

.product-card.is-dim:hover {
  opacity: 0.6;
}

/* ========================================
   CTA · Form expandido + comunidade gratuita
   ======================================== */

.cta-legal {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  max-width: 460px;
}

.cta-form--full {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 4px;
}

.cta-form--full::-webkit-scrollbar { width: 6px; }
.cta-form--full::-webkit-scrollbar-thumb {
  background: var(--form-border);
  border-radius: 100px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 0;
  padding: 0;
  margin: 0;
  /* fieldset tem min-width default que estoura grid em mobile */
  min-width: 0;
}

/* Reset robusto para <fieldset>: alguns browsers (notadamente iOS Safari)
   reinserem borda/padding padrão se não forem zerados explicitamente. */
fieldset.form-field { border: 0; padding: 0; margin: 0; min-width: 0; }
fieldset.form-field > legend { padding: 0; margin-bottom: 8px; width: 100%; float: none; }

.form-field .form-label,
.form-field legend.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--form-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

.form-select {
  width: 100%;
  /* bg-color explícito (não shorthand) — iOS Safari respeita appearance:none melhor assim */
  background-color: var(--form-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2397A6BD' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  border: 1px solid var(--form-border);
  border-radius: 12px;
  padding: 14px 36px 14px 16px;
  color: var(--form-text);
  font-family: inherit;
  /* 16px previne auto-zoom do iOS Safari e força o select a usar appearance custom */
  font-size: 1rem;
  line-height: 1.2;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-select:focus {
  border-color: var(--teal);
  background-color: rgba(20, 195, 154, 0.06);
}

.form-select option {
  background: var(--bg);
  color: var(--text);
}

.form-field--checkboxes legend {
  margin-bottom: 8px;
}

.form-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}

.form-input--inline {
  margin-top: 12px;
  font-size: 0.875rem;
  padding: 10px 14px;
}

.form-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--form-label);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.form-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--form-border);
  background: var(--form-bg);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

.form-checkbox input[type="checkbox"]:checked {
  background: var(--teal);
  border-color: var(--teal);
}

.form-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #042B22;
  border-bottom: 2px solid #042B22;
  transform: rotate(45deg);
}

.form-checkbox--policy {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--form-card-border);
  align-items: flex-start;
}

.form-policy-link {
  color: var(--teal-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-policy-link:hover { color: var(--form-text); }

/* Validation state */
.form-input.has-error,
.form-select.has-error {
  border-color: var(--danger);
  background-color: rgba(225, 71, 75, 0.08);
}

.form-field-error {
  font-size: 0.75rem;
  color: var(--danger);
  margin-top: 4px;
}

/* Success state (substitui o form ao enviar) */
.cta-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 16px;
  min-height: 280px;
}

.cta-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(20, 195, 154, 0.18);
  border: 2px solid rgba(20, 195, 154, 0.4);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--teal-soft);
}

.cta-success-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--form-text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.cta-success-msg {
  font-size: 0.9375rem;
  color: var(--form-label);
  line-height: 1.5;
  max-width: 320px;
}

.cta-success-msg strong { color: var(--form-text); }

.cta-success-cta {
  margin-top: 20px;
  text-decoration: none;
}

/* Responsivo: form full em mobile */
@media (max-width: 1024px) {
  .cta-form--full { max-height: none; overflow-y: visible; }
}

@media (max-width: 640px) {
  .form-checkbox-grid { grid-template-columns: 1fr; gap: 10px; }
  .persona-chip { font-size: 0.8125rem; padding: 9px 14px; }
  .product-card-recommend-badge { top: 10px; right: 10px; font-size: 0.625rem; padding: 3px 8px; }

  /* Polish do form da comunidade em mobile */
  .cta-form { padding: 22px 18px; border-radius: 16px; }
  .cta-form--full { gap: 12px; }
  /* 16px em todos os inputs/select previne auto-zoom do iOS Safari */
  .form-input,
  .form-select { font-size: 1rem; padding: 14px 16px; border-radius: 10px; }
  .form-input { margin-bottom: 0; }
  .form-select { padding-right: 36px; }
  .form-checkbox { font-size: 0.875rem; padding: 6px 0; }
  /* Aumenta a área de toque dos checkboxes */
  .form-checkbox input[type="checkbox"] { width: 18px; height: 18px; }
}

/* ========================================
   FUNIL · Identificação por momento / dor
   ======================================== */

.section--funnel { padding: 80px 0; }

.hero-cta--single { justify-content: center; }

.carousel {
  position: relative;
  margin-top: 40px;
}

.carousel-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 4px 24px;
  cursor: grab;
  scroll-behavior: smooth;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  user-select: none;
}

.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.is-dragging { cursor: grabbing; scroll-behavior: auto; }

/* Mobile-first: 1 card visível com peek do próximo. */
.carousel-track > * {
  flex: 0 0 auto;
  width: 82%;
  scroll-snap-align: start;
  min-width: 0;
}

@media (min-width: 768px) {
  .carousel-track > * { width: calc((100% - 24px) / 2); }
}

@media (min-width: 1024px) {
  .carousel-track > * { width: calc((100% - 48px) / 3); }
}

/* Cards dentro de carousel não devem ficar invisíveis pelo data-anim — anime.js dispara apenas no scroll vertical, e cards laterais nunca chegariam */
.carousel-track [data-anim] { opacity: 1; }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.carousel-arrow:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.06);
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

.carousel-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.carousel-arrow--prev { left: -8px; }
.carousel-arrow--next { right: -8px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--teal);
  transform: scale(1.3);
}

/* Pain card */
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(20, 195, 154, 0.3);
}

.pain-card-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(20, 195, 154, 0.1);
  border: 1px solid rgba(20, 195, 154, 0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.02em;
}

[data-theme="dark"] .pain-card-tag { color: var(--teal-soft); }

.pain-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--text);
}

.pain-card-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

.pain-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 18px;
  background: var(--teal);
  color: #042B22;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  align-self: flex-start;
  transition: gap 0.2s ease, background 0.2s ease;
}

.pain-card-cta:hover { gap: 12px; background: var(--teal-dark); }

.pain-card--linked { border-left: 3px solid var(--teal); }

/* Logo do curso dentro do card */
.pain-card-logo {
  height: 140px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  margin-bottom: 14px;
  align-self: flex-start;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
}

/* Logos com versões por tema: troca automática conforme [data-theme] no <html>.
   Por padrão (tema escuro) mostra a versão dark; em tema claro mostra a light.
   Os seletores compostos (.classe-base.course-logo-x) sobem a specificity para vencer
   as regras de display: block declaradas em .prod-hero-course-logo, .footer-course-logo,
   .course-lockup-logo e .pain-card-logo (algumas em produto.css, carregado depois). */
.pain-card-logo.course-logo-light,
.course-lockup-logo.course-logo-light,
.prod-hero-course-logo.course-logo-light,
.footer-course-logo.course-logo-light { display: none; }

[data-theme="light"] .pain-card-logo.course-logo-dark,
[data-theme="light"] .course-lockup-logo.course-logo-dark,
[data-theme="light"] .prod-hero-course-logo.course-logo-dark,
[data-theme="light"] .footer-course-logo.course-logo-dark { display: none; }

[data-theme="light"] .pain-card-logo.course-logo-light,
[data-theme="light"] .course-lockup-logo.course-logo-light,
[data-theme="light"] .prod-hero-course-logo.course-logo-light,
[data-theme="light"] .footer-course-logo.course-logo-light { display: block; }

[data-theme="light"] .pain-card-logo.course-logo-light { filter: none; }

/* Variantes temáticas por curso — sobrescrevem cor de borda, tag e CTA */
.pain-card--gdav {
  border-left-color: var(--c-gdav);
}
.pain-card--gdav .pain-card-tag {
  background: rgba(242, 129, 29, 0.12);
  border-color: rgba(242, 129, 29, 0.3);
  color: var(--c-gdav);
}
[data-theme="dark"] .pain-card--gdav .pain-card-tag { color: var(--c-gdav-2); }
.pain-card--gdav .pain-card-cta { background: var(--c-gdav); color: #fff; }
.pain-card--gdav .pain-card-cta:hover { background: #D8700F; }
.pain-card--gdav:hover { border-color: rgba(242, 129, 29, 0.35); }

.pain-card--gdetiv {
  border-left-color: var(--c-gdetiv);
}
.pain-card--gdetiv .pain-card-tag {
  background: rgba(220, 42, 46, 0.12);
  border-color: rgba(220, 42, 46, 0.3);
  color: var(--c-gdetiv);
}
[data-theme="dark"] .pain-card--gdetiv .pain-card-tag { color: var(--c-gdetiv-2); }
.pain-card--gdetiv .pain-card-cta { background: var(--c-gdetiv); color: #fff; }
.pain-card--gdetiv .pain-card-cta:hover { background: #BC1F23; }
.pain-card--gdetiv:hover { border-color: rgba(220, 42, 46, 0.35); }

.pain-card--ssa {
  border-left-color: var(--c-ssa);
}
.pain-card--ssa .pain-card-tag {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
  color: var(--c-ssa);
}
[data-theme="dark"] .pain-card--ssa .pain-card-tag { color: var(--c-ssa-2); }
.pain-card--ssa .pain-card-cta { background: var(--c-ssa); color: #fff; }
.pain-card--ssa .pain-card-cta:hover { background: #1D52C9; }
.pain-card--ssa:hover { border-color: rgba(37, 99, 235, 0.35); }

.pain-card--ccd {
  border-left-color: var(--c-ccd);
}
.pain-card--ccd .pain-card-tag {
  background: rgba(232, 154, 12, 0.14);
  border-color: rgba(232, 154, 12, 0.3);
  color: var(--c-ccd);
}
[data-theme="dark"] .pain-card--ccd .pain-card-tag { color: var(--c-ccd-2); }
.pain-card--ccd .pain-card-cta { background: var(--c-ccd); color: #1F1404; }
.pain-card--ccd .pain-card-cta:hover { background: #C98708; }
.pain-card--ccd:hover { border-color: rgba(232, 154, 12, 0.4); }

/* Selo de curso no nav (lockup GDVet › CURSO) */
.course-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-left: 6px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
[data-theme="light"] .course-lockup { border-left-color: rgba(11, 31, 58, 0.15); }
.course-lockup-divider {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1;
}
.course-lockup-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
@media (max-width: 720px) {
  .course-lockup { display: none; }
}

/* ========================================
   MENTORIA · composite de mentores
   ======================================== */

.section--mentoria { padding: 80px 0; }

/* Mentor composite (mobile-first) */
.mentor-composite {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .mentor-composite { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
}

@media (min-width: 1024px) {
  .mentor-composite { grid-template-columns: repeat(4, 1fr); }
}

.mentor-portrait {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mentor-portrait:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 195, 154, 0.3);
}

.mentor-portrait-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(20, 195, 154, 0.3);
}

.mentor-portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mentor-portrait-name {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 4px 0 0;
  color: var(--text);
}

.mentor-portrait-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.mentoria-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.mentoria-cta-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ========================================
   PROVA SOCIAL SEGMENTADA · vídeo cards
   ======================================== */

/* Carousel de vídeo herda mobile-first do .carousel-track > *. Variantes desktop: */
.carousel--video .carousel-track > * { flex: 0 0 auto; width: 86%; }

@media (min-width: 768px) {
  .carousel--video .carousel-track > * { width: calc((100% - 24px) / 2); }
}

@media (min-width: 1024px) {
  .carousel--video .carousel-track > * { width: calc((100% - 48px) / 3); }
}

.video-testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(20, 195, 154, 0.3);
}

.video-testimonial-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(20, 195, 154, 0.1);
  border: 1px solid rgba(20, 195, 154, 0.25);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

[data-theme="dark"] .video-testimonial-tag { color: var(--teal-soft); }

.video-testimonial-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.video-testimonial-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-testimonial-trigger {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
  margin: 0;
}

.video-testimonial-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 8px 14px;
  margin-top: auto;
  background: transparent;
  color: var(--teal);
  border: 1px solid rgba(20, 195, 154, 0.4);
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, gap 0.2s ease;
}

.video-testimonial-cta:hover {
  background: var(--teal);
  color: white;
  gap: 10px;
}

[data-theme="dark"] .video-testimonial-cta { color: var(--teal-soft); }

/* Variante "quote" pra depoimentos sem vídeo (Mentoria) */
.video-testimonial-card--quote .video-testimonial-quote {
  background: linear-gradient(135deg, rgba(20, 195, 154, 0.08), rgba(20, 195, 154, 0.02));
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  min-height: 0;
  justify-content: center;
}

.video-testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(20, 195, 154, 0.4);
  flex-shrink: 0;
}

.video-testimonial-quote blockquote {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  font-style: italic;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.video-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.75rem;
  width: 100%;
  min-width: 0;
}

.video-testimonial-author strong { color: var(--text); font-weight: 600; }
.video-testimonial-author span { color: var(--text-muted); }

/* ========================================
   FUNIL · responsivo
   ======================================== */

/* Carousel widths em min-width refatorado abaixo. */

/* Carousel + funil: ajustes base mobile (já mobile-first acima). Setas só em desktop. */
.section--funnel { padding: 56px 0; }
.section--mentoria { padding: 56px 0; }
.carousel-track { gap: 16px; padding: 8px 4px 20px; }
.carousel-arrow { display: none; }
.mentor-composite { gap: 14px; }
.mentor-portrait { padding: 18px 14px; }
.mentor-portrait-photo { width: 88px; height: 88px; }
.pain-card { padding: 22px; min-height: 200px; }
.pain-card-title { font-size: 1.1875rem; }
.video-testimonial-card { padding: 16px; }
.video-testimonial-trigger { font-size: 1rem; }
.logo-img { height: 44px; }

@media (min-width: 768px) {
  .section--funnel { padding: 96px 0; }
  .section--mentoria { padding: 96px 0; }
  .carousel-track { gap: 24px; padding: 0; }
  .carousel-arrow { display: grid; }
  .mentor-composite { gap: 20px; }
  .mentor-portrait { padding: 24px 20px; }
  .mentor-portrait-photo { width: 120px; height: 120px; }
  .pain-card { padding: 32px; min-height: auto; }
  .pain-card-title { font-size: 1.375rem; }
  .video-testimonial-card { padding: 24px; }
  .video-testimonial-trigger { font-size: 1.0625rem; }
  .logo-img { height: 56px; }
}

/* Estilos das páginas legais (privacidade, termos, reembolso)
   estão em legal/legal.css — carregado apenas nessas páginas. */


/* ==========================================================================
   MANIFESTO · slogan + posicionamento (entre hero e momento)
   ========================================================================== */
.section--manifesto {
  padding: 56px 0 24px;
}
.manifesto {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--teal);
  margin: 0 0 16px;
  line-height: 1.15;
}
.manifesto-body {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.manifesto-body strong {
  color: var(--text);
  font-weight: 600;
}

/* ==========================================================================
   Mentoria · CTA tripla (Anestesia / Emergência / Ultrassom)
   ========================================================================== */
.mentoria-cta--triple {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px auto 12px;
}
.mentoria-cta--triple .btn { flex: 0 1 auto; }

/* ==========================================================================
   Quem ensina · grid detalhado com qualificações
   ========================================================================== */
.prof-grid--detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.prof-grid--detailed .prof-card {
  text-align: left;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 4px 20px;
  align-items: start;
}
.prof-grid--detailed .prof-photo-real {
  grid-row: 1 / span 4;
  width: 110px;
  height: 110px;
}
.prof-grid--detailed .prof-photo-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.prof-grid--detailed h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.15;
}
.prof-creds {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}
.prof-grid--detailed .prof-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.prof-quals {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  grid-column: 1 / -1;
}
.prof-quals li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
}
.prof-quals li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
@media (max-width: 720px) {
  .prof-grid--detailed { grid-template-columns: 1fr; gap: 18px; }
  .prof-grid--detailed .prof-card { padding: 22px; grid-template-columns: 80px 1fr; }
  .prof-grid--detailed .prof-photo-real { width: 80px; height: 80px; }
}

/* ==========================================================================
   Pain card · variante App (sem logo de curso, ícone tipográfico)
   ========================================================================== */
.pain-card--app { border-left-color: var(--teal); }
.pain-card--app .pain-card-tag {
  background: rgba(20, 195, 154, 0.12);
  border-color: rgba(20, 195, 154, 0.3);
  color: var(--teal);
}

/* Highlight temporário ao vir de outro carrossel via #dor-{curso} */
.pain-card.is-highlighted {
  animation: pain-card-glow 2.6s ease-out;
  z-index: 2;
}

@keyframes pain-card-glow {
  0%   { box-shadow: 0 0 0 0 var(--pain-glow, rgba(20, 195, 154, 0.55)); transform: translateY(0); }
  18%  { box-shadow: 0 0 0 8px var(--pain-glow, rgba(20, 195, 154, 0.45)), 0 24px 56px rgba(0, 0, 0, 0.16); transform: translateY(-3px); }
  60%  { box-shadow: 0 0 0 6px var(--pain-glow, rgba(20, 195, 154, 0.28)), 0 18px 40px rgba(0, 0, 0, 0.12); transform: translateY(-2px); }
  100% { box-shadow: 0 0 0 0 transparent; transform: translateY(0); }
}

.pain-card--gdav   { --pain-glow: rgba(242, 129, 29, 0.55); }
.pain-card--gdetiv { --pain-glow: rgba(220, 42, 46, 0.55); }
.pain-card--ccd    { --pain-glow: rgba(232, 154, 12, 0.55); }
.pain-card--ssa    { --pain-glow: rgba(37, 99, 235, 0.55); }

/* ==========================================================================
   App showcase · grid horizontal scrollable de funções
   ========================================================================== */
.app-showcase--centered { display: block; }
.app-showcase-text--centered { text-align: center; max-width: 760px; margin: 0 auto 40px; }

.app-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 36px;
}
.app-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.app-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--teal) 40%, var(--line));
}
.app-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  color: var(--teal);
}
.app-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  color: var(--text);
  line-height: 1.15;
}
.app-feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.app-feature-card--highlight {
  border-color: color-mix(in srgb, var(--teal) 45%, var(--line));
  background: linear-gradient(180deg, color-mix(in srgb, var(--teal) 8%, var(--bg-card)) 0%, var(--bg-card) 60%);
}
.app-showcase-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.app-showcase-platforms {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .app-features {
    grid-template-columns: 84vw;
    grid-auto-flow: column;
    grid-auto-columns: 84vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(20px, 8vw);
    padding-right: max(20px, 8vw);
  }
  .app-feature-card { scroll-snap-align: start; }
}

/* ==========================================================================
   Bloco de reembolso · número grande + explicação
   ========================================================================== */
.refund-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.refund-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  color: var(--teal);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.refund-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.2;
}
.refund-body p {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.refund-body strong { color: var(--text); font-weight: 600; }
.refund-source {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.75;
  margin-top: 8px !important;
}
@media (max-width: 720px) {
  .refund-block { grid-template-columns: 1fr; text-align: center; gap: 20px; padding: 32px 24px; }
}

/* ==========================================================================
   Podcast · card horizontal
   ========================================================================== */
.podcast-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.podcast-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--teal) 40%, var(--line));
  box-shadow: var(--shadow-lg);
}
.podcast-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--teal) 14%, transparent);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.podcast-card-body .kicker { display: block; margin-bottom: 4px; }
.podcast-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.2;
}
.podcast-card-body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.podcast-card-cta {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .podcast-card { grid-template-columns: 1fr; gap: 14px; padding: 22px; text-align: left; }
  .podcast-card-cta { justify-self: start; }
}

/* ========== Página live (live.html) ========== */
.live-page { background: var(--bg-dark); color: var(--text); }

.live-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.live-topbar-logo .logo-img { max-height: 36px; display: block; }
.live-topbar-meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-soft);
}

.live-hero {
  padding: 80px 0 64px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(20, 195, 154, 0.12) 0%, transparent 60%),
    var(--bg-dark);
}
.live-hero-title {
  margin: 12px 0 20px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.08;
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.live-hero-title .accent { color: var(--teal); }
.live-hero-lead {
  margin: 0 auto 32px;
  max-width: 640px;
  color: var(--text-muted);
}

.live-topics {
  list-style: none;
  counter-reset: live-topic;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 560px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.live-topics li {
  counter-increment: live-topic;
  position: relative;
  padding: 14px 18px 14px 64px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 0.9375rem;
  color: var(--text);
}
.live-topics li::before {
  content: counter(live-topic, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--teal);
  letter-spacing: 0.02em;
}

.live-datebox {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 20px 32px;
  border: 2px solid var(--teal);
  border-radius: 14px;
  background: rgba(20, 195, 154, 0.04);
  margin-bottom: 32px;
}
.live-datebox-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}
.live-datebox-date {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.live-hero-cta { display: inline-flex; margin-top: 4px; }

.live-guests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.live-guest-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.live-guest-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
  background: var(--navy-800);
  margin-bottom: 20px;
}
.live-guest-role {
  margin-bottom: 8px;
}
.live-guest-name {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--text);
}
.live-guest-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--teal-soft);
  margin: 0 0 18px;
}
.live-guest-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.live-guest-credentials li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.live-guest-credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.live-footer-mini {
  padding: 32px 0;
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.live-footer-mini p { margin: 0; }
.live-footer-mini a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.live-footer-mini a:hover { color: var(--teal-soft); }
.live-footer-sep { margin: 0 8px; opacity: 0.5; }

/* Textarea segue padrão do .form-input */
.form-textarea {
  width: 100%;
  background: var(--form-bg);
  border: 1px solid var(--form-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--form-text);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
  resize: vertical;
  min-height: 96px;
  margin-bottom: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.form-textarea::placeholder { color: var(--form-placeholder); }
.form-textarea:focus { border-color: var(--teal); background: rgba(20, 195, 154, 0.06); }
.form-textarea.has-error { border-color: var(--danger); background-color: rgba(225, 71, 75, 0.08); }
.form-label-optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--form-placeholder);
}

@media (max-width: 768px) {
  .live-topbar { padding: 14px 20px; }
  .live-topbar .logo-img { max-height: 30px; }
  .live-hero { padding: 56px 0 40px; }
  .live-topics { gap: 10px; }
  .live-topics li { padding: 12px 16px 12px 56px; font-size: 0.875rem; }
  .live-topics li::before { left: 16px; font-size: 1.125rem; }
  .live-datebox { padding: 16px 22px; align-items: center; }
  .live-datebox-date { font-size: 1.375rem; }
  .live-guests-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
  .live-guest-card { padding: 24px; }
  .live-guest-photo { width: 112px; height: 112px; margin-bottom: 16px; }
  .live-guest-name { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .live-topbar { flex-direction: column; gap: 6px; padding: 14px 16px; }
}

