/* ================================================================
   15 ANOS DA ARIANA — CSS COMPLETO
   Tema: Honkai Star Rail + Genshin Impact + Fantasia Espacial
   Cores: Azul cósmico (#4FC3F7), Roxo espacial (#6A0DAD/#9B30FF),
          Dourado (#FFD700), Branco (#fff)
   ================================================================ */

/* ========== VARIÁVEIS ========== */
:root {
  --purple: #6a0dad;
  --purple-light: #9b30ff;
  --purple-dark: #3b0764;
  --purple-glow: rgba(106, 13, 173, 0.35);
  --gold: #ffd700;
  --gold-light: #ffe44d;
  --gold-glow: rgba(255, 215, 0, 0.25);
  --blue: #4fc3f7;
  --blue-light: #81d4fa;
  --blue-dark: #01579b;
  --blue-glow: rgba(79, 195, 247, 0.25);
  --cosmic-bg: #0a0a1a;
  --card-bg: rgba(18, 18, 42, 0.88);
  --text: #e8e8f0;
  --text-muted: #9090b0;
  --font-display: "Great Vibes", cursive;
  --font-cosmic: "Orbitron", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--cosmic-bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ========== CANVAS FUNDO ========== */
#spaceCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* ========== UTILITÁRIOS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--purple-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--purple-glow);
}
.btn-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.06);
  transition: background 0.3s;
}
.navbar.scrolled {
  background: rgba(10, 10, 26, 0.92);
  border-bottom-color: rgba(155, 48, 255, 0.15);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-cosmic);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 1px;
}
.nav-logo svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.nav-logo .logo-star {
  color: var(--purple-light);
  font-size: 1.1rem;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav-link {
  display: block;
  padding: 8px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.07);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  overflow: hidden;
}

/* Fenda espaço-tempo */
.space-rupture {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: min(85vw, 650px);
  height: min(85vw, 650px);
  background: radial-gradient(
    circle,
    rgba(106, 13, 173, 0.12) 0%,
    rgba(79, 195, 247, 0.06) 25%,
    transparent 55%
  );
  border-radius: 50%;
  animation: rupturePulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes rupturePulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) scale(1.12);
    opacity: 1;
  }
}

/* Constelações decorativas */
.constellation {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.03),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.constellation.c1 {
  top: 10%;
  right: 5%;
  animation: constDrift 8s ease-in-out infinite;
}
.constellation.c2 {
  bottom: 20%;
  left: 3%;
  animation: constDrift 10s ease-in-out infinite reverse;
}
@keyframes constDrift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -15px);
  }
}

/* Container do hero */
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 780px;
  width: 100%;
  text-align: center;
}

/* ===== Tribbie em destaque ===== */
.hero-character {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}
.character-aura {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: conic-gradient(
    var(--gold-glow),
    var(--purple-glow),
    var(--blue-glow),
    var(--gold-glow)
  );
  animation: auraSpin 5s linear infinite;
  z-index: 0;
  opacity: 0.6;
}
@keyframes auraSpin {
  to {
    transform: rotate(360deg);
  }
}
.character-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 30px var(--purple-glow), 0 0 60px rgba(79, 195, 247, 0.15);
}
.character-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.character-img:hover {
  transform: scale(1.05);
}
.character-name {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(6px);
  padding: 3px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.12);
  white-space: nowrap;
}
.cn-label {
  font-family: var(--font-cosmic);
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ===== Textos do hero ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(155, 48, 255, 0.1);
  border: 1px solid rgba(155, 48, 255, 0.15);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2px;
}
.hero-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.hero-title {
  line-height: 1.1;
}
.ht-line1 {
  display: block;
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 2px;
}
.ht-line2 {
  display: block;
  font-family: var(--font-display);
  font-size: 3.8rem;
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow);
}
.hero-description {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Botão CTA ===== */
.btn-hero-cta {
  padding: 16px 32px;
  font-size: 1rem;
  animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px var(--purple-glow);
  }
  50% {
    box-shadow: 0 4px 35px var(--purple-glow),
      0 0 50px rgba(155, 48, 255, 0.15);
  }
}

/* ===== Countdown ===== */
.countdown-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 12px 24px;
  background: rgba(10, 10, 26, 0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 215, 0, 0.08);
  border-radius: 50px;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}
.cd-number {
  font-family: var(--font-cosmic);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
  line-height: 1;
}
.cd-label {
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.cd-separator {
  font-family: var(--font-cosmic);
  color: var(--purple-light);
  font-size: 1.3rem;
  font-weight: 700;
  animation: cdBlink 1s step-end infinite;
}
@keyframes cdBlink {
  50% {
    opacity: 0;
  }
}

/* ===== Scroll indicator ===== */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  animation: floatDown 2s ease-in-out infinite;
  cursor: pointer;
}
.scroll-indicator i {
  font-size: 0.9rem;
  color: var(--purple-light);
}
@keyframes floatDown {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* ================================================================
   SEÇÕES PADRÃO
   ================================================================ */
.section {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}
.section-container {
  max-width: 900px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-icon {
  font-size: 2rem;
  color: var(--purple-light);
  margin-bottom: 6px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.divider {
  color: var(--purple-light);
  font-size: 1.1rem;
  letter-spacing: 8px;
  opacity: 0.35;
}

/* ================================================================
   CARDS — INFORMAÇÕES DO EVENTO
   ================================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.info-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.06);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: all 0.35s;
}
.info-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px var(--purple-glow);
}
.card-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-cosmic);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.card-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.card-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 16px;
  background: rgba(79, 195, 247, 0.08);
  border: 1px solid rgba(79, 195, 247, 0.15);
  border-radius: 8px;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.82rem;
  transition: all 0.3s;
}
.btn-map:hover {
  background: rgba(79, 195, 247, 0.15);
}

/* ================================================================
   TRAJE
   ================================================================ */
.traje-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}
.traje-card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: all 0.35s;
}
.traje-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-light);
  box-shadow: 0 8px 30px var(--purple-glow);
}
.traje-card.traje-highlight {
  border-color: rgba(155, 48, 255, 0.12);
  background: rgba(106, 13, 173, 0.05);
}
.traje-card.traje-highlight:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px var(--gold-glow);
}
.traje-bg {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(106, 13, 173, 0.04),
    transparent 60%
  );
  pointer-events: none;
}
.traje-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.traje-title {
  font-family: var(--font-cosmic);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.traje-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}
.traje-desc strong {
  color: var(--purple-light);
}
.traje-desc em {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-style: italic;
}
.traje-gem {
  margin-top: 12px;
  font-size: 1.2rem;
  color: var(--purple-light);
  opacity: 0.3;
}

/* ================================================================
   RSVP — FORMULÁRIO
   Fundo: hiperespaço / Expresso Astral
   ================================================================ */
.section-rsvp {
  background: linear-gradient(180deg, var(--cosmic-bg) 0%, rgba(10, 10, 26, 0.95) 100%);
}
.section-rsvp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(79, 195, 247, 0.015) 60px,
    rgba(79, 195, 247, 0.015) 61px
  );
  pointer-events: none;
  z-index: 0;
}

.rsvp-card {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.06);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.rsvp-bg-hyper {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(79, 195, 247, 0.03), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(106, 13, 173, 0.04), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== Form ===== */
.rsvp-form {
  position: relative;
  z-index: 1;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.form-group label svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 12px var(--purple-glow);
  background: rgba(255, 255, 255, 0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.55;
}
.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

/* ===== Acompanhantes ===== */
#acompanhantesContainer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.acompanhante-row {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: rowSlide 0.25s ease-out;
}
@keyframes rowSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.row-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(155, 48, 255, 0.1);
  color: var(--purple-light);
  font-family: var(--font-cosmic);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.row-fields {
  display: flex;
  gap: 8px;
  flex: 1;
}
.row-fields input {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: all 0.3s;
}
.row-fields input:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-glow);
}
.btn-remove-row {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid rgba(244, 67, 54, 0.12);
  background: rgba(244, 67, 54, 0.06);
  color: #e57373;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.btn-remove-row:hover {
  background: rgba(244, 67, 54, 0.15);
}
.btn-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  background: rgba(106, 13, 173, 0.06);
  border: 1px dashed rgba(155, 48, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--purple-light);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.btn-add:hover {
  background: rgba(106, 13, 173, 0.15);
  border-style: solid;
  border-color: var(--purple-light);
}

/* ===== LGPD Checkbox ===== */
.checkbox-group {
  margin: 16px 0;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--purple-light);
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Submit ===== */
.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 4px;
}

/* ===== Form message ===== */
.form-message {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-align: center;
}
.form-message.error {
  display: block;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.15);
  color: #e57373;
}
.form-message.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.15);
  color: #81c784;
}

/* ================================================================
   MODAL
   ================================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-box {
  background: linear-gradient(135deg, #1a1a3e, #0d0d2b);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  animation: modalEnter 0.4s ease-out;
  box-shadow: 0 0 50px var(--purple-glow);
}
@keyframes modalEnter {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.modal-particles {
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 8px;
}
.modal-rocket {
  font-size: 3.2rem;
  color: var(--gold);
  margin-bottom: 12px;
  animation: rocketBounce 1s ease-in-out infinite;
}
@keyframes rocketBounce {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}
.modal-title {
  font-family: var(--font-cosmic);
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.modal-message {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 4px;
}
.modal-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 215, 0, 0.04);
}
.footer-container {
  max-width: 500px;
  margin: 0 auto;
}
.footer-stars {
  font-size: 1rem;
  color: var(--purple-light);
  letter-spacing: 4px;
  margin-bottom: 10px;
  opacity: 0.35;
}
.footer-phrase {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-event {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-family {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ================================================================
   RESPONSIVIDADE
   ================================================================ */

/* Tablet e mobile grande */
@media (max-width: 768px) {
  .hero-character {
    width: 145px;
    height: 145px;
  }
  .ht-line1 {
    font-size: 1.2rem;
  }
  .ht-line2 {
    font-size: 2.8rem;
  }
  .hero-description {
    font-size: 0.92rem;
  }
  .countdown-wrapper {
    gap: 4px;
    padding: 10px 14px;
  }
  .cd-number {
    font-size: 1.15rem;
  }
  .cd-block {
    min-width: 38px;
  }
  .section-title {
    font-size: 2.4rem;
  }
  .section {
    padding: 40px 16px;
  }
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .traje-cards {
    grid-template-columns: 1fr;
  }
  .rsvp-card {
    padding: 24px 18px;
  }
  .navbar {
    padding: 0 4px;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 26, 0.96);
    backdrop-filter: blur(12px);
    padding: 8px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.06);
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-link {
    padding: 10px 16px;
  }
  .nav-toggle {
    display: flex;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .hero-character {
    width: 120px;
    height: 120px;
  }
  .character-aura {
    inset: -8px;
  }
  .ht-line2 {
    font-size: 2.2rem;
  }
  .ht-line1 {
    font-size: 1rem;
  }
  .hero-description {
    font-size: 0.85rem;
  }
  .cd-number {
    font-size: 1rem;
  }
  .cd-block {
    min-width: 32px;
  }
  .cd-separator {
    font-size: 1rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2rem;
  }
  .section {
    padding: 32px 14px;
  }
  .row-fields {
    flex-direction: column;
    gap: 6px;
  }
  .btn-hero-cta {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
