/* ══════════════════════════════════════════════════════════════
   NEVERLAND | SELEÇÃO DE CREATORS
   style.css — Design Fantasy Creator — Vermelho Mágico + Verde Neon
   ══════════════════════════════════════════════════════════════ */

/* ── VARIÁVEIS ─────────────────────────────────────────────── */
:root {
  --deep-bg:     #1a0305;
  --dark-bg:     #210406;
  --forest-dark: #2d0608;
  --mid-red:     #8b1a28;
  --bright-red:    #c0293f;
  --neon-red:      #ff3a5c;
  --glow-red:      #ff1a42;
  --soft-red:      #ff8fa0;
  --pale-red:      #ffd6de;
  --green-neon:    #dd4010;
  --green-glow:    #ff2600;
  --green-accent:  #ff6e6e;
  --gold-fairy:    #ffda6a;
  --white-fog:     rgba(255,255,255,0.06);
  --glass-border:  rgba(255,58,92,0.2);
  --glass-border-g:rgba(57,255,143,0.15);
  --glass-bg:      rgba(13,5,7,0.78);
  --glass-hover:   rgba(26,10,14,0.88);
  --text-primary:  #ffe8ec;
  --text-secondary:#c9939e;
  --text-hint:     #8a5862;
  --danger:        #ff4e6a;
  --danger-glow:   rgba(255,78,106,0.3);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow-glow:   0 0 20px rgba(255,58,92,0.12), 0 0 60px rgba(255,58,92,0.05);
  --shadow-strong: 0 0 30px rgba(255,26,66,0.22), 0 0 80px rgba(255,26,66,0.08), 0 0 40px rgba(57,255,143,0.06);
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
  background: var(--deep-bg);
  color: var(--text-primary);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* ── CANVAS DE PARTÍCULAS ───────────────────────────────────── */
#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── CANVAS DE PÓ DE FADA (interação) ──────────────────────── */
#fairy-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* ── OVERLAYS DE FUNDO ──────────────────────────────────────── */
.bg-overlay {
  position: fixed;
  inset: 0;
  background:
  radial-gradient(ellipse 80% 60% at 50% 100%, rgba(180,30,50,0.45) 0%, transparent 70%),
  radial-gradient(ellipse 60% 40% at 20% 30%, rgba(40,8,12,0.6) 0%, transparent 60%),
  radial-gradient(ellipse 50% 50% at 80% 20%, rgba(150,20,40,0.15) 0%, transparent 55%),
  linear-gradient(180deg, #120203 0%, #1a0305 30%, #1e0406 70%, #100202 100%);
  pointer-events: none;
  z-index: 1;
}

.vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
  z-index: 2;
}

/* ── BARRA DE PROGRESSO ─────────────────────────────────────── */
.progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: rgba(255,58,92,0.07);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--bright-red), var(--neon-red), var(--green-neon), var(--gold-fairy));
  box-shadow: 0 0 12px var(--glow-red), 0 0 24px rgba(255,26,66,0.5), 0 0 40px rgba(57,255,143,0.2);
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0 3px 3px 0;
  position: relative;
}

.progress-bar-fill::after {
  content: '✦';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--gold-fairy);
  text-shadow: 0 0 8px var(--gold-fairy), 0 0 16px rgba(255,218,106,0.8);
  animation: twinkleStar 1.2s ease-in-out infinite;
}

@keyframes twinkleStar {
  0%,100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50%      { opacity: 0.5; transform: translateY(-50%) scale(0.7); }
}

.progress-label {
  position: absolute;
  right: 12px;
  top: 8px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  color: var(--neon-red);
  letter-spacing: 1px;
  text-shadow: 0 0 8px var(--glow-red);
}

/* ── WRAPPER PRINCIPAL ──────────────────────────────────────── */
.form-wrapper {
  position: relative;
  z-index: 10;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* ── HEADER ─────────────────────────────────────────────────── */
.form-header {
  text-align: center;
  padding: 56px 32px 48px;
  margin-bottom: 32px;
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255,58,92,0.08);
  overflow: hidden;
}

.header-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(255,26,66,0.15) 0%, rgba(57,255,143,0.04) 50%, transparent 70%);
  pointer-events: none;
}

.rune-img {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255,26,66,0.6));
  animation: floatLeaf 4s ease-in-out infinite;
}

@keyframes floatLeaf {
  0%,100% { transform: translate(-50%, -50%) rotate(-3deg); }
  50%      { transform: translate(-50%, calc(-50% - 10px)) rotate(3deg); }
}

.rune-ring {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255,58,92,0.14);
  border-radius: 50%;
  animation: spinRune 30s linear infinite;
  pointer-events: none;
}

.rune-ring::before {
  content: 'ᑎ E ᐯ E ᖇ ᒪ ᗩ ᑎ ᗪ';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 7px;
  color: rgba(255,58,92,0.28);
  white-space: nowrap;
  letter-spacing: 3px;
}

@keyframes spinRune { to { transform: translateX(-50%) rotate(360deg); } }

.form-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--neon-red) 0%, var(--gold-fairy) 40%, var(--green-neon) 70%, var(--soft-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255,58,92,0.45));
  margin-bottom: 8px;
  margin-top: 160px;
}

.form-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--neon-red);
  text-shadow: 0 0 12px var(--glow-red);
  margin-bottom: 28px;
}

.form-description {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-description p { margin-bottom: 10px; }
.form-description strong { color: var(--soft-red); }

.luck-text {
  text-align: center;
  font-family: 'Cinzel', serif;
  color: var(--neon-red);
  text-shadow: 0 0 10px var(--glow-red);
  letter-spacing: 2px;
  margin-top: 16px !important;
  font-size: 1rem;
}

/* ── SEÇÕES DO FORMULÁRIO ───────────────────────────────────── */
.form-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255,58,92,0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-red), var(--green-neon), transparent);
  opacity: 0.25;
}

.form-section:hover {
  border-color: rgba(255,58,92,0.32);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255,58,92,0.1);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,58,92,0.12);
}

.section-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(255,26,66,0.6));
}

.section-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--soft-red);
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255,58,92,0.35);
}

/* ── GRUPOS DE CAMPO ────────────────────────────────────────── */
.field-group {
  margin-bottom: 24px;
}

.field-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  line-height: 1.5;
}

.required-star {
  color: var(--neon-red);
  text-shadow: 0 0 8px var(--glow-red);
  margin-left: 2px;
}

.field-hint {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-hint);
  margin-top: 4px;
  font-style: italic;
}

/* ── INPUTS E TEXTAREA ──────────────────────────────────────── */
.input-wrapper {
  position: relative;
}

.field-input,
.field-textarea,
.field-select {
  width: 100%;
  background: rgba(13,5,7,0.65);
  border: 1px solid rgba(255,58,92,0.22);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  padding: 13px 16px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  backdrop-filter: blur(4px);
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: rgba(255,143,160,0.25);
  font-style: italic;
}

.field-input:focus,
.field-textarea:focus,
.field-select:focus {
  border-color: var(--neon-red);
  background: rgba(26,10,14,0.75);
  box-shadow:
    0 0 0 3px rgba(255,58,92,0.1),
    0 0 20px rgba(255,58,92,0.07),
    0 0 40px rgba(255,26,66,0.04);
}

.field-input.field-done,
.field-textarea.field-done,
.field-select.field-done {
  border-color: rgba(255,58,92,0.45);
  box-shadow: 0 0 10px rgba(255,58,92,0.1);
}

.field-input:hover,
.field-textarea:hover {
  border-color: rgba(255,58,92,0.38);
  background: rgba(18,6,8,0.72);
}

.input-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  transition: box-shadow 0.4s ease;
}

.field-input:focus ~ .input-glow,
.field-textarea:focus ~ .input-glow {
  box-shadow: 0 0 0 1px rgba(255,58,92,0.2), 0 0 28px rgba(255,26,66,0.08);
}

.field-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── DATA ───────────────────────────────────────────────────── */
.date-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.date-part {
  flex: 1;
  position: relative;
}

.date-year { flex: 1.5; }

.date-sep {
  color: var(--mid-red);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.date-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-hint);
  text-align: center;
  margin-top: 4px;
  letter-spacing: 1px;
}

/* ── SELECT ─────────────────────────────────────────────────── */
.select-wrapper {
  position: relative;
}

.field-select {
  cursor: pointer;
  padding-right: 40px;
}

.field-select option {
  background: #1a0a0e;
  color: var(--text-primary);
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neon-red);
  font-size: 1rem;
  pointer-events: none;
  text-shadow: 0 0 8px var(--glow-red);
}

/* ── CHECKBOXES E RADIOS ────────────────────────────────────── */
.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.checkbox-item,
.radio-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(13,5,7,0.55);
  border: 1px solid rgba(255,58,92,0.14);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.checkbox-item:hover,
.radio-item:hover {
  background: rgba(107,26,40,0.25);
  border-color: rgba(255,58,92,0.35);
  transform: translateX(4px);
  box-shadow: 0 0 12px rgba(255,58,92,0.08);
}

.check-input,
.radio-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.check-box {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,58,92,0.45);
  border-radius: 5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  background: transparent;
}

.check-input:checked ~ .check-box {
  background: var(--neon-red);
  border-color: var(--neon-red);
  box-shadow: 0 0 12px rgba(255,58,92,0.55);
}

.check-input:checked ~ .check-box::after {
  content: '✓';
  font-size: 12px;
  color: #0d0507;
  font-weight: 700;
}

.radio-circle {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,58,92,0.45);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.radio-input:checked ~ .radio-circle {
  border-color: var(--neon-red);
  box-shadow: 0 0 12px rgba(255,58,92,0.55);
}

.radio-input:checked ~ .radio-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--neon-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--glow-red);
}

.check-label,
.radio-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.checkbox-item:has(.check-input:checked) .check-label,
.radio-item:has(.radio-input:checked) .radio-label {
  color: var(--neon-red);
  text-shadow: 0 0 8px rgba(255,58,92,0.45);
}

.checkbox-item:has(.check-input:checked),
.radio-item:has(.radio-input:checked) {
  background: rgba(107,26,40,0.22);
  border-color: rgba(255,58,92,0.38);
  box-shadow: 0 0 14px rgba(255,58,92,0.07);
}

/* ── ERROS ──────────────────────────────────────────────────── */
.field-error {
  display: block;
  min-height: 18px;
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: 6px;
  text-shadow: 0 0 6px var(--danger-glow);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.field-error.visible {
  opacity: 1;
  transform: translateY(0);
}

.field-group.has-error .field-input,
.field-group.has-error .field-textarea,
.field-group.has-error .field-select {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255,78,106,0.1);
}

/* ── BOTÃO SUBMIT ───────────────────────────────────────────── */
.submit-section {
  text-align: center;
  padding: 32px 0 8px;
}

.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 56px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0d0507;
  background: linear-gradient(135deg, #ff3a5c 0%, #c0293f 30%, #ff3a5c 60%, #ffda6a 85%, #f79501 100%);
  background-size: 250% 250%;
  animation: gradientShift 4s ease infinite;
  box-shadow:
    0 0 30px rgba(255,58,92,0.45),
    0 0 60px rgba(255,26,66,0.2),
    0 4px 24px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.4s ease;
  overflow: hidden;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 50px rgba(255,58,92,0.65),
    0 0 100px rgba(255,26,66,0.28),
    0 8px 32px rgba(0,0,0,0.5);
}

.submit-btn:active:not(:disabled) {
  transform: translateY(0) scale(0.98);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-glow-ring {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(255,58,92,0.45);
  animation: pulseRing 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseRing {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.02); }
}

.btn-rune {
  font-size: 0.9rem;
  opacity: 0.7;
}

.btn-text { position: relative; z-index: 1; }

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.submit-btn:hover::before { left: 150%; }

.required-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-hint);
  letter-spacing: 0.5px;
}
.form-footer {
  text-align: center;
  padding: 24px 20px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,58,92,0.15);
  color: var(--text-hint);
  font-size: 0.8rem;
}
.footer-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 58, 92, 0.07);
  border: 1px solid rgba(255, 58, 92, 0.25);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  box-shadow: 0 0 16px rgba(255, 26, 66, 0.08);
}

.footer-warning::before {
  content: '⚠️';
  font-size: 1rem;
  flex-shrink: 0;
}
.footer-brand {
  font-family: 'Cinzel', serif;
  color: var(--neon-red);
  letter-spacing: 2px;
  font-size: 0.82rem;
  margin-bottom: 6px;
  text-shadow: 0 0 8px var(--glow-red);
}
.footer-copy { color: var(--text-hint); font-size: 0.75rem; }

/* ── LOADING OVERLAY ────────────────────────────────────────── */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,2,4,0.93);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.loading-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.loading-content {
  text-align: center;
  position: relative;
}

.loading-ring {
  width: 90px;
  height: 90px;
  border: 2px solid rgba(255,58,92,0.1);
  border-top: 2px solid var(--neon-red);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 1.2s linear infinite;
  box-shadow: 0 0 20px rgba(255,58,92,0.35);
}

.loading-inner-ring {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255,58,92,0.07);
  border-bottom: 1px solid rgba(57,255,143,0.4);
  border-radius: 50%;
  animation: spinRev 2s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinRev { to { transform: translateX(-50%) rotate(-360deg); } }

.loading-icon {
  font-size: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-8px);
  filter: drop-shadow(0 0 10px rgba(255,26,66,0.7));
  animation: floatLeaf 2s ease-in-out infinite;
}

.loading-text {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--neon-red);
  letter-spacing: 2px;
  text-shadow: 0 0 12px var(--glow-red);
  margin-bottom: 8px;
}

.loading-sub {
  font-size: 0.8rem;
  color: var(--text-hint);
}

/* ── TELA DE SUCESSO ────────────────────────────────────────── */
.success-screen {
  position: fixed;
  inset: 0;
  background: rgba(6,2,4,0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.success-screen.active {
  opacity: 1;
  pointer-events: all;
}

.success-content {
  text-align: center;
  padding: 48px 40px;
  max-width: 480px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.success-glow-ring {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(255,26,66,0.18) 0%, rgba(57,255,143,0.06) 50%, transparent 70%);
  pointer-events: none;
}

.success-icon {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  color: var(--neon-red);
  text-shadow: 0 0 30px var(--glow-red);
  margin-bottom: 20px;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,100% { text-shadow: 0 0 30px var(--glow-red); }
  50%      { text-shadow: 0 0 60px var(--glow-red), 0 0 100px rgba(255,26,66,0.35), 0 0 20px rgba(57,255,143,0.2); }
}

.success-title {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--soft-red);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.success-message {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.success-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--neon-red);
  text-shadow: 0 0 10px var(--glow-red);
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.success-btn {
  padding: 12px 36px;
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  background: rgba(255,58,92,0.08);
  color: var(--neon-red);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all var(--transition);
}

.success-btn:hover {
  background: rgba(255,58,92,0.16);
  border-color: var(--neon-red);
  box-shadow: 0 0 20px rgba(255,58,92,0.22);
}

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep-bg); }
::-webkit-scrollbar-thumb {
  background: var(--mid-red);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--bright-red); }

/* ── RESPONSIVO ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .form-wrapper { padding: 24px 14px 60px; }
  .form-header { padding: 40px 20px 36px; }
  .form-section { padding: 22px 18px; }
  .date-wrapper { gap: 6px; }
  .submit-btn { padding: 16px 36px; font-size: 0.88rem; letter-spacing: 2px; }
  .radio-grid { grid-template-columns: 1fr 1fr; }
}

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