@font-face {
  font-family: 'Super Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/v1/SuperSans-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Super Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/v1/SuperSans-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Super Sans Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/v1/SuperSans-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Super Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/v1/SuperSerif-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Super Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/v1/SuperSerif-RegularItalic.woff2') format('woff2');
}

@font-face {
  font-family: 'Super Serif';
  font-style: normal;
  font-weight: 580;
  font-display: swap;
  src: url('../fonts/v1/SuperSerif-SemiBold.woff2') format('woff2');
}

:root {
  /* Tipografia — tokens Superhuman (FONTS-REFERENCE.md) */
  --font-family-sans: 'Super Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-family-serif: 'Super Serif', Georgia, Cambria, 'Times New Roman', Times, serif;
  --font-family-mono: 'Super Sans Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 580;
  --font-weight-bold: 700;
  --font-size-12: 0.75rem;
  --font-size-14: 0.875rem;
  --font-size-16: 1rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-22: 1.375rem;
  --font-size-24: 1.5rem;
  --font-size-26: 1.625rem;
  --font-size-28: 1.75rem;
  --font-size-30: 1.875rem;
  --font-size-32: 2rem;
  --font-size-36: 2.25rem;
  --font-size-40: 2.5rem;
  --font-size-46: 2.875rem;
  --font-size-50: 3.125rem;
  --font-size-58: 3.625rem;
  --font-size-66: 4.125rem;
  --font-size-72: 4.5rem;
  --line-height-default: 1.25;
  --line-height-open: 1.5;
  --ninna-bg: #0b0a18;
  --ninna-surface: #15142b;
  --ninna-highlight: #232242;
  --ninna-primary: #8b5cf6;
  --ninna-border: #2d2c50;
  --ninna-text-main: #ffffff;
  --ninna-text-body: #a0a0c0;
  --ninna-text-muted: #8585a4;
  --event-wake: #fcd34d;
  --event-sleep: #a78bfa;
  --event-feed: #6ee7b7;
  --event-diaper: #f9a8d4;
  --event-health: #f87171;
  --radius: 16px;
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.28);
  --shadow-glow-primary: 0 0 0 1px rgba(139, 92, 246, 0.4), 0 12px 28px rgba(139, 92, 246, 0.38);
}

* {
  box-sizing: border-box;
}

/* #12 — Scroll progress indicator: barra fina no topo controlada por JS  */
:root {
  --scroll-progress: 0;
}

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress) * 100%);
  height: 2px;
  background: linear-gradient(90deg, #6d46e9 0%, var(--ninna-primary) 50%, #a78bfa 100%);
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.7);
  transform-origin: left;
  transition: width 0.1s linear;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress-bar {
    transition: none;
  }
}

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--ninna-primary);
  color: #fff;
  font-weight: var(--font-weight-bold);
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 10%, #1d1a3b 0%, var(--ninna-bg) 48%, #080612 100%);
  color: var(--ninna-text-main);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-open);
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.brand,
.main-menu a {
  font-family: var(--font-family-sans);
}

p,
li,
blockquote {
  font-family: var(--font-family-sans);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(11, 10, 24, 0.85);
  border-bottom: 1px solid var(--ninna-border);
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu a {
  color: var(--ninna-text-body);
  font-weight: var(--font-weight-medium);
}

.main-menu a:hover,
.main-menu .current-menu-item a {
  color: var(--ninna-text-main);
}

.btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
}

.btn-primary,
.wp-block-button.is-style-fill .wp-block-button__link,
.wp-block-button__link {
  color: #fff;
  background: linear-gradient(135deg, #6d46e9 0%, var(--ninna-primary) 50%, #a78bfa 100%);
  box-shadow: var(--shadow-glow-primary);
}

.btn-primary:hover,
.wp-block-button__link:hover {
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--ninna-text-main);
  border: 1px solid var(--ninna-border);
  background: rgba(21, 20, 43, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.page-content {
  padding: 3.2rem 0 4rem;
}

.lp-section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

/* Hero principal (YourBabe) — inspirado no Napper: mais respiro, headline forte, badges */
.lp-hero {
  min-height: min(85vh, 720px);
  padding-top: clamp(3rem, 10vw, 6rem);
  padding-bottom: clamp(3rem, 10vw, 6rem);
  background: linear-gradient(180deg, var(--ninna-bg) 0%, #15142b 35%, #1a1838 70%, #16152f 100%);
  position: relative;
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.lp-section-alt {
  background: linear-gradient(180deg, rgba(21, 20, 43, 0.55) 0%, rgba(21, 20, 43, 0.2) 100%);
  border-top: 1px solid var(--ninna-border);
  border-bottom: 1px solid var(--ninna-border);
}

/* Como funciona: contraste com benefícios (fundo claro), inspiração no hero */
#yb-como-funciona {
  position: relative;
  overflow: visible;
  background: linear-gradient(180deg, #15142b 0%, #1a1838 50%, #12101f 100%);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.12), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(110, 231, 183, 0.08), transparent 40%),
    linear-gradient(180deg, #15142b 0%, #1a1838 50%, #12101f 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  background-position: 0 0, 0 0, 0 0;
  border-top: 1px solid var(--ninna-border);
  border-bottom: 1px solid var(--ninna-border);
  padding: clamp(4rem, 10vw, 6rem) 0;
}

/* Header da section como funciona */
#yb-como-funciona .yb-como-funciona-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

#yb-como-funciona .yb-como-funciona-header .section-title {
  font-weight: 600;
}

#yb-como-funciona .yb-como-funciona-header .section-subtitle {
  max-width: 50ch;
  margin: 0.5rem auto 0;
  color: var(--ninna-text-body);
}

/* Layout e tokens da conexão dos steps */
#yb-como-funciona .yb-steps-wrapper {
  --steps-gap: 2.2rem;
  --connector-thickness: 2.25px;
  --connector-color: rgba(167, 139, 250, 0.42);
  --connector-glow: rgba(167, 139, 250, 0.34);
  --connector-anchor-size: 0.68rem;
  --connector-desktop-height: 3.9rem;
  --connector-mobile-width: 3rem;
  position: relative;
  padding: 0.5rem 0;
}

#yb-como-funciona .yb-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--steps-gap);
}

#yb-como-funciona .yb-step-card {
  position: relative;
  z-index: 1;
}

/* Conector SVG com voltas elegantes (desktop/mobile) */
#yb-como-funciona .yb-step-connector {
  position: absolute;
  top: 50%;
  left: calc(100% - 1px);
  width: var(--steps-gap);
  height: var(--connector-desktop-height);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

#yb-como-funciona .yb-step-connector-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

#yb-como-funciona .yb-step-connector-svg--mobile {
  display: none;
}

#yb-como-funciona .yb-step-connector-path {
  stroke: var(--connector-color);
  stroke-width: var(--connector-thickness);
  opacity: 0.92;
  filter: drop-shadow(0 0 8px var(--connector-glow));
}

/* Visibilidade do helper no desktop */
#yb-como-funciona .yb-step-card:nth-child(3n) .yb-step-connector,
#yb-como-funciona .yb-step-card:last-child .yb-step-connector {
  display: none;
}

/* Âncora de entrada no card que recebe a conexão */
#yb-como-funciona .yb-step-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -1px;
  width: var(--connector-anchor-size);
  height: var(--connector-anchor-size);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(206, 177, 255, 0.92) 42%, rgba(167, 139, 250, 0.55) 72%, rgba(167, 139, 250, 0) 100%);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.35), 0 0 12px var(--connector-glow);
  pointer-events: none;
}

/* Não mostra âncora de entrada no primeiro card de cada linha */
#yb-como-funciona .yb-step-card:nth-child(3n + 1)::before {
  opacity: 0;
}

/* Cards da section como funciona: glassmorphism */
#yb-como-funciona .yb-steps .yb-step-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  background:
    linear-gradient(210deg, rgba(255, 255, 255, 0.08) 0%, transparent 35%),
    linear-gradient(180deg, rgba(31, 27, 90, 0.25), rgba(21, 20, 43, 0.4));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#yb-como-funciona .yb-steps .yb-step-card:hover {
  transform: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

#yb-como-funciona .yb-steps .yb-step-card h3 {
  color: var(--ninna-text-main);
}

#yb-como-funciona .yb-steps .yb-step-card p {
  color: var(--ninna-text-body);
}

/* Mobile: linha vira conexão vertical entre cards empilhados */
@media (max-width: 960px) {
  #yb-como-funciona .yb-steps-wrapper {
    --steps-gap: 2rem;
    --connector-mobile-width: 2.85rem;
  }

  #yb-como-funciona .yb-step-card::before {
    top: -1px;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }

  #yb-como-funciona .yb-step-card:nth-child(3n + 1)::before {
    opacity: 1;
  }

  #yb-como-funciona .yb-step-card:first-child::before {
    opacity: 0;
  }

  #yb-como-funciona .yb-step-connector {
    top: calc(100% - 1px);
    left: 50%;
    width: var(--connector-mobile-width);
    height: var(--steps-gap);
    transform: translateX(-50%);
    display: none;
  }

  #yb-como-funciona .yb-step-connector-svg--desktop {
    display: none;
  }

  #yb-como-funciona .yb-step-connector-svg--mobile {
    display: block;
  }

  #yb-como-funciona .yb-step-card:not(:last-child) .yb-step-connector {
    display: block;
  }

  #yb-como-funciona .yb-step-card:nth-child(even) .yb-step-connector-svg--mobile {
    transform: scaleX(-1);
    transform-origin: center;
  }
}

#yb-como-funciona .yb-step-number {
  background: rgba(139, 92, 246, 0.25);
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: #fff;
}

/* Prova social: contraste com hero, fundo mais sólido */
#social-proof.lp-social-proof {
  background: linear-gradient(180deg, #15142b 0%, #1a1838 50%, #0f0e1f 100%);
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  border-bottom: 1px solid var(--ninna-border);
  padding: clamp(4rem, 10vw, 6rem) 0;
}

/* Benefícios: cor de fundo da trusted-by section Superhuman (#f7f5f2 = neutral-5) */
#beneficios.lp-beneficios {
  position: relative;
  overflow: hidden;
  background-color: #f7f5f2;
  background-image:
    /* Linhas diagonais sutis (estilo Superhuman) */
    repeating-linear-gradient(-55deg,
      transparent,
      transparent 4px,
      rgba(220, 215, 211, 0.35) 4px,
      rgba(220, 215, 211, 0.35) 5px),
    /* Círculos suaves nos cantos - detalhe decorativo */
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(110, 231, 183, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 5% 90%, rgba(167, 139, 250, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 95% 15%, rgba(110, 231, 183, 0.04) 0%, transparent 50%);
  background-size: auto, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  border-top: 1px solid rgba(45, 44, 80, 0.2);
  border-bottom: 1px solid rgba(45, 44, 80, 0.2);
  padding: clamp(4rem, 10vw, 6rem) 0;
}

/* Ajustes de contraste para fundo claro (Superhuman trusted-by style) */
#beneficios.lp-beneficios .yb-beneficios-header .section-title {
  color: #241013;
}



#beneficios.lp-beneficios .yb-beneficios-header .section-subtitle {
  color: rgba(36, 16, 19, 0.76);
}

#beneficios.lp-beneficios .yb-eyebrow--muted {
  background: rgba(36, 16, 19, 0.08);
  border-color: rgba(36, 16, 19, 0.12);
  color: #421d24;
}

#beneficios.lp-beneficios .yb-benefit {
  border-color: rgba(36, 16, 19, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 245, 242, 0.95) 100%);
  box-shadow: 0 4px 16px rgba(36, 16, 19, 0.08);
}

#beneficios.lp-beneficios .yb-benefit:hover {
  box-shadow: 0 8px 24px rgba(36, 16, 19, 0.12);
}

#beneficios.lp-beneficios .yb-benefit h3 {
  color: #241013;
}

#beneficios.lp-beneficios .yb-benefit p {
  color: rgba(36, 16, 19, 0.76);
}

#beneficios.lp-beneficios .yb-benefit .yb-result {
  color: #148072;
}

#beneficios.lp-beneficios .yb-benefit-number {
  background: rgba(113, 76, 182, 0.15);
  border-color: rgba(113, 76, 182, 0.35);
  color: #533192;
}

/* Header da section benefícios */
.yb-beneficios-header {
  text-align: center;
  margin-bottom: 2.5rem;
  animation: yb-fade-up 0.5s ease both;
}

.yb-beneficios-header .section-title {
  font-weight: 600;
}

.yb-beneficios-header .section-subtitle {
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* Header da prova social */
.yb-social-proof-header {
  text-align: center;
  margin-bottom: 2.5rem;
  animation: yb-fade-up 0.5s ease both;
}

.yb-eyebrow--muted {
  animation: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

.yb-social-proof-title {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 600;
}

.yb-social-proof-subtitle {
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.yb-social-proof-microcopy {
  margin: 0.5rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.yb-verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yb-verified-badge svg {
  width: 16px;
  height: 16px;
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2rem;
  align-items: center;
  min-height: 72vh;
  padding-top: 3rem;
}

.hero h1 {
  font-family: var(--font-family-sans);
  font-size: clamp(var(--font-size-32), 3.8vw, var(--font-size-50));
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-default);
  margin: 0 0 1rem;
}

.hero p {
  font-family: var(--font-family-sans);
  color: var(--ninna-text-body);
  font-size: var(--font-size-18);
  line-height: calc(24 / 16);
  max-width: 62ch;
  margin: 0 0 1.2rem;
}

.hero-proof {
  font-family: var(--font-family-sans);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--font-size-14);
  color: var(--ninna-text-body);
  margin-bottom: 1rem;
}

.hero-proof::before {
  content: '';
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--event-feed);
  box-shadow: 0 0 10px rgba(110, 231, 183, 0.8);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-card {
  border: 1px solid var(--ninna-border);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(180deg, rgba(35, 34, 66, 0.78) 0%, rgba(21, 20, 43, 0.98) 100%);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.hero-card h3 {
  font-family: var(--font-family-sans);
  margin: 0 0 0.55rem;
  font-size: var(--font-size-16);
}

.hero-card p {
  font-family: var(--font-family-sans);
  margin: 0;
  color: var(--ninna-text-body);
}

.stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.stat-item {
  border: 1px solid var(--ninna-border);
  border-radius: var(--radius);
  background: rgba(21, 20, 43, 0.8);
  padding: 0.85rem;
}

.stat-label {
  font-family: var(--font-family-sans);
  display: block;
  color: var(--ninna-text-muted);
  font-size: var(--font-size-12);
}

.stat-value {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
}

.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--ninna-border);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(21, 20, 43, 0.8);
  padding: 1.2rem;
}

.card h3 {
  font-family: var(--font-family-sans);
  margin-top: 0;
}

.card p {
  font-family: var(--font-family-sans);
  color: var(--ninna-text-body);
}

.badge {
  font-family: var(--font-family-sans);
  display: inline-block;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.03em;
}

.badge-sleep {
  color: #241637;
  background: var(--event-sleep);
}

.badge-feed {
  color: #083326;
  background: var(--event-feed);
}

.badge-health {
  color: #450f14;
  background: var(--event-health);
}

.section-title {
  font-family: var(--font-family-sans);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-default);
  margin: 0 0 0.75rem;
}

.section-subtitle {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-16);
  line-height: var(--line-height-open);
  margin: 0 0 1.4rem;
  color: var(--ninna-text-body);
  max-width: 70ch;
}

.testimonial {
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: Georgia, 'Times New Roman', serif;
  position: absolute;
  top: -0.25rem;
  left: 0.5rem;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(167, 139, 250, 0.4);
  opacity: 0.9;
}

/* Testimonial na prova social: aspas decorativas */
#social-proof .testimonial::before {
  content: '\201C';
  font-size: 2.25rem;
  top: -0.15rem;
  left: 0.4rem;
  color: rgba(139, 92, 246, 0.35);
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

/* ─── Data App Section ──────────────────────────────────────── */
.dataapp {
  padding: 5.5rem 1.5rem 6.5rem;
  background: var(--ninna-bg);
  position: relative;
  overflow: hidden;
}

.dataapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-linear-gradient(left, transparent 0%, rgba(139, 92, 246, 0.18) 35%, rgba(139, 92, 246, 0.18) 65%, transparent 100%);
  background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.18) 35%, rgba(139, 92, 246, 0.18) 65%, transparent 100%);
  pointer-events: none;
}

.dataapp__orb {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: -webkit-radial-gradient(center, circle, rgba(139, 92, 246, 0.07) 0%, transparent 65%);
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.dataapp__inner {
  max-width: 1100px;
  margin: 0 auto;
  /* Flex fallback for browsers without CSS Grid */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* Grid — overrides flex in all modern browsers */
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  grid-gap: 0 4.5rem;
  /* legacy alias: Chrome ≤ 65, Safari 10–11, FF ≤ 60 */
  gap: 0 4.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Copy (left) ── */
.dataapp__eyebrow {
  display: inline-block;
  font-family: var(--font-family-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ninna-primary);
  margin-bottom: 1.1rem;
}

.dataapp__heading {
  font-size: 1.75rem;
  /* static fallback: Safari < 13.4, iOS < 13.4 */
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.16;
  color: var(--ninna-text-main);
  margin: 0 0 1.15rem;
}

.dataapp__body {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ninna-text-body);
  margin: 0 0 0.8rem;
}

.dataapp__body:last-of-type {
  margin-bottom: 0;
}

.dataapp__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
}

.dataapp__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ninna-text-body);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ninna-border);
  border-radius: 9999px;
  padding: 5px 13px 5px 10px;
}

.dataapp__tag-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.dataapp__tag-dot--sleep {
  background: var(--ninna-primary);
}

.dataapp__tag-dot--feed {
  background: #6ee7b7;
}

.dataapp__tag-dot--diaper {
  background: #fbbf24;
}

/* ── Visual (right) ── */
.dataapp__visual {
  position: relative;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 172px;
  /* room for float cards */
}

/* ─ Chart card ─ */
.da-card {
  background: rgba(18, 17, 38, 0.97);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 18px;
  width: 248px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.da-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
}

.da-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ninna-text-main);
}

.da-card__badge {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 5px;
  padding: 3px 7px;
  font-family: var(--font-family-mono);
  font-size: 8px;
  font-weight: 600;
  color: rgba(167, 139, 250, 0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.da-card__range {
  margin-bottom: 3px;
}

.da-card__range-val {
  font-size: 26px;
  font-weight: 700;
  color: var(--ninna-text-main);
  letter-spacing: -0.5px;
}

.da-card__range-unit {
  font-size: 20px;
  font-weight: 300;
  color: var(--ninna-text-muted);
  margin-left: 3px;
}

.da-card__period {
  font-size: 10px;
  color: var(--ninna-text-muted);
  margin: 0 0 16px;
}

/* ─ Bar chart ─ */
.da-chart-wrap {
  position: relative;
  height: 90px;
  margin-bottom: 16px;
}

.da-avg-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  height: 1.5px;
  background: rgba(139, 92, 246, 0.22);
  z-index: 1;
}

.da-avg-label {
  position: absolute;
  top: 4px;
  right: 2px;
  background: var(--ninna-primary);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: var(--font-family-mono);
  font-size: 9px;
  font-weight: 600;
  z-index: 3;
  letter-spacing: 0.04em;
}

.da-chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-around;
  height: 100%;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

.da-bar-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: 2;
}

.da-bar-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.da-bar {
  width: 16px;
  background: -webkit-linear-gradient(top, #8b5cf6 0%, #a78bfa 100%);
  background: linear-gradient(to bottom, #8b5cf6 0%, #a78bfa 100%);
  border-radius: 7px;
  position: relative;
  -webkit-transition: -webkit-transform 0.22s ease;
  transition: transform 0.22s ease;
  transform-origin: bottom;
}

.da-bar:hover {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

/* #10 — Barras crescem do zero quando a\u00e0seção entra na viewport (.da-chart.is-visible) */
.da-chart.is-visible .da-bar {
  animation: da-bar-grow 0.55s cubic-bezier(0.34, 1.38, 0.64, 1) both;
}

.da-chart.is-visible .da-bar--seg {
  animation-delay: 0.05s;
}

.da-chart.is-visible .da-bar--ter {
  animation-delay: 0.10s;
}

.da-chart.is-visible .da-bar--qua {
  animation-delay: 0.15s;
}

.da-chart.is-visible .da-bar--qui {
  animation-delay: 0.20s;
}

.da-chart.is-visible .da-bar--sex {
  animation-delay: 0.25s;
}

.da-chart.is-visible .da-bar--sab {
  animation-delay: 0.30s;
}

.da-chart.is-visible .da-bar--dom {
  animation-delay: 0.35s;
}

@keyframes da-bar-grow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.da-dot {
  display: block;
  width: 7px;
  height: 7px;
  background: #12112a;
  border: 1.5px solid #a78bfa;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.da-dot--top {
  top: -3px;
}

.da-dot--btm {
  bottom: -3px;
}

.da-day {
  font-size: 8px;
  color: var(--ninna-text-muted);
  font-weight: 500;
}

/* Baby sleep: 0–16h scale, container 90px
   avg ~13h → avg-line at top: 38%                                     */
.da-bar--seg {
  height: 52px;
  margin-bottom: 7px;
}

/* 14h */
.da-bar--ter {
  height: 42px;
  margin-bottom: 10px;
}

/* 12h */
.da-bar--qua {
  height: 60px;
  margin-bottom: 5px;
}

/* 15h */
.da-bar--qui {
  height: 48px;
  margin-bottom: 8px;
}

/* 13h */
.da-bar--sex {
  height: 38px;
  margin-bottom: 11px;
}

/* 11h */
.da-bar--sab {
  height: 55px;
  margin-bottom: 6px;
}

/* 14h */
.da-bar--dom {
  height: 68px;
  margin-bottom: 4px;
}

/* 16h – record */

/* ─ Readings ─ */
.da-readings {
  border-top: 1px solid rgba(139, 92, 246, 0.12);
  padding-top: 10px;
}

.da-reading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.07);
}

.da-reading:last-child {
  border-bottom: none;
}

.da-reading__time {
  font-size: 9px;
  color: var(--ninna-text-muted);
}

.da-reading__val {
  font-family: var(--font-family-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--ninna-text-main);
}

/* ─ Floating mini-cards ─ */
.da-float {
  position: absolute;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: rgba(11, 10, 26, 0.98);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  padding: 10px 14px 10px 10px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
  z-index: 3;
  min-width: 155px;
}

.da-float__stripe {
  display: block;
  width: 3px;
  height: 28px;
  border-radius: 2px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.da-float--feed {
  top: 52px;
}

.da-float--diaper {
  bottom: 72px;
}

.da-float--feed .da-float__stripe {
  background: #6ee7b7;
}

.da-float--diaper .da-float__stripe {
  background: #fbbf24;
}

.da-float__label {
  font-size: 9px;
  font-weight: 500;
  color: var(--ninna-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0 0 3px;
}

.da-float__val {
  font-size: 12px;
  font-weight: 700;
  color: var(--ninna-text-main);
  margin: 0;
}

/* ─ Responsive ─ */
@media (max-width: 920px) {
  .dataapp__inner {
    display: block;
    /* safest single-column fallback across all engines */
    grid-template-columns: 1fr;
  }

  .dataapp__copy {
    margin-bottom: 3rem;
  }

  .dataapp__visual {
    padding-right: 0;
    min-height: 320px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .da-float {
    display: none;
  }
}

@media (max-width: 480px) {
  .dataapp {
    padding: 3.5rem 1rem 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .da-bar {
    -webkit-transition: none;
    transition: none;
  }
}

/* ─── Song / Sleep Sounds Section ───────────────────────────── */
.song {
  padding: 5.5rem 1.5rem 6.5rem;
  background: var(--ninna-surface);
  /* #15142B — clear contrast from adjacent #0B0A18 sections */
  position: relative;
  overflow: hidden;
}

/* Top 1-px rule */
.song::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-linear-gradient(left, transparent 0%, rgba(139, 92, 246, 0.22) 35%, rgba(139, 92, 246, 0.22) 65%, transparent 100%);
  background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.22) 35%, rgba(139, 92, 246, 0.22) 65%, transparent 100%);
  pointer-events: none;
}

/* Ambient orb — top-left, visual balance vs player on right */
.song::after {
  content: '';
  position: absolute;
  top: -160px;
  left: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: -webkit-radial-gradient(center, circle, rgba(139, 92, 246, 0.05) 0%, transparent 65%);
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* ── 2-column grid ── */
.song__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 5rem;
  gap: 0 5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Copy (left) ── */
.song__eyebrow {
  display: inline-block;
  font-family: var(--font-family-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ninna-primary);
  margin-bottom: 1.1rem;
}

.song__heading {
  font-size: 1.75rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.16;
  color: var(--ninna-text-main);
  margin: 0 0 1.15rem;
}

.song__body {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ninna-text-body);
  margin: 0 0 2rem;
}

.song__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.song__cat {
  font-size: 13px;
  font-weight: 500;
  color: var(--ninna-text-body);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ninna-border);
  border-radius: 9999px;
  padding: 6px 16px;
  cursor: pointer;
  /* #9 — clicável */
  -webkit-transition: color 0.18s, border-color 0.18s, background-color 0.18s;
  transition: color 0.18s, border-color 0.18s, background-color 0.18s;
}

.song__cat:hover {
  color: var(--ninna-primary);
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.06);
}

.song__cat--active {
  color: var(--ninna-primary);
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.09);
}

/* ── Stage (right) ── */
.song__stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
}

/* ─ Player card ─ */
.sp-card {
  width: 100%;
  max-width: 320px;
  background: rgba(11, 10, 26, 0.97);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 28px;
  padding: 28px 24px 22px;
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Vinyl wrap */
.sp-vinyl-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
}

/* Ambient pulse glow */
.sp-vinyl__glow {
  position: absolute;
  top: -28px;
  right: -28px;
  bottom: -28px;
  left: -28px;
  /* inset: -28px — Safari < 14.1 fallback */
  border-radius: 50%;
  background: -webkit-radial-gradient(center, circle, rgba(139, 92, 246, 0.16) 0%, transparent 65%);
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.16) 0%, transparent 65%);
  -webkit-animation: sp-pulse 3.2s ease-in-out infinite;
  animation: sp-pulse 3.2s ease-in-out infinite;
}

/* Rotating disc */
.sp-vinyl {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #131130;
  /* solid fallback: Firefox < 83, Samsung Internet < 14, no conic-gradient */
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 18%),
    radial-gradient(circle at 68% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 16%),
    conic-gradient(from 0deg, #0f0e20, #1e1a38, #0f0e20, #1e1a38, #0f0e20, #1e1a38, #0f0e20, #1e1a38);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.65),
    0 0 0 1.5px rgba(255, 255, 255, 0.04);
  -webkit-animation: sp-rotate 22s linear infinite;
  animation: sp-rotate 22s linear infinite;
}

/* Concentric groove rings via ::before box-shadow */
.sp-vinyl::before {
  content: '';
  position: absolute;
  top: 22px;
  right: 22px;
  bottom: 22px;
  left: 22px;
  /* inset: 22px — Safari < 14.1 fallback */
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.022),
    0 0 0 28px rgba(255, 255, 255, 0.013);
  pointer-events: none;
}

/* Center label */
.sp-vinyl__label {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: -webkit-linear-gradient(135deg, #8b5cf6 0%, #4c1d95 100%);
  background: linear-gradient(135deg, #8b5cf6 0%, #4c1d95 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Track info */
.sp-track {
  text-align: center;
  margin-bottom: 18px;
}

.sp-track__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ninna-text-main);
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}

.sp-track__meta {
  font-size: 12px;
  color: var(--ninna-text-body);
  margin: 0;
}

/* Progress bar */
.sp-progress {
  margin-bottom: 20px;
}

.sp-progress__rail {
  position: relative;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  margin-bottom: 7px;
  cursor: pointer;
}

.sp-progress__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: -webkit-linear-gradient(left, #6d46e9 0%, #8b5cf6 100%);
  background: linear-gradient(90deg, #6d46e9 0%, #8b5cf6 100%);
  border-radius: 9999px;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

/* #13 — Thumb do progress bar: cursor grab indica interatividade */
.sp-progress__thumb {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  cursor: grab;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sp-progress__thumb:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.25);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.65);
}

.sp-progress__times {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: var(--font-family-mono);
  font-size: 10px;
  color: rgba(160, 160, 192, 0.55);
}

/* Controls */
.sp-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 18px;
}

.sp-btn {
  all: unset;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: color 0.18s, -webkit-transform 0.18s;
  transition: color 0.18s, transform 0.18s;
}

/* :focus fallback for Safari < 15.4 (no :focus-visible support) */
.sp-btn:focus {
  outline: 2px solid var(--ninna-primary);
  outline-offset: 3px;
}

/* Suppress outline on mouse/touch — only show for keyboard in supporting browsers */
.sp-btn:focus:not(:focus-visible) {
  outline: none;
}

.sp-btn:focus-visible {
  outline: 2px solid var(--ninna-primary);
  outline-offset: 3px;
}

.sp-btn--skip {
  width: 38px;
  height: 38px;
  color: rgba(160, 160, 192, 0.6);
}

.sp-btn--skip:hover {
  color: var(--ninna-text-main);
}

.sp-btn--play {
  width: 58px;
  height: 58px;
  background: -webkit-linear-gradient(135deg, #6d46e9 0%, #8b5cf6 100%);
  background: linear-gradient(135deg, #6d46e9 0%, #8b5cf6 100%);
  color: #fff;
  box-shadow:
    0 0 24px rgba(139, 92, 246, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.35);
}

.sp-btn--play:hover {
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
  box-shadow:
    0 0 32px rgba(139, 92, 246, 0.6),
    0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Volume */
.sp-volume {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: rgba(160, 160, 192, 0.4);
}

.sp-volume__track {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
}

.sp-volume__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(160, 160, 192, 0.3);
  border-radius: 9999px;
}

/* ─ Sound list ─ */
.sp-sounds {
  width: 100%;
  max-width: 320px;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(11, 10, 26, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.sp-sound {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  -webkit-transition: background-color 0.18s;
  transition: background-color 0.18s;
}

.sp-sound:last-child {
  border-bottom: none;
}

.sp-sound--active {
  background: rgba(139, 92, 246, 0.07);
}

.sp-sound__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sp-sound__icon--purple {
  background: rgba(139, 92, 246, 0.14);
}

.sp-sound__icon--blue {
  background: rgba(99, 179, 237, 0.12);
}

.sp-sound__icon--teal {
  background: rgba(110, 231, 183, 0.10);
}

.sp-sound__icon--rose {
  background: rgba(251, 113, 133, 0.10);
}

.sp-sound__info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.sp-sound__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ninna-text-main);
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-sound--active .sp-sound__name {
  color: var(--ninna-primary);
}

.sp-sound__dur {
  font-family: var(--font-family-mono);
  font-size: 11px;
  color: var(--ninna-text-body);
  margin: 0;
}

.sp-sound__eq {
  color: var(--ninna-primary);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* #4 — Equalizer animado nas barras do som ativo */
.sp-sound--active .sp-sound__eq rect:nth-child(1) {
  animation: sp-eq-bar 0.85s ease-in-out infinite;
  transform-origin: bottom;
}

.sp-sound--active .sp-sound__eq rect:nth-child(2) {
  animation: sp-eq-bar 0.65s ease-in-out 0.18s infinite;
  transform-origin: bottom;
}

.sp-sound--active .sp-sound__eq rect:nth-child(3) {
  animation: sp-eq-bar 1.1s ease-in-out 0.35s infinite;
  transform-origin: bottom;
}

@keyframes sp-eq-bar {

  0%,
  100% {
    transform: scaleY(0.45);
  }

  50% {
    transform: scaleY(1.0);
  }
}

/* ─ Keyframes ─ */
@-webkit-keyframes sp-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes sp-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes sp-pulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

@keyframes sp-pulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* ─ Gap fallbacks (Safari ≤ 14.0, iOS ≤ 14.4 — no flex gap support) ─ */
/* Margin-based spacing replaces gap; @supports resets them in modern browsers */
.song__cat {
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
}

.sp-card {
  margin-bottom: 1.25rem;
}

.sp-sound__icon {
  margin-right: 12px;
}

.sp-btn--skip+.sp-btn--play,
.sp-btn--play+.sp-btn--skip {
  margin-left: 1.5rem;
}

.sp-volume>svg {
  margin-right: 10px;
}

@supports (gap: 0px) {

  /* gap is supported — reset all margin fallbacks */
  .song__cat {
    margin-right: 0;
    margin-bottom: 0;
  }

  .sp-card {
    margin-bottom: 0;
  }

  .sp-sound__icon {
    margin-right: 0;
  }

  .sp-btn--skip+.sp-btn--play,
  .sp-btn--play+.sp-btn--skip {
    margin-left: 0;
  }

  .sp-volume>svg {
    margin-right: 0;
  }
}

/* ─ Responsive ─ */
@media (max-width: 920px) {
  .song__inner {
    display: block;
    grid-template-columns: 1fr;
  }

  .song__copy {
    margin-bottom: 3rem;
  }

  .song__stage {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .song {
    padding: 3.5rem 1rem 4.5rem;
  }

  .sp-card,
  .sp-sounds {
    max-width: 100%;
  }

  .sp-vinyl-wrap,
  .sp-vinyl {
    width: 152px;
    height: 152px;
  }

  .sp-vinyl__label {
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .sp-vinyl,
  .sp-vinyl__glow {
    -webkit-animation: none;
    animation: none;
  }

  .sp-btn,
  .sp-btn--play {
    -webkit-transition: none;
    transition: none;
  }
}

/* ─── Food / Recipes Section ─────────────────────────────────── */
.food {
  padding: 5.5rem 1.5rem 6.5rem;
  background: var(--ninna-bg);
  /* #0B0A18 — cycles back from #song's #15142B */
  position: relative;
  overflow: hidden;
}

/* Top 1-px rule */
.food::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-linear-gradient(left, transparent 0%, rgba(139, 92, 246, 0.2) 35%, rgba(139, 92, 246, 0.2) 65%, transparent 100%);
  background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.2) 35%, rgba(139, 92, 246, 0.2) 65%, transparent 100%);
  pointer-events: none;
}

/* Warm ambient orb — top-right, subtle food warmth that contrasts the purple sections */
.food__orb {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: -webkit-radial-gradient(center, circle, rgba(249, 115, 22, 0.05) 0%, transparent 65%);
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* ── 2-column grid ── */
.food__inner {
  max-width: 1100px;
  margin: 0 auto;
  /* Flex fallback */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* Grid */
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 5rem;
  gap: 0 5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Copy (left) ── */
.food__eyebrow {
  display: inline-block;
  font-family: var(--font-family-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ninna-primary);
  margin-bottom: 1.1rem;
}

.food__heading {
  font-size: 1.75rem;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 800;
  line-height: 1.14;
  color: var(--ninna-text-main);
  margin: 0 0 0.55rem;
}

/* "todo santo dia" — italic emphasis in primary color */
.food__heading em {
  font-style: italic;
  color: var(--ninna-primary);
  font-weight: 900;
}

.food__subline {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ninna-text-body);
  margin: 0 0 1.4rem;
}

.food__body {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ninna-text-body);
  margin: 0 0 0.8rem;
}

.food__body:last-of-type {
  margin-bottom: 0;
}

/* KPI stat — "1.000+" with gradient text */
.food__kpi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 2rem;
}

.food__kpi-num {
  font-size: 2.6rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  /* Gradient text — solid color fallback for non-supporting browsers */
  color: var(--ninna-primary);
  background: -webkit-linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.food__kpi-num sup {
  font-size: 0.55em;
  vertical-align: super;
}

.food__kpi-label {
  font-family: var(--font-family-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ninna-text-body);
}

/* ── Stage (right) ── */
.food__stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* ─ Food card (iFood-style dark card) ─ */
.fd-card {
  width: 100%;
  max-width: 380px;
  background: rgba(18, 17, 38, 0.98);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ─ Tab bar ─ */
.fd-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 12px;
}

.fd-tab {
  all: unset;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 16px 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(160, 160, 192, 0.5);
  text-align: center;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  -webkit-transition: color 0.18s;
  transition: color 0.18s;
}

.fd-tab--active {
  color: var(--ninna-primary);
}

/* Active tab underline indicator */
.fd-tab--active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--ninna-primary);
  border-radius: 9999px;
}

/* :focus pattern: universal fallback → suppress on click → keyboard-only */
.fd-tab:focus {
  outline: 2px solid var(--ninna-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.fd-tab:focus:not(:focus-visible) {
  outline: none;
}

.fd-tab:focus-visible {
  outline: 2px solid var(--ninna-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─ Panels (conteúdo por aba) ─ */
.fd-panels {
  position: relative;
}

.fd-panel {
  display: none;
}

.fd-panel.fd-panel--active {
  display: block;
}

/* ─ Featured hero row (iFood-style horizontal card) ─ */
.fd-hero {
  display: grid;
  grid-template-columns: 140px 1fr;
  grid-template-rows: auto 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 140px;
}

/* Cover/art area (emoji + decorative) — left column, spans both rows */
.fd-hero__cover,
.fd-hero__art {
  grid-column: 1;
  grid-row: 1 / -1;
  width: 140px;
  min-height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: -webkit-linear-gradient(135deg, #2a1505 0%, #1e1230 100%);
  background: linear-gradient(135deg, #2a1505 0%, #1e1230 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fd-hero__emoji {
  font-size: 52px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.fd-hero__rings,
.fd-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fd-hero__glow {
  background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
}

.fd-hero__info {
  grid-column: 2;
  grid-row: 2;
  padding: 14px 20px 24px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}

.fd-hero__badge {
  grid-column: 2;
  grid-row: 1;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: linear-gradient(180deg, #EAD6AC 0%, #D4B47D 100%);
  border: 1px solid rgba(250, 236, 202, 0.5);
  border-radius: 6px;
  padding: 6px 10px;
  margin: 18px 20px 0 16px;
  box-shadow:
    0 0 0 1px rgba(250, 236, 202, 0.28),
    0 2px 8px rgba(112, 85, 42, 0.2);
}

.fd-hero__badge svg {
  width: 12px;
  height: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #1a1a1a;
}

.fd-hero__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ninna-text-main);
  line-height: 1.3;
  margin: 0;
}

.fd-hero__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

/* Metadata chips (time, difficulty) */
.fd-chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(160, 160, 192, 0.75);
}

.fd-chip svg {
  width: 12px;
  height: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Section divider: "Mais receitas 3" */
.fd-section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 6px;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fd-sh__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ninna-text-main);
}

.fd-sh__count {
  font-size: 11px;
  font-weight: 600;
  color: rgba(160, 160, 192, 0.6);
}

/* ─ Recipe list ─ */
.fd-list {
  list-style: none;
  padding: 8px 0 12px;
  margin: 0;
}

.fd-list-microcopy {
  font-size: 11px;
  color: rgba(160, 160, 192, 0.6);
  margin: 0;
  padding: 12px 20px 16px;
  text-align: center;
}

.fd-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  -webkit-transition: background-color 0.18s;
  transition: background-color 0.18s;
}

.fd-row:last-child {
  border-bottom: none;
}

.fd-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Icon tile (emoji chip) */
.fd-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fd-icon--rose {
  background: rgba(239, 68, 68, 0.12);
}

.fd-icon--amber {
  background: rgba(245, 158, 11, 0.12);
}

.fd-icon--grape {
  background: rgba(139, 92, 246, 0.14);
}

.fd-row__info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.fd-row__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ninna-text-main);
  margin: 0 0 3px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fd-row__sub {
  font-size: 11px;
  color: rgba(160, 160, 192, 0.7);
  margin: 0;
}

.fd-row__arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: rgba(160, 160, 192, 0.5);
  -webkit-transition: color 0.18s;
  transition: color 0.18s;
}

.fd-row:hover .fd-row__arrow {
  color: var(--ninna-primary);
}

/* Bebê / Mamãe tags — food-specific color coding */
.fd-tag {
  font-size: 10px;
  font-weight: 600;
  border-radius: 9999px;
  padding: 3px 9px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.fd-tag--baby {
  color: #f97316;
  background: rgba(249, 115, 22, 0.10);
  border: 1px solid rgba(249, 115, 22, 0.22);
}

.fd-tag--mom {
  color: #10b981;
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.22);
}

/* ─ Gap fallbacks (Safari ≤ 14.0, iOS ≤ 14.4 — no flex gap) ─ */
.food__kpi-num {
  margin-right: 0.6rem;
}

.fd-hero__badge {
  margin-bottom: 5px;
}

.fd-hero__name {
  margin-bottom: 5px;
}

.fd-chip {
  margin-right: 6px;
}

.fd-chip:last-child {
  margin-right: 0;
}

.fd-icon {
  margin-right: 12px;
}

.fd-tag {
  margin-left: 8px;
}

@supports (gap: 0px) {
  .food__kpi-num {
    margin-right: 0;
  }

  .fd-hero__badge {
    margin-bottom: 0;
  }

  .fd-hero__name {
    margin-bottom: 0;
  }

  .fd-chip {
    margin-right: 0;
  }

  .fd-icon {
    margin-right: 0;
  }

  .fd-tag {
    margin-left: 0;
  }
}

/* ─ Responsive ─ */
@media (max-width: 920px) {
  .food__inner {
    display: block;
    grid-template-columns: 1fr;
  }

  .food__copy {
    margin-bottom: 3rem;
  }

  .food__stage {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .food {
    padding: 3.5rem 1rem 4.5rem;
  }

  .fd-card {
    max-width: 100%;
  }

  .fd-hero__cover,
  .fd-hero__art {
    width: 120px;
  }

  .fd-hero__emoji {
    font-size: 40px;
  }

  .fd-hero {
    grid-template-columns: 120px 1fr;
    min-height: 140px;
  }

  .fd-tab {
    font-size: 11px;
    padding: 14px 6px 12px;
  }

  .fd-hero__badge {
    font-size: 9px;
    padding: 5px 8px;
    margin: 12px 16px 0 12px;
  }

  .fd-hero__info {
    padding: 10px 16px 16px 12px;
  }

  .fd-hero__name {
    font-size: 14px;
  }

  .fd-section-head {
    padding: 12px 16px 10px;
  }

  .fd-row {
    padding: 12px 16px;
    gap: 12px;
  }

  .fd-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .fd-row__name {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .fd-tab,
  .fd-row {
    -webkit-transition: none;
    transition: none;
  }
}

/* ─── FAQ v2 ──────────────────────────────────────────────── */
.faq-v2 {
  padding: 5rem 1.5rem 6rem;
  background: linear-gradient(160deg, #13122a 0%, #15142b 100%);
  position: relative;
}

.faq-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.22) 35%, rgba(139, 92, 246, 0.22) 65%, transparent);
  pointer-events: none;
}

/* Split (page-yourbabe) */
.faq-v2--split .faq-v2__wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0 5rem;
  align-items: start;
}

/* Single (front-page) */
.faq-v2--single .faq-v2__wrap-simple {
  max-width: 760px;
}

.faq-v2--single .faq-v2__lead-simple {
  margin-bottom: 2.5rem;
}

/* Lead / left column */
.faq-v2__lead {
  position: sticky;
  top: 3rem;
}

.faq-v2__eyebrow {
  display: inline-block;
  font-family: var(--font-family-mono);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ninna-primary);
  opacity: 0.8;
  margin-bottom: 1.25rem;
}

.faq-v2__heading {
  font-family: var(--font-family-sans);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  color: var(--ninna-text-main);
  margin: 0 0 1.25rem;
}

.faq-v2__heading em {
  font-family: var(--font-family-serif);
  font-style: italic;
  font-weight: var(--font-weight-semibold);
  color: var(--ninna-primary);
  opacity: 0.9;
}

.faq-v2__intro {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-16);
  line-height: var(--line-height-open);
  color: var(--ninna-text-body);
  margin: 0;
  max-width: 30ch;
}

/* List */
.faq-v2__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ninna-border);
}

/* Item */
.faq-v2__item {
  border-bottom: 1px solid var(--ninna-border);
}

/* Trigger */
.faq-v2__trigger {
  all: unset;
  display: grid;
  grid-template-columns: 2.5rem 1fr 2rem;
  align-items: center;
  gap: 0 1rem;
  width: 100%;
  padding: 1.25rem 0.25rem 1.25rem 0;
  cursor: pointer;
  color: var(--ninna-text-main);
  transition: color 0.18s;
}

.faq-v2__trigger:hover {
  color: #fff;
}

.faq-v2__trigger:focus-visible {
  outline: 2px solid var(--ninna-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Number */
.faq-v2__number {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-medium);
  color: rgba(139, 92, 246, 0.42);
  line-height: 1;
  letter-spacing: 0.04em;
  transition: color 0.18s;
  flex-shrink: 0;
}

.faq-v2__item.is-open .faq-v2__number,
.faq-v2__trigger:hover .faq-v2__number {
  color: rgba(139, 92, 246, 0.72);
}

/* Question */
.faq-v2__question {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  text-align: left;
  color: inherit;
}

/* Icon (+/×) */
.faq-v2__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(139, 92, 246, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  flex-shrink: 0;
  position: relative;
  transition:
    border-color 0.25s,
    background-color 0.25s,
    transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.faq-v2__icon::before,
.faq-v2__icon::after {
  content: '';
  position: absolute;
  background: var(--ninna-primary);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.faq-v2__icon::before {
  width: 11px;
  height: 1.5px;
}

.faq-v2__icon::after {
  width: 1.5px;
  height: 11px;
}

.faq-v2__item.is-open .faq-v2__icon {
  border-color: rgba(139, 92, 246, 0.55);
  background: rgba(139, 92, 246, 0.1);
  transform: rotate(45deg);
}

.faq-v2__trigger:hover .faq-v2__icon {
  border-color: rgba(139, 92, 246, 0.42);
}

/* Body — grid-template-rows trick */
.faq-v2__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-v2__item.is-open .faq-v2__body {
  grid-template-rows: 1fr;
}

.faq-v2__body-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-v2__body-inner>p {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-16);
  line-height: var(--line-height-open);
  color: var(--ninna-text-body);
  padding: 0 0 1.4rem 3.5rem;
  margin: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.26s 0.06s, transform 0.26s 0.06s;
}

.faq-v2__item.is-open .faq-v2__body-inner>p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .faq-v2--split .faq-v2__wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-v2__lead {
    position: static;
    margin-bottom: 2.5rem;
  }

  .faq-v2__intro {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .faq-v2 {
    padding: 3.5rem 1rem 4rem;
  }

  .faq-v2__trigger {
    grid-template-columns: 2rem 1fr 1.75rem;
    gap: 0 0.75rem;
    padding: 1rem 0.15rem 1rem 0;
  }

  .faq-v2__question {
    font-size: var(--font-size-14);
  }

  .faq-v2__icon {
    width: 24px;
    height: 24px;
  }

  .faq-v2__body-inner>p {
    padding-left: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .faq-v2__body,
  .faq-v2__icon,
  .faq-v2__icon::before,
  .faq-v2__icon::after,
  .faq-v2__body-inner>p {
    transition: none;
  }
}

/* CTA section: Ninna Cósmico (profundidade + movimento sutil) */
#yb-cta.lp-cta {
  --yb-cta-parallax-y: 0px;
  --yb-cta-parallax-x: 0px;
  --yb-cta-depth-back: 0.2;
  --yb-cta-depth-mid: 0.45;
  --yb-cta-depth-front: 0.75;
  --yb-cta-nebula-blur: 116px;
  --yb-cta-glass-blur: 24px;
  --yb-cta-star-opacity: 0.55;
  --yb-cta-annual-glow: rgba(212, 180, 125, 0.35);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 8%, rgba(139, 92, 246, 0.24) 0%, transparent 38%),
    radial-gradient(circle at 84% 18%, rgba(167, 139, 250, 0.2) 0%, transparent 34%),
    linear-gradient(180deg, #070513 0%, #0b0a18 48%, #05040b 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: clamp(4rem, 10vw, 6rem) 0;
}

#yb-cta.lp-cta .yb-cta-cosmos {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

#yb-cta.lp-cta .yb-cta-nebula,
#yb-cta.lp-cta .yb-cta-stardust,
#yb-cta.lp-cta .yb-cta-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#yb-cta.lp-cta .yb-cta-nebula {
  border-radius: 999px;
  filter: blur(var(--yb-cta-nebula-blur));
  will-change: transform, opacity;
  animation: yb-cta-breathe var(--yb-nebula-duration, 7s) ease-in-out infinite;
}

#yb-cta.lp-cta .yb-cta-nebula--back {
  --yb-nebula-depth: var(--yb-cta-depth-back);
  --yb-nebula-opacity: 0.24;
  --yb-nebula-duration: 9s;
  top: -28%;
  left: -17%;
  width: 78%;
  height: 97%;
  background:
    radial-gradient(circle at 34% 38%, rgba(139, 92, 246, 0.56) 0%, rgba(66, 54, 150, 0.22) 54%, transparent 82%);
  animation-delay: -0.8s;
}

#yb-cta.lp-cta .yb-cta-nebula--mid {
  --yb-nebula-depth: var(--yb-cta-depth-mid);
  --yb-nebula-opacity: 0.32;
  --yb-nebula-duration: 7.25s;
  top: 2%;
  left: 35%;
  width: 62%;
  height: 78%;
  background:
    radial-gradient(circle at 58% 30%, rgba(167, 139, 250, 0.62) 0%, rgba(94, 71, 190, 0.26) 50%, transparent 84%);
  animation-delay: -2.2s;
}

#yb-cta.lp-cta .yb-cta-nebula--front {
  --yb-nebula-depth: var(--yb-cta-depth-front);
  --yb-nebula-opacity: 0.4;
  --yb-nebula-duration: 6.2s;
  top: 31%;
  left: -8%;
  width: 89%;
  height: 92%;
  background:
    radial-gradient(circle at 42% 45%, rgba(139, 92, 246, 0.58) 0%, rgba(58, 44, 128, 0.28) 52%, transparent 84%);
  animation-delay: -3.1s;
}

#yb-cta.lp-cta .yb-cta-stardust {
  opacity: var(--yb-cta-star-opacity);
  mix-blend-mode: screen;
  will-change: opacity, transform;
}

#yb-cta.lp-cta .yb-cta-stardust--a {
  background-image:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.85) 0, rgba(255, 255, 255, 0.85) 1px, transparent 2px),
    radial-gradient(circle at 24% 72%, rgba(167, 139, 250, 0.72) 0, rgba(167, 139, 250, 0.72) 1px, transparent 2px),
    radial-gradient(circle at 39% 42%, rgba(255, 255, 255, 0.8) 0, rgba(255, 255, 255, 0.8) 1px, transparent 2px),
    radial-gradient(circle at 52% 16%, rgba(167, 139, 250, 0.8) 0, rgba(167, 139, 250, 0.8) 2px, transparent 3px),
    radial-gradient(circle at 66% 64%, rgba(255, 255, 255, 0.75) 0, rgba(255, 255, 255, 0.75) 1px, transparent 3px),
    radial-gradient(circle at 81% 28%, rgba(167, 139, 250, 0.76) 0, rgba(167, 139, 250, 0.76) 1px, transparent 2px),
    radial-gradient(circle at 92% 74%, rgba(255, 255, 255, 0.8) 0, rgba(255, 255, 255, 0.8) 2px, transparent 3px);
  animation: yb-cta-twinkle-a 8.5s ease-in-out infinite;
}

#yb-cta.lp-cta .yb-cta-stardust--b {
  background-image:
    radial-gradient(circle at 11% 54%, rgba(167, 139, 250, 0.72) 0, rgba(167, 139, 250, 0.72) 1px, transparent 3px),
    radial-gradient(circle at 28% 12%, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0.7) 2px, transparent 3px),
    radial-gradient(circle at 46% 84%, rgba(255, 255, 255, 0.65) 0, rgba(255, 255, 255, 0.65) 1px, transparent 2px),
    radial-gradient(circle at 63% 32%, rgba(167, 139, 250, 0.75) 0, rgba(167, 139, 250, 0.75) 2px, transparent 3px),
    radial-gradient(circle at 74% 76%, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0.7) 1px, transparent 2px),
    radial-gradient(circle at 89% 18%, rgba(167, 139, 250, 0.65) 0, rgba(167, 139, 250, 0.65) 1px, transparent 2px);
  animation: yb-cta-twinkle-b 11s ease-in-out infinite;
}

#yb-cta.lp-cta .yb-cta-vignette {
  background:
    radial-gradient(circle at 50% 42%, transparent 34%, rgba(6, 5, 13, 0.36) 72%, rgba(3, 3, 8, 0.7) 100%);
}

#yb-cta.lp-cta .wrap {
  position: relative;
  z-index: 2;
}

@keyframes yb-cta-breathe {

  0%,
  100% {
    opacity: var(--yb-nebula-opacity, 0.28);
    transform: translate3d(calc(var(--yb-cta-parallax-x) * var(--yb-nebula-depth, 0.3)),
        calc(var(--yb-cta-parallax-y) * var(--yb-nebula-depth, 0.3)),
        0) scale(1);
  }

  50% {
    opacity: calc(var(--yb-nebula-opacity, 0.28) + 0.08);
    transform: translate3d(calc(var(--yb-cta-parallax-x) * var(--yb-nebula-depth, 0.3)),
        calc(var(--yb-cta-parallax-y) * var(--yb-nebula-depth, 0.3)),
        0) scale(1.06);
  }
}

@keyframes yb-cta-twinkle-a {

  0%,
  100% {
    opacity: calc(var(--yb-cta-star-opacity) * 0.62);
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: calc(var(--yb-cta-star-opacity) * 0.95);
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes yb-cta-twinkle-b {

  0%,
  100% {
    opacity: calc(var(--yb-cta-star-opacity) * 0.38);
    transform: translate3d(0, 0, 0);
  }

  40% {
    opacity: calc(var(--yb-cta-star-opacity) * 0.78);
    transform: translate3d(0, 4px, 0);
  }

  70% {
    opacity: calc(var(--yb-cta-star-opacity) * 0.56);
    transform: translate3d(0, -3px, 0);
  }
}

#yb-cta.lp-cta .yb-cta-header {
  text-align: center;
  margin-bottom: 2rem;
}

#yb-cta.lp-cta .yb-cta-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

#yb-cta.lp-cta .yb-cta-header .yb-eyebrow--muted {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

#yb-cta.lp-cta .yb-cta-header p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-panel {
  border: none;
  border-radius: calc(var(--radius) + 10px);
  background: transparent;
  padding: 1.8rem;
  text-align: center;
}

.cta-panel p {
  font-family: var(--font-family-sans);
  color: var(--ninna-text-body);
  margin: 0.4rem 0 1.1rem;
}

.entry-content {
  font-family: var(--font-family-sans);
  color: var(--ninna-text-main);
}

.entry-content p,
.entry-content li,
.entry-content blockquote {
  font-family: var(--font-family-sans);
  color: var(--ninna-text-body);
}

/* ─── Footer v2 ─────────────────────────────────────────── */
.site-footer {
  font-family: var(--font-family-sans);
  background: #0d0c1f;
  border-top: 1px solid rgba(139, 92, 246, 0.13);
  padding: 4rem 1.5rem 2.5rem;
}

.footer-inner {
  max-width: 660px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

/* Brand block */
.footer-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.55rem;
}

.footer-wordmark {
  font-family: var(--font-family-sans);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.1);
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.footer-wordmark-accent {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 60%, #6ee7b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* fallback for browsers without -webkit-text-fill-color */
  opacity: 0.55;
}

.footer-tagline {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-regular);
  color: rgba(255, 255, 255, 0.26);
  letter-spacing: 0.01em;
  margin: 0;
}

/* Trust pills */
.footer-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-trust-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.7rem;
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 0.44rem 0.95rem 0.44rem 0.75rem;
  white-space: nowrap;
  letter-spacing: 0.015em;
  -webkit-transition: border-color 0.2s, color 0.2s;
  transition: border-color 0.2s, color 0.2s;
}

.footer-trust-item:hover {
  border-color: rgba(139, 92, 246, 0.3);
  color: rgba(255, 255, 255, 0.65);
}

.footer-trust-icon {
  width: 11px;
  height: 11px;
  color: rgba(139, 92, 246, 0.65);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Divider */
.footer-divider {
  width: 100%;
  max-width: 400px;
  height: 1px;
  background: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.07) 30%, rgba(255, 255, 255, 0.07) 70%, transparent);
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.07) 30%, rgba(255, 255, 255, 0.07) 70%, transparent);
  border: none;
}

/* Legal */
.footer-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.2);
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.18s;
  transition: color 0.18s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 520px) {
  .site-footer {
    padding: 3rem 1rem 2rem;
  }

  .footer-trust {
    gap: 0.45rem;
  }

  .footer-trust-item {
    font-size: 0.6875rem;
    padding: 0.4rem 0.8rem 0.4rem 0.65rem;
  }
}

.yb-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom left, rgb(168 164 216 / 50%), rgb(107 165 232 / 50%), rgb(176 112 192 / 60%), rgb(144 136 208 / 50%)),
    linear-gradient(180deg, #7c9ad3, #314682);
  background-position: center;
  background-size: cover;
}

.yb-hero-bg-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 22%, rgb(174 94 255 / 36%) 0%, transparent 46%),
    radial-gradient(circle at 78% 28%, rgb(132 78 255 / 30%) 0%, transparent 44%),
    linear-gradient(180deg, rgb(71 31 122 / 52%) 0%, rgb(83 45 145 / 36%) 38%, rgb(10 6 20 / 24%) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.yb-hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lp-hero-super {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 24, 0.2) 0%, rgba(11, 10, 24, 0.7) 64%, rgba(11, 10, 24, 0.9) 100%),
    radial-gradient(circle at 20% 18%, rgba(139, 92, 246, 0.22), transparent 46%),
    radial-gradient(circle at 78% 8%, rgba(94, 165, 255, 0.15), transparent 36%);
}

.lp-hero-super .yb-headline {
  font-size: var(--font-size-40);
}

.yb-hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.yb-hero-content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow: linha de contexto acima do título */
.yb-eyebrow {
  font-family: var(--font-family-sans);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.45rem 1rem;
  font-size: 10px;
  font-weight: var(--font-weight-medium);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 25%, rgba(255, 255, 255, 0.05) 50%, transparent 75%),
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08));
  background-size: 200% 100%, 100% 100%;
  background-position: -100% 0, 0 0;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: yb-eyebrow-shine 2.5s ease-in-out infinite;
}

/* #1 — Live dot pulsante: comunica "app ativo agora" */
.yb-eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--event-feed);
  /* verde menta do DS */
  box-shadow: 0 0 10px rgba(110, 231, 183, 0.8);
  flex-shrink: 0;
  animation: yb-eyebrow-dot 2.5s ease-in-out infinite;
}

@keyframes yb-eyebrow-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .yb-eyebrow {
    animation: none;
    background-position: 0 0, 0 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 35%, transparent 70%), linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08));
    background-size: 100% 100%, 100% 100%;
  }
}

@keyframes yb-eyebrow-shine {
  0% {
    background-position: -100% 0, 0 0;
  }

  100% {
    background-position: 200% 0, 0 0;
  }
}

.yb-eyebrow::before {
  content: '';
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--event-feed);
  box-shadow: 0 0 10px rgba(110, 231, 183, 0.7);
  flex-shrink: 0;
}

.yb-headline {
  font-family: var(--font-family-sans);
  font-size: clamp(33px, 4vw, var(--font-size-60));
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-default);
  letter-spacing: -0.025em;
  margin: 0 auto 1rem;
  max-width: 14ch;
}

.yb-copy {
  font-family: var(--font-family-sans);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 1);
  margin: 0 auto 1.25rem;
  max-width: 430px;
}

/* Faixa de badges estilo Napper (prova social / diferenciais) */
.yb-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin: 0 auto 1.75rem;
}

.yb-badge {
  font-family: var(--font-family-sans);
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  white-space: nowrap;
}

.yb-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 1.75rem;
}

.yb-pill {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-regular);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* CTA + microcopy em bloco único, mais limpo */
.yb-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* CTA no final das seções */
.yb-section-cta {
  display: flex;
  justify-content: center;
  padding: 2.5rem 0 0;
}

/* Hero button — estratégia Superhuman: fundo escuro, borda sutil, ring roxo, hover suave */
.yb-hero-actions .hero-button,
.yb-section-cta .hero-button {
  --hero-btn-stop-1: #1b1938;
  --hero-btn-stop-2: #1b1938;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 8px 18px;
  min-height: 50px;
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-sans);
  line-height: 1;
  color: var(--ninna-text-main);
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(13, 12, 37, 0.18);
  background: linear-gradient(180deg, var(--hero-btn-stop-1) 0%, var(--hero-btn-stop-2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(14, 18, 27, 0.24), 0 0 0 1px #353088;
  outline-offset: 2px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.yb-hero-actions .hero-button:hover,
.yb-section-cta .hero-button:hover {
  --hero-btn-stop-2: #2d2a5c;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px 0 rgba(14, 18, 27, 0.3), 0 0 0 1px #4a43b0;
}

.yb-hero-actions .hero-button:active,
.yb-section-cta .hero-button:active {
  --hero-btn-stop-1: #16142d;
  --hero-btn-stop-2: #16142d;
  transform: translateY(0);
}

/* Ícone do hero button — container com gradiente roxo/rosa/azul */
.hero-button-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 100%),
    linear-gradient(135deg, #6d46e9 0%, #8b5cf6 40%, #a78bfa 70%, #6ee7b7 100%);
  box-shadow: 0 1px 2px rgba(14, 18, 27, 0.08);
  flex-shrink: 0;
}

.yb-hero-actions .hero-button:hover .hero-button-icon-container,
.yb-section-cta .hero-button:hover .hero-button-icon-container {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%),
    linear-gradient(135deg, #7c5cf7 0%, #a78bfa 50%, #c4b5fd 100%);
}

@keyframes yb-hero-icon-dash {
  0% {
    transform: translateX(0) scale(1);
  }

  22% {
    transform: translateX(8px) scale(0.82);
  }

  52% {
    transform: translateX(-4px) scale(1.12);
  }

  76% {
    transform: translateX(2px) scale(0.97);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

.hero-button-icon-container.is-clicking {
  animation: yb-hero-icon-dash 0.46s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-button-icon {
  width: 16px;
  height: 16px;
  color: #fff;
  transition: transform 0.3s ease-in-out;
}

.yb-hero-actions .hero-button:hover .hero-button-icon,
.yb-section-cta .hero-button:hover .hero-button-icon {
  transform: translateX(4px);
}

/* Hero button — variante dourada (seções como-funciona, dataapp, song, food) */
.hero-button--gold {
  --hero-btn-stop-1: #EAD6AC;
  --hero-btn-stop-2: #D4B47D;
  color: #1a1a1a !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, #EAD6AC 0%, #D4B47D 100%) !important;
  border: 1px solid rgba(250, 236, 202, 0.5) !important;
  box-shadow:
    0 0 0 1px rgba(250, 236, 202, 0.28),
    0 2px 8px rgba(112, 85, 42, 0.2) !important;
}

.hero-button--gold:hover {
  --hero-btn-stop-1: #F0E0B8;
  --hero-btn-stop-2: #DCC18A;
  background: linear-gradient(180deg, #F0E0B8 0%, #DCC18A 100%) !important;
  box-shadow:
    0 0 0 1px rgba(250, 236, 202, 0.34),
    0 4px 12px rgba(112, 85, 42, 0.25) !important;
}

.hero-button--gold:active {
  background: linear-gradient(180deg, #E0D09C 0%, #C9A96D 100%) !important;
}

.hero-button--gold .hero-button-icon {
  color: #1a1a1a !important;
}

.hero-button--gold .hero-button-icon-container {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(135deg, rgba(212, 180, 125, 0.4) 0%, rgba(184, 156, 96, 0.3) 100%) !important;
}

.hero-button--gold:hover .hero-button-icon-container {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(135deg, rgba(212, 180, 125, 0.5) 0%, rgba(184, 156, 96, 0.4) 100%) !important;
}

.yb-microcopy {
  font-family: var(--font-family-sans);
  font-size: 10px;
  font-weight: 100;
  letter-spacing: 0.01em;
  color: rgba(169, 169, 169, 1);
}

#social-proof .yb-social-proof-microcopy {
  font-size: 15px;
}

/* Container dos visuais: grid 2 linhas — floats acima, imagem abaixo */
.yb-hero-visuals {
  position: relative;
  width: min(1080px, 100%);
  min-height: clamp(320px, 52vw, 620px);
  margin-top: 150px;
  flex: 1 1 auto;
  display: grid;
  grid-template-rows: minmax(320px, 42%) 1fr;
  isolation: isolate;
}

/* Floats: posição absoluta — cada card define sua própria posição via .yb-hero-card-N */
.yb-hero-visuals>.yb-hero-float {
  position: absolute;
  z-index: 4;
}

/* #14 — Skeleton placeholder na imagem hero: evita flash branco no carregamento */
.yb-hero-person {
  grid-area: 2 / 1;
  width: clamp(300px, 54vw, 790px);
  margin: 0;
  line-height: 0;
  align-self: end;
  justify-self: center;
  z-index: 1;
  animation: yb-fade-up 0.5s ease both;
  background: var(--ninna-surface);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.yb-hero-person img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
}

/* Cards espalhados: cada um com posição própria via .yb-hero-card-N */
.yb-hero-float {
  font-family: var(--font-family-sans);
  z-index: 4;
  max-width: min(260px, 85vw);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(210deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%),
    linear-gradient(180deg, rgba(31, 27, 90, 0.3), rgba(31, 27, 90, 0.2));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(6, 5, 19, 0.44);
}

.yb-hero-float p {
  margin: 0;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0.01em;
}

/* Posições explícitas: cards bem separados nos lados e na altura */
.yb-hero-card-1 {
  top: 190px;
  margin-top: 100px;
  left: 0%;
}

.yb-hero-card-2 {
  top: 180px;
  right: 0%;
  left: auto;
  margin-bottom: 0;
}

.yb-hero-card-3 {
  top: 62%;
  left: 0%;
  transform: translateY(-50%);
}

.yb-hero-card-4 {
  top: 62%;
  right: 0%;
  left: auto;
  transform: translateY(-50%);
}

/* Animação em escada + flutuação orbital por card */
.yb-hero-float-card {
  opacity: 0;
  animation: yb-hero-card-in 0.35s cubic-bezier(0.19, 0.7, 0.7, 0.95) forwards;
}

/* Cada card combina: entrada (opacity) + órbita (translate independente do transform) */
/* A propriedade `translate` soma ao `transform` existente sem conflito */
/* Delays negativos no float definem a fase inicial da órbita — cards nunca sincronizam */
.yb-hero-card-1 {
  animation:
    yb-hero-card-in 0.35s 0.1s cubic-bezier(0.19, 0.7, 0.7, 0.95) forwards,
    yb-hero-float-orb 7s 0s ease-in-out infinite;
}

.yb-hero-card-2 {
  animation:
    yb-hero-card-in 0.35s 0.2s cubic-bezier(0.19, 0.7, 0.7, 0.95) forwards,
    yb-hero-float-orb 7s -1.75s ease-in-out infinite;
}

.yb-hero-card-3 {
  animation:
    yb-hero-card-in 0.35s 0.3s cubic-bezier(0.19, 0.7, 0.7, 0.95) forwards,
    yb-hero-float-orb 7s -3.5s ease-in-out infinite;
}

.yb-hero-card-4 {
  animation:
    yb-hero-card-in 0.35s 0.4s cubic-bezier(0.19, 0.7, 0.7, 0.95) forwards,
    yb-hero-float-orb 7s -5.25s ease-in-out infinite;
}

@keyframes yb-hero-card-in {
  to {
    opacity: 1;
  }
}

/* Órbita oval sutil: percorre uma elipse de ~10px × 9px */
@keyframes yb-hero-float-orb {
  0% {
    translate: 0px 0px;
  }

  25% {
    translate: 5px -6px;
  }

  50% {
    translate: 0px -9px;
  }

  75% {
    translate: -4px -5px;
  }

  100% {
    translate: 0px 0px;
  }
}

@keyframes yb-fade-up {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animações sob demanda via IntersectionObserver */
.yb-benefit,
.yb-beneficios-header,
.yb-price-card,
.yb-social-proof-header,
.yb-como-funciona-header {
  animation-play-state: paused;
}

.yb-benefit.is-visible,
.yb-beneficios-header.is-visible,
.yb-price-card.is-visible,
.yb-social-proof-header.is-visible,
.yb-como-funciona-header.is-visible {
  animation-play-state: running;
}

.yb-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.yb-kpi {
  border: 1px solid var(--ninna-border);
  border-radius: var(--radius);
  background: rgba(21, 20, 43, 0.72);
  padding: 0.8rem;
}

.yb-kpi strong {
  display: block;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-default);
}

.yb-kpi span {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-14);
  color: var(--ninna-text-muted);
}

.yb-phone-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: center;
  filter: drop-shadow(0 0 24px rgba(139, 92, 246, 0.2));
}

.yb-phone {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 40px rgba(139, 92, 246, 0.15);
  background: var(--ninna-surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.yb-phone:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 50px rgba(139, 92, 246, 0.22);
}

.yb-phone img {
  width: 100%;
  height: auto;
  display: block;
}

.yb-phone:nth-child(2) {
  transform: translateY(1.5rem);
}

.yb-phone:nth-child(2):hover {
  transform: translateY(calc(1.5rem - 4px));
}

.yb-promise-bar {
  margin-top: 1.5rem;
  border: 1px solid var(--ninna-border);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(140deg, rgba(139, 92, 246, 0.14) 0%, rgba(35, 34, 66, 0.85) 100%);
  padding: 1.2rem;
}

.yb-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: center;
}

.yb-split-media {
  border: 1px solid var(--ninna-border);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  background: #16152f;
}

.yb-split-media img {
  width: 100%;
}

.yb-list {
  font-family: var(--font-family-sans);
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ninna-text-body);
}

.yb-list li+li {
  margin-top: 0.55rem;
}

.yb-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.yb-step-number {
  font-family: var(--font-family-sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.5);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.8rem;
}

.yb-social-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@keyframes yb-marquee-ltr {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes yb-marquee-rtl {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.yb-testimonial-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.yb-testimonial-track {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  width: max-content;
  animation: yb-marquee-ltr 52s linear infinite;
  will-change: transform;
}

.yb-testimonial-track:nth-child(2) {
  animation-name: yb-marquee-rtl;
}

.yb-testimonial-rows:hover .yb-testimonial-track {
  animation-play-state: paused;
}

.yb-testimonial-card {
  width: 320px;
  flex: 0 0 auto;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  background:
    linear-gradient(210deg, rgba(255, 255, 255, 0.08) 0%, transparent 35%),
    linear-gradient(180deg, rgba(31, 27, 90, 0.25), rgba(21, 20, 43, 0.4));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yb-testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.yb-testimonial-stars {
  color: #fbbf24;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
  line-height: 1;
  user-select: none;
}

.yb-testimonial-card .yb-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  min-width: 0;
}

.yb-testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(139, 92, 246, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.yb-testimonial-card h3 {
  font-family: var(--font-family-sans);
  margin: 0;
  font-size: var(--font-size-16);
  color: var(--ninna-text-muted);
  font-weight: var(--font-weight-semibold);
  min-width: 0;
  overflow-wrap: break-word;
}

.yb-testimonial-card p {
  margin: 0;
  line-height: 1.5;
  overflow-wrap: break-word;
}


.yb-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.yb-benefit:last-child {
  grid-column: 1 / -1;
}

/* #3 — Scroll-reveal: estado inicial oculto; JS adiciona .is-visible via IntersectionObserver */
.yb-benefit {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(21, 20, 43, 0.3) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.5s ease, translate 0.5s ease;
  opacity: 0;
  translate: 0 28px;
}

.yb-benefit.is-visible {
  opacity: 1;
  translate: 0 0;
}

.yb-benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.yb-benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.25);
  border: 1px solid rgba(139, 92, 246, 0.5);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.yb-benefit h3 {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-semibold);
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.95);
}

.yb-benefit p {
  font-family: var(--font-family-sans);
  color: var(--ninna-text-body);
  margin: 0 0 0.5rem;
}

.yb-benefit .yb-result {
  margin-bottom: 0;
}

.yb-benefit:nth-child(1) {
  transition-delay: 0.05s;
}

.yb-benefit:nth-child(2) {
  transition-delay: 0.12s;
}

.yb-benefit:nth-child(3) {
  transition-delay: 0.19s;
}

.yb-benefit:nth-child(4) {
  transition-delay: 0.26s;
}

.yb-benefit:nth-child(5) {
  transition-delay: 0.33s;
}

.yb-result {
  color: var(--event-feed);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0;
}

.yb-avatar {
  font-family: var(--font-family-sans);
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
  color: #fff;
  background: #302f54;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.yb-cta {
  text-align: center;
}

.yb-cta .btn {
  min-width: 260px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
}

.yb-pricing-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  text-align: left;
}

/* Base: glassmorphism, animação de entrada */
.yb-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  border-top-width: 3px;
  padding: 1rem;
  min-height: 420px;
  background:
    linear-gradient(210deg, rgba(255, 255, 255, 0.06) 0%, transparent 35%),
    linear-gradient(180deg, rgba(31, 27, 90, 0.2), rgba(21, 20, 43, 0.5));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: yb-fade-up 0.5s ease both;
}

.yb-price-card:nth-child(1) {
  animation-delay: 0.1s;
}

.yb-price-card:nth-child(2) {
  animation-delay: 0.2s;
}

.yb-price-card:nth-child(3) {
  animation-delay: 0.3s;
}

.yb-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Card Gold - Beige/dourado claro (referência) */
.yb-price-card.is-featured.yb-price-card-gold {
  border: none;
  background: linear-gradient(180deg, #EAD6AC 0%, #D4B47D 100%);
  box-shadow:
    0 0 0 1px rgba(250, 236, 202, 0.28),
    0 22px 58px rgba(112, 85, 42, 0.32),
    0 0 74px var(--yb-cta-annual-glow);
  padding: 2rem;
  color: #1a1a1a;
}

/* Card Gold: breathe animation sutil para chamar atenção ao plano mais popular */
.yb-price-card.is-featured.yb-price-card-gold {
  transform: scale(1.02);
  animation: yb-price-gold-breathe 3.5s ease-in-out infinite;
}

@keyframes yb-price-gold-breathe {

  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(250, 236, 202, 0.28),
      0 22px 58px rgba(112, 85, 42, 0.32),
      0 0 74px rgba(212, 180, 125, 0.18);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(250, 236, 202, 0.46),
      0 22px 58px rgba(112, 85, 42, 0.42),
      0 0 100px rgba(212, 180, 125, 0.32);
  }
}

.yb-price-card.is-featured.yb-price-card-gold:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(250, 236, 202, 0.34),
    0 24px 64px rgba(112, 85, 42, 0.36),
    0 0 88px rgba(212, 180, 125, 0.42);
}

.yb-price-card.is-featured.yb-price-card-gold .yb-plan-tag-popular {
  position: absolute;
  top: -0.75rem;
  right: 1.25rem;
  margin: 0;
  padding: 0.5rem 1rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.yb-price-card.is-featured.yb-price-card-gold h3 {
  color: rgba(26, 26, 26, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.yb-price-card.is-featured.yb-price-card-gold .yb-price {
  color: #1a1a1a;
}

.yb-price-card.is-featured.yb-price-card-gold .yb-price-value {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.yb-price-card.is-featured.yb-price-card-gold .yb-price-period {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.8;
}

.yb-price-card.is-featured.yb-price-card-gold ul,
.yb-price-card.is-featured.yb-price-card-gold li {
  color: #1a1a1a;
}

.yb-price-card.is-featured.yb-price-card-gold .yb-check-icon {
  color: #1a1a1a;
}

.yb-price-card.is-featured.yb-price-card-gold .yb-cta-btn-dark {
  background: #181232;
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.yb-price-card.is-featured.yb-price-card-gold .yb-cta-btn-dark:hover {
  background: #0d0a1a;
}

/* Card Semestral - Glassmorphism */
.yb-price-card-semestral {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top-width: 1px;
  background:
    linear-gradient(148deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 32%, rgba(21, 20, 43, 0.36) 100%),
    rgba(11, 10, 24, 0.16);
  backdrop-filter: blur(var(--yb-cta-glass-blur)) saturate(150%) brightness(1.04);
  -webkit-backdrop-filter: blur(var(--yb-cta-glass-blur)) saturate(150%) brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 14px 44px rgba(5, 4, 18, 0.44);
}

.yb-price-card-semestral:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 18px 52px rgba(5, 4, 18, 0.52);
}

.yb-price-card.yb-price-card-semestral h3 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.yb-price-card-semestral .yb-price-value {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
}

.yb-price-card-semestral .yb-price-period {
  color: rgba(255, 255, 255, 0.6);
}

.yb-price-card-semestral .yb-check-icon {
  color: rgba(255, 255, 255, 0.5);
}

.yb-price-card-semestral .yb-cta-btn-light {
  background: #FCFAF5;
  color: #120D2B;
  border: none;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.yb-price-card-semestral .yb-cta-btn-light:hover {
  background: #fff;
}

/* Card Mensal - Glassmorphism */
.yb-price-card-monthly {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top-width: 1px;
  background:
    linear-gradient(148deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 32%, rgba(21, 20, 43, 0.36) 100%),
    rgba(11, 10, 24, 0.16);
  backdrop-filter: blur(var(--yb-cta-glass-blur)) saturate(150%) brightness(1.04);
  -webkit-backdrop-filter: blur(var(--yb-cta-glass-blur)) saturate(150%) brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 14px 44px rgba(5, 4, 18, 0.44);
}

.yb-price-card-monthly:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 18px 52px rgba(5, 4, 18, 0.52);
}

.yb-price-card.yb-price-card-monthly h3 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.yb-price-card-monthly .yb-price-value {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
}

.yb-price-card-monthly .yb-price-period {
  color: rgba(255, 255, 255, 0.6);
}

.yb-price-card-monthly .yb-check-icon {
  color: rgba(255, 255, 255, 0.5);
}

.yb-price-card-monthly .yb-cta-btn-light {
  background: #FCFAF5;
  color: #120D2B;
  border: none;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.yb-price-card-monthly .yb-cta-btn-light:hover {
  background: #fff;
}

#yb-cta.lp-cta .yb-price-card-semestral::before,
#yb-cta.lp-cta .yb-price-card-monthly::before {
  content: '';
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 28% 26%, rgba(167, 139, 250, 0.28) 0%, transparent 54%),
    radial-gradient(circle at 76% 72%, rgba(139, 92, 246, 0.24) 0%, transparent 50%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(calc(var(--yb-cta-parallax-x) * -0.2),
      calc(var(--yb-cta-parallax-y) * -0.2),
      0);
}

#yb-cta.lp-cta .yb-price-card-semestral>*,
#yb-cta.lp-cta .yb-price-card-monthly>* {
  position: relative;
  z-index: 1;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {

  #yb-cta.lp-cta .yb-price-card-semestral,
  #yb-cta.lp-cta .yb-price-card-monthly {
    background: linear-gradient(160deg, rgba(49, 43, 90, 0.78) 0%, rgba(21, 20, 43, 0.82) 100%);
  }
}

.yb-plan-tag {
  font-family: var(--font-family-sans);
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.35rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-bold);
  color: #1f1433;
  background: var(--event-sleep);
  border: 1px solid transparent;
}

/* Pill de custo diário */
.yb-price-anchor-pill {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  margin: 0 0 2rem;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.yb-price-anchor-pill--gold {
  background: rgba(211, 185, 134, 0.4);
  border-color: rgba(168, 144, 96, 0.3);
  color: #2a2a2a;
}

.yb-price-value {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 700;
}

.yb-price-period {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}

.yb-price-card h3 {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-18);
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.yb-price {
  font-family: var(--font-family-sans);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0.5rem 0 0.5rem;
}

.yb-price-card ul {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-14);
  line-height: 1.5;
  margin: 0 0 2rem;
  padding-left: 0;
  list-style: none;
  color: var(--ninna-text-body);
  flex-grow: 1;
}

.yb-price-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.yb-price-card li+li {
  margin-top: 0.45rem;
}

.yb-check-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
}

.yb-check-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.yb-economy,
.yb-anchor {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-semibold);
  margin: 0 0 1rem;
}

/* Footer trust indicators */
.yb-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-14);
}

.yb-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.yb-cta-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #2D1B4E;
}

.yb-cta-trust-icon svg {
  width: 1rem;
  height: 1rem;
  color: #fff;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .lp-grid-3,
  .stats {
    grid-template-columns: 1fr;
  }

  .main-menu {
    display: none;
  }

  .lp-hero {
    min-height: 0;
    padding-top: clamp(2rem, 6vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
  }

  .yb-hero,
  .yb-split,
  .yb-steps,
  .yb-social-proof,
  .yb-proof-row,
  .yb-pricing-grid,
  .yb-benefits {
    grid-template-columns: 1fr;
  }

  .yb-price-card.is-featured.yb-price-card-gold {
    transform: none;
    box-shadow:
      0 0 0 1px rgba(250, 236, 202, 0.24),
      0 16px 42px rgba(112, 85, 42, 0.32),
      0 0 52px rgba(212, 180, 125, 0.3);
  }

  .yb-price-card.is-featured.yb-price-card-gold:hover {
    transform: translateY(-4px);
  }

  #yb-cta.lp-cta {
    --yb-cta-nebula-blur: 86px;
    --yb-cta-star-opacity: 0.46;
  }

  #yb-cta.lp-cta .yb-cta-nebula--front {
    --yb-nebula-opacity: 0.3;
  }

  #yb-cta.lp-cta .yb-cta-stardust--b {
    display: none;
  }

  #yb-como-funciona .yb-steps {
    grid-template-columns: 1fr;
  }

  .lp-hero-super {
    padding-top: 150px;
    margin-bottom: 0;
  }

  .lp-hero-super .yb-headline {
    font-size: clamp(33px, 5vw, var(--font-size-36));
  }

  .yb-hero {
    gap: 1.15rem;
  }

  .yb-headline {
    max-width: 18ch;
    line-height: clamp(1.18, 4.5vw, 1.28);
    /* #5 — evita densitidade em 2+ linhas no mobile */
  }

  .yb-hero-visuals {
    grid-template-rows: minmax(260px, 38%) 1fr;
    min-height: 300px;
    margin-top: 150px;
  }

  .yb-hero-person {
    width: min(95%, 560px);
  }

  .yb-hero-float {
    max-width: 200px;
    padding: 0.62rem 0.72rem;
  }

  .yb-hero-float p {
    font-size: var(--font-size-14);
  }

  .yb-hero-card-1 {
    top: 4%;
    left: 0%;
    right: auto;
    transform: none;
  }

  .yb-hero-card-2 {
    top: 180px;
    right: 0%;
    left: auto;
    transform: none;
    margin-bottom: 0;
  }

  .yb-hero-card-3 {
    top: 48%;
    bottom: auto;
    left: 0%;
    right: auto;
    transform: none;
  }

  .yb-hero-card-4 {
    top: 48%;
    bottom: auto;
    right: 0%;
    left: auto;
    transform: none;
  }

  .yb-benefit:last-child {
    grid-column: auto;
  }

  .yb-cta .btn {
    min-width: 100%;
  }

  .yb-phone:nth-child(2) {
    transform: none;
  }

  .yb-phone:nth-child(2):hover {
    transform: translateY(-4px);
  }

  .yb-hero-content {
    max-width: none;
  }

  .yb-headline {
    max-width: none;
  }

  .yb-testimonial-card {
    width: 280px;
  }
}

@media (max-width: 560px) {
  #yb-cta.lp-cta {
    --yb-cta-nebula-blur: 72px;
    --yb-cta-star-opacity: 0.38;
  }

  #yb-cta.lp-cta .yb-cta-nebula--front {
    --yb-nebula-opacity: 0.26;
  }

  #yb-cta.lp-cta .yb-price-card.is-featured.yb-price-card-gold {
    box-shadow:
      0 0 0 1px rgba(250, 236, 202, 0.2),
      0 14px 36px rgba(112, 85, 42, 0.28),
      0 0 40px rgba(212, 180, 125, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .yb-testimonial-track {
    animation: none;
  }

  .yb-testimonial-rows {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .yb-hero-bg-video video {
    display: none;
  }

  .yb-hero-float-card {
    opacity: 1;
    animation: none;
  }

  .yb-social-proof-header,
  .yb-testimonial-card,
  .yb-beneficios-header,
  .yb-benefit,
  .yb-como-funciona-header {
    animation: none;
  }

  .yb-benefit,
  .yb-testimonial-card,
  .yb-price-card,
  .yb-social-proof-header,
  .yb-beneficios-header,
  .yb-como-funciona-header {
    animation: none;
    opacity: 1;
  }

  #yb-como-funciona .yb-steps .yb-step-card:hover {
    transform: none;
  }

  .yb-price-card,
  .yb-price-card:hover {
    transform: none;
  }

  .yb-price-card.is-featured.yb-price-card-gold,
  .yb-price-card.is-featured.yb-price-card-gold:hover {
    transform: none;
  }

  .yb-price-card {
    animation: none;
  }

  #yb-cta.lp-cta {
    --yb-cta-parallax-x: 0px;
    --yb-cta-parallax-y: 0px;
  }

  #yb-cta.lp-cta .yb-cta-nebula,
  #yb-cta.lp-cta .yb-cta-stardust {
    animation: none;
    transform: none;
  }
}