/* === ONBOARDING LAYOUT === */

.onboarding-wrapper {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Grid overlay sutil */
.onboarding-wrapper::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* === HEADER PROGRESSO === */
.onboarding-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: var(--space-4) var(--space-6);
}

.onboarding-progress-inner {
  max-width: 640px;
  margin: 0 auto;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2);
}

.progress-step {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
}

.progress-percent {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-neon);
}

.progress-track {
  width: 100%;
  height: 4px;
  background: var(--color-bg-elevated);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-neon-glow);
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.40);
}

/* === BODY (conteúdo central) === */
.onboarding-body {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 96px var(--container-px) 120px;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
}

/* === STEP CONTAINER === */
.onboarding-step {
  width: 100%;
  animation: fadeInUp 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-badge-top {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-4);
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.10);
  border: 1px solid rgba(0, 229, 255, 0.20);
  color: var(--color-neon);
  font-size: var(--text-sm);
  font-weight: 500;
}

.step-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-4);
  display: block;
  filter: drop-shadow(var(--shadow-neon-sm));
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
  line-height: var(--leading-tight);
}

@media (min-width: 480px) {
  .step-title {
    font-size: var(--text-4xl);
  }
}

.step-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.step-fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Plan chip info */
.plan-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.20);
  border-radius: 10px;
  font-size: var(--text-sm);
  color: var(--color-success);
  font-weight: 500;
  margin-bottom: var(--space-6);
}

/* === FOOTER NAVEGAÇÃO === */
.onboarding-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border-subtle);
  padding: var(--space-4) var(--space-6);
  padding-bottom: calc(var(--space-4) + env(safe-area-inset-bottom, 0px));
}

.onboarding-footer-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

#btn-back {
  min-width: 100px;
  flex-shrink: 0;
}

#btn-back[style*="visibility: hidden"],
#btn-back.invisible {
  visibility: hidden;
  pointer-events: none;
}

#btn-next {
  flex: 1;
}

/* === CAMPO READONLY === */
.field-readonly .input-readonly {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--color-border-subtle);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--color-border-subtle);
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: space-between;
}

/* === LINK DE LOGIN NO STEP 0 === */
.step-login-hint {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid var(--color-border-default);
  border-radius: 10px;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-align: center;
}

.step-login-hint a,
.step-login-hint button {
  color: var(--color-neon);
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  font-size: inherit;
  text-decoration: underline;
  padding: 0;
}

/* === CONCLUSÃO === */
.onboarding-conclusion {
  text-align: center;
  padding-bottom: var(--space-8);
}

.conclusion-animation {
  font-size: 5rem;
  display: block;
  margin-bottom: var(--space-6);
  animation: float 3s ease-in-out infinite;
}

.conclusion-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
}

.conclusion-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.conclusion-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 360px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .conclusion-actions {
    flex-direction: row;
  }
  .conclusion-actions .btn-primary,
  .conclusion-actions .btn-secondary {
    flex: 1;
  }
}

/* === OPTION GRID === */
.option-grid {
  display: grid;
  gap: var(--space-3);
}
.option-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.option-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

@media (max-width: 400px) {
  .option-grid.cols-3 { grid-template-columns: 1fr 1fr; }
}

/* === OPTION CARD (pequeno) === */
.option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-3);
  background: var(--gradient-card);
  border: 1px solid var(--color-border-default);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  text-align: center;
  color: var(--color-text-secondary);
}
.option-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-1px);
}
.option-card.selected {
  border-color: var(--color-neon);
  box-shadow: var(--shadow-neon-md);
  color: var(--color-text-primary);
  transform: scale(1.02);
}
.option-card .option-icon { font-size: 1.75rem; }
.option-card .option-label { font-size: var(--text-sm); font-weight: 500; }
.option-card small { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.3; }

/* check-card variant */
.check-card {
  flex-direction: row;
  justify-content: flex-start;
  padding: var(--space-3) var(--space-4);
  gap: var(--space-3);
}
.check-box {
  width: 18px; height: 18px; min-width: 18px;
  border: 2px solid var(--color-border-hover);
  border-radius: 4px;
  transition: all 0.15s ease;
}
.check-card.selected .check-box {
  background: var(--color-neon);
  border-color: var(--color-neon);
}
.check-card.selected .check-box::after {
  content: '✓';
  display: block;
  color: #000;
  font-size: 11px;
  line-height: 14px;
  text-align: center;
  font-weight: 700;
}

/* === OPTION CARD LARGE === */
.option-card-lg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-3);
  background: var(--gradient-card);
  border: 1px solid var(--color-border-default);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  text-align: center;
  color: var(--color-text-secondary);
}
.option-card-lg:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
}
.option-card-lg.selected {
  border-color: var(--color-neon);
  box-shadow: var(--shadow-neon-md);
  color: var(--color-text-primary);
}
.option-card-lg .option-icon-lg { font-size: 2.5rem; }
.option-card-lg h4 { font-family: var(--font-display); font-size: var(--text-base); font-weight: 600; margin: 0; }
.option-card-lg p  { font-size: var(--text-xs); color: var(--color-text-muted); margin: 0; }

/* === SECONDARY GOAL === */
.secondary-goal-wrap { overflow: hidden; transition: all 0.3s ease; }
.secondary-goal-wrap.hidden { display: none; }

/* === PROFESSIONAL GRID === */
.professional-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 560px) {
  .professional-grid { flex-direction: row; }
  .professional-grid .professional-card { flex: 1; }
}

.professional-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-5);
  background: var(--gradient-card);
  border: 1px solid var(--color-border-default);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-align: left;
  color: var(--color-text-secondary);
  gap: var(--space-4);
}
.professional-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.professional-card.selected {
  border-color: var(--color-neon);
  box-shadow: var(--shadow-neon-md);
}

.professional-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-elevated);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--color-border-default);
  flex-shrink: 0;
}
.professional-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-neon);
}

.professional-info { display: flex; flex-direction: column; gap: var(--space-2); }
.professional-info h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--color-text-primary); margin: 0; }
.professional-bio { font-size: var(--text-sm); line-height: var(--leading-relaxed); margin: 0; }

.professional-specialties {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  list-style: none; padding: 0; margin: 0;
}
.professional-specialties li {
  font-size: var(--text-xs);
  padding: 2px 10px;
  border-radius: 100px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.15);
  color: var(--color-neon);
}

.professional-check {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-neon);
  color: #000;
  font-weight: 700;
  font-size: var(--text-sm);
  display: flex; align-items: center; justify-content: center;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.professional-card.selected .professional-check {
  transform: scale(1);
  opacity: 1;
}

/* === FIELD ROW === */
.field-row {
  display: flex;
  gap: var(--space-4);
}
.field-row .field-group { flex: 1; }

@media (max-width: 480px) {
  .field-row { flex-direction: column; }
}

/* === INPUT LG === */
.input-lg {
  font-size: var(--text-xl);
  padding: 1rem 1.25rem;
  font-weight: 600;
}

/* === IMC BAR === */
.imc-feedback {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-default);
  border-radius: 12px;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.imc-bar {
  width: 100%; height: 8px;
  background: var(--color-bg-surface);
  border-radius: 100px; overflow: hidden;
}
.imc-fill {
  height: 100%; border-radius: 100px;
  transition: width 0.4s ease, background 0.4s ease;
}
.imc-info { display: flex; align-items: center; gap: var(--space-3); }
.imc-value { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; }
.imc-label { font-size: var(--text-sm); color: var(--color-text-secondary); }

/* === CHIPS === */
.chip {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  border-radius: 100px;
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-elevated);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.chip:hover { border-color: var(--color-border-hover); color: var(--color-text-primary); }
.chip.selected {
  border-color: var(--color-neon);
  background: rgba(0,229,255,0.10);
  color: var(--color-neon);
  box-shadow: 0 0 8px rgba(0,229,255,0.20);
}

.chip-group { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* === STEP COUNTER === */
.step-counter {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-default);
  border-radius: 12px;
  padding: var(--space-2) var(--space-4);
}
.counter-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border-hover);
  background: transparent;
  color: var(--color-neon);
  font-size: var(--text-lg);
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
}
.counter-btn:hover { background: rgba(0,229,255,0.10); }
.counter-val {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-primary);
  min-width: 2rem;
  text-align: center;
}

/* === SLIDER === */
.slider {
  -webkit-appearance: none;
  width: 100%; height: 4px;
  background: var(--color-bg-elevated);
  border-radius: 100px;
  outline: none;
  cursor: pointer;
  margin-top: var(--space-3);
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: var(--shadow-neon-sm);
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}
.slider::-webkit-slider-thumb:hover { box-shadow: var(--shadow-neon-md); }
.slider-val {
  font-weight: 600;
  color: var(--color-neon);
}

/* === TOGGLE SWITCH === */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px; height: 24px;
  cursor: pointer;
}
.toggle-switch input { display: none; }
.toggle-knob {
  position: absolute;
  inset: 0;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-hover);
  border-radius: 100px;
  transition: all 0.25s ease;
}
.toggle-knob::after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-text-muted);
  transition: transform 0.25s ease, background 0.25s ease;
}
.toggle-switch input:checked + .toggle-knob {
  background: rgba(0,229,255,0.15);
  border-color: var(--color-neon);
}
.toggle-switch input:checked + .toggle-knob::after {
  transform: translateX(20px);
  background: var(--color-neon);
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* === CONDITIONAL WRAP === */
.conditional-wrap { overflow: hidden; }
.conditional-wrap.hidden { display: none; }

/* === TEXTAREA === */
.textarea {
  resize: vertical;
  min-height: 80px;
  line-height: var(--leading-relaxed);
}
.textarea-lg { min-height: 120px; font-size: var(--text-base); }

.char-counter {
  text-align: right;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* === WATER CUPS === */
.water-cups {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.water-cup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-elevated);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.25rem;
  filter: grayscale(1) opacity(0.4);
}
.water-cup.filled {
  filter: none;
  border-color: var(--color-neon);
  background: rgba(0,229,255,0.08);
  box-shadow: 0 0 8px rgba(0,229,255,0.15);
}

/* === TONE GRID (step 9) === */
.tone-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.tone-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  background: var(--gradient-card);
  border: 1px solid var(--color-border-default);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  text-align: left;
}
.tone-card:hover { border-color: var(--color-border-hover); }
.tone-card.selected {
  border-color: var(--color-neon);
  box-shadow: var(--shadow-neon-md);
}
.tone-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-primary);
}
.tone-example {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-style: italic;
  margin: 0;
}

/* === CONCLUSION === */
.conclusion-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  gap: var(--space-10);
}

.conclusion-hero { display: flex; flex-direction: column; align-items: center; gap: var(--space-4); }

.conclusion-badge {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--gradient-neon-glow);
  display: flex; align-items: center; justify-content: center;
  animation: fadeInUp 0.6s ease 0.1s both, glowPulse 3s ease-in-out 1s infinite;
}
.conclusion-emoji { font-size: 4.5rem; line-height: 1; }

.conclusion-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  animation: fadeInUp 0.6s ease 0.3s both;
  margin: 0;
}
.conclusion-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 420px;
  animation: fadeInUp 0.6s ease 0.45s both;
  margin: 0;
}

.conclusion-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  width: 100%;
  max-width: 480px;
  animation: fadeInUp 0.6s ease 0.6s both;
}

@media (min-width: 480px) {
  .conclusion-cards { grid-template-columns: repeat(3, 1fr); }
}

.summary-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-4);
  background: var(--gradient-card);
  border: 1px solid var(--color-border-default);
  border-radius: 14px;
  animation: fadeInUp 0.6s ease both;
}
.summary-icon { font-size: 2rem; }
.summary-card strong { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 600; color: var(--color-text-primary); }
.summary-card span { font-size: var(--text-xs); color: var(--color-text-muted); }

.conclusion-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
  max-width: 380px;
  animation: fadeInUp 0.6s ease 0.9s both;
}

@media (min-width: 480px) {
  .conclusion-ctas { flex-direction: row; }
  .conclusion-ctas .btn-primary,
  .conclusion-ctas .btn-secondary { flex: 1; }
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: var(--text-base);
}

.conclusion-hint {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  animation: fadeInUp 0.6s ease 1.1s both;
  margin: 0;
}

/* === MODAL DE LOGIN === */
.login-modal-fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-2);
}

/* === STEP 10 — PAYWALL === */

/* ─── Planos grid ────────────────────────────────────────────────────────── */

.s10-plans-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin: 1.25rem 0 1rem;
}

/* ── Base card ── */
.s10-plan-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.25rem 1.25rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
  outline: none;
  overflow: hidden;
}

/* tira da top a faixa colorida de 4px por tier */
.s10-plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
}

/* ── Mensal — azul slate ── */
.s10-plan-card--mensal {
  border-color: rgba(100, 149, 237, 0.25);
}
.s10-plan-card--mensal::before { background: linear-gradient(90deg, #4B7BEC, #6495ED); }
.s10-plan-card--mensal .s10-plan-price { color: #6AABFF; }
.s10-plan-card--mensal .s10-feature-icon { color: #6AABFF; }
.s10-plan-card--mensal .s10-plan-badge { background: #4B7BEC; color: #fff; }
.s10-plan-card--mensal:hover {
  border-color: rgba(100, 149, 237, 0.55);
  background: rgba(74, 123, 236, 0.06);
}
.s10-plan-card--mensal.s10-plan-card--selected {
  border-color: #6495ED;
  background: rgba(74, 123, 236, 0.10);
  box-shadow: 0 0 0 1px rgba(100,149,237,0.2), 0 4px 20px rgba(74,123,236,0.18);
}

/* ── Trimestral — neon ciano (destaque) ── */
.s10-plan-card--trimestral {
  border-color: rgba(0, 229, 255, 0.30);
}
.s10-plan-card--trimestral::before { background: linear-gradient(90deg, #00B4D8, #00E5FF); }
.s10-plan-card--trimestral .s10-plan-price { color: #00E5FF; }
.s10-plan-card--trimestral .s10-feature-icon { color: #00E5FF; }
.s10-plan-card--trimestral .s10-plan-badge { background: #00E5FF; color: #0A0F1C; }
.s10-plan-card--trimestral:hover {
  border-color: rgba(0, 229, 255, 0.55);
  background: rgba(0, 229, 255, 0.06);
}
.s10-plan-card--trimestral.s10-plan-card--selected {
  border-color: #00E5FF;
  background: rgba(0, 229, 255, 0.10);
  box-shadow: 0 0 0 1px rgba(0,229,255,0.25), 0 4px 24px rgba(0,229,255,0.18);
  transform: scale(1.02);
}

/* ── Anual — âmbar/dourado ── */
.s10-plan-card--anual {
  border-color: rgba(251, 191, 36, 0.25);
}
.s10-plan-card--anual::before { background: linear-gradient(90deg, #D97706, #FCD34D); }
.s10-plan-card--anual .s10-plan-price { color: #FBBF24; }
.s10-plan-card--anual .s10-feature-icon { color: #FBBF24; }
.s10-plan-card--anual .s10-plan-badge { background: linear-gradient(90deg, #D97706, #F59E0B); color: #fff; }
.s10-plan-card--anual .s10-plan-savings { color: #FBBF24; }
.s10-plan-card--anual:hover {
  border-color: rgba(251, 191, 36, 0.55);
  background: rgba(251, 191, 36, 0.06);
}
.s10-plan-card--anual.s10-plan-card--selected {
  border-color: #FBBF24;
  background: rgba(251, 191, 36, 0.10);
  box-shadow: 0 0 0 1px rgba(251,191,36,0.25), 0 4px 20px rgba(251,191,36,0.18);
}

/* focus visible genérico */
.s10-plan-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.25);
}

.s10-plan-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}

.s10-plan-name {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary, #F5F7FA);
  margin-bottom: 0.35rem;
}

.s10-plan-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}

.s10-plan-price {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 1.55rem;
  font-weight: 800;
}

.s10-plan-period {
  font-size: 0.85rem;
  color: var(--color-text-secondary, #94A3B8);
}

.s10-plan-billing {
  font-size: 0.8rem;
  color: var(--color-text-muted, #64748B);
  margin-bottom: 0.25rem;
}

.s10-plan-savings {
  font-size: 0.78rem;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 0.75rem;
}

.s10-plan-features {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.s10-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-text-secondary, #94A3B8);
}

.s10-feature-icon {
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.s10-security {
  font-size: 0.78rem;
  color: var(--color-text-muted, #64748B);
  text-align: center;
  margin-top: 0.25rem;
}

@media (min-width: 600px) {
  .s10-plans-grid {
    flex-direction: row;
    align-items: stretch;
  }
  .s10-plan-card {
    flex: 1;
  }
}

/* === TELA DE CONFIRMAÇÃO DE E-MAIL === */

.email-confirm-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem 3rem;
  max-width: 420px;
  margin: 0 auto;
}

.email-confirm-icon {
  font-size: 4rem;
  margin-bottom: 1.25rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.email-confirm-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.email-confirm-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.email-confirm-hint {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  margin-bottom: 0.5rem;
}

.email-confirm-spam {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  opacity: 0.7;
}
