/* ============================================
   VARIABLES Y CONFIGURACIÓN BASE
   ============================================ */
:root {
  /* Paleta de colores OFICIAL */
  --lavender: #b7b1f2;
  --pink: #fdb7ea;
  --peach: #ffdccc;
  --yellow: #fbf3b9;

  /* Colores oscuros para mejor contraste en texto */
  --lavender-dark: #6b5fb5;
  --pink-dark: #f072ce;

  /* Texto */
  --text-dark: #2d2d2d;
  --text-medium: #4d4d4d;
}

/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(
    135deg,
    var(--yellow) 0%,
    var(--peach) 50%,
    var(--pink) 100%
  );
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.italiana-regular {
  font-family: "Italiana", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

/* ============================================
   FLUJO EN PASOS
   ============================================ */
.steps-shell {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  z-index: 1;
}

.steps-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.6s ease;
}

.step-section {
  flex: 0 0 100%;
  height: 100vh;
  padding: 1.5rem 0.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

.step-section[aria-hidden="true"] {
  pointer-events: none;
}

.step-section[aria-hidden="false"] {
  pointer-events: auto;
}

.step-section .step-content {
  flex: 1;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
}

.hero-section .step-content {
  justify-content: flex-start;
}

.details-section .step-content,
.confirmation-section .step-content {
  justify-content: flex-start;
}

/* Scrollbar personalizada */
.step-section::-webkit-scrollbar {
  width: 6px;
}

.step-section::-webkit-scrollbar-track {
  background: transparent;
}

.step-section::-webkit-scrollbar-thumb {
  background: rgba(183, 177, 242, 0.4);
  border-radius: 10px;
}

.step-section::-webkit-scrollbar-thumb:hover {
  background: rgba(183, 177, 242, 0.6);
}

.step-navigation {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem auto 0;
}

.step-nav-btn {
  flex: 1;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.step-nav-btn i {
  font-size: 1rem;
}

.step-nav-btn:hover,
.step-nav-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  outline: none;
}

.step-nav-btn--ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--text-medium);
  border: 2px solid var(--lavender);
}

.step-nav-btn--ghost:hover,
.step-nav-btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(183, 177, 242, 0.25);
}

/* ============================================
   PARTÍCULAS DE FONDO
   ============================================ */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.particles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20% 30%,
      rgba(183, 177, 242, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 60% 70%, rgba(253, 183, 234, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 220, 204, 0.3), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(251, 243, 185, 0.3), transparent),
    radial-gradient(2px 2px at 90% 60%, rgba(183, 177, 242, 0.3), transparent);
  background-size: 200% 200%;
  animation: particleFloat 20s ease infinite;
}

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

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader.active {
  display: flex;
}

.loader-content {
  text-align: center;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--peach);
  border-top: 4px solid var(--pink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-content p {
  color: var(--text-medium);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ============================================
   HERO SECTION - TARJETA DE INVITACIÓN
   ============================================ */
.hero-section {
  padding: 1.5rem 0.5rem 2rem;
  justify-content: center;
}

.hero-overlay {
  display: none;
}

.hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

.invitation-card {
  background: url("imagenes/descarga.jpg") center center/cover;
  backdrop-filter: blur(20px);
  border: 3px solid var(--lavender);
  border-radius: 25px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 1rem;
}

.invitation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.65);
  z-index: 0;
}

.invitation-card > * {
  position: relative;
  z-index: 1;
}

.card-icons {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.card-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
}

.card-icon:nth-child(1) {
  animation-delay: 0s;
}

.card-icon:nth-child(2) {
  animation-delay: 1.5s;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subtitle {
  font-family: "Italiana", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--lavender-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.name-highlight {
  font-family: "Italiana", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--pink-dark);
  margin: 0.5rem 0;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin: 1rem 0;
}

.age-number {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Italiana", sans-serif;
}

.age-text {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.presentacion-text {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(183, 177, 242, 0.1);
  border-left: 3px solid var(--pink);
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-medium);
  text-align: left;
}

/* ============================================
   COUNTDOWN MODERNO
   ============================================ */
.countdown-wrapper {
  margin: 1.2rem 0;
  padding: 1.2rem;
  background: rgba(183, 177, 242, 0.2);
  border-radius: 15px;
  border: 2px solid var(--lavender);
}

.countdown-title {
  font-family: "Italiana", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--lavender-dark);
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.countdown-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.time-value {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.time-unit:hover .time-value {
  transform: scale(1.05);
}

.time-value .number {
  font-family: "Italiana", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
  text-shadow: none;
}

.time-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lavender);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator {
  margin-top: 1.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-medium);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.scroll-indicator i {
  font-size: 1.2rem;
  color: var(--pink);
}

.scroll-indicator:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 6px;
  border-radius: 999px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ============================================
   SECCIONES PRINCIPALES
   ============================================ */
section {
  width: 100%;
}

.section-title {
  font-family: "Italiana", sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--lavender);
  position: relative;
  display: inline-block;
  width: 100%;
  letter-spacing: 2px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  border-radius: 2px;
}

.icon-wrapper {
  display: inline-block;
  margin-right: 1rem;
  color: var(--pink);
}

/* ============================================
   DETALLES DEL EVENTO
   ============================================ */
.details-section {
  background: transparent;
  width: 100%;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.detail-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.6rem 0.5rem;
  border-radius: 12px;
  border: 2px solid var(--lavender);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.detail-card:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
}

.detail-icon {
  width: 35px;
  height: 35px;
  margin: 0 auto 0.5rem;
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
}

.detail-card h3 {
  font-family: "Italiana", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--lavender);
  letter-spacing: 1px;
}

.detail-info {
  font-size: 0.8rem;
  color: var(--text-medium);
  line-height: 1.3;
}

/* ============================================
   MAPA
   ============================================ */
.map-section {
  margin-top: 1rem;
}

.map-title {
  font-family: "Italiana", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--lavender);
  letter-spacing: 2px;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--lavender);
  margin-bottom: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 450px;
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-map {
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  display: flex;
  margin: 0 auto;
  max-width: 220px;
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
}

.btn-success {
  background: linear-gradient(135deg, var(--lavender), var(--pink));
}

.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.btn-danger {
  background: linear-gradient(135deg, #dc3545, #c82333);
}

/* ============================================
   FORMULARIO
   ============================================ */
.confirmation-section {
  background: transparent;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--lavender);
}

#rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: var(--pink);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid var(--lavender);
  border-radius: 10px;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
  font-family: "Montserrat", sans-serif;
}

/* Checkbox personalizado */
.checkbox-group {
  align-items: center;
  justify-content: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  position: relative;
  padding-left: 2.5rem;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--lavender);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
  background-color: rgba(255, 255, 255, 0.1);
}

.checkbox-label input:checked ~ .checkmark {
  background: linear-gradient(135deg, var(--pink), var(--peach));
  border-color: var(--pink);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark::after {
  display: block;
}

.checkbox-text {
  font-size: 1rem;
  color: var(--light-text);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.form-message {
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: rgba(40, 167, 69, 0.2);
  border: 2px solid #28a745;
  color: #28a745;
  display: block;
}

.form-message.error {
  background: rgba(220, 53, 69, 0.2);
  border: 2px solid #dc3545;
  color: #dc3545;
  display: block;
}

.form-message.info {
  background: rgba(0, 123, 255, 0.2);
  border: 2px solid #007bff;
  color: #007bff;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.step-footer {
  width: 100%;
  background: transparent;
  border-top: 2px solid var(--lavender);
}

.step-footer .footer-content {
  text-align: center;
}

.footer-scorpio {
  margin-bottom: 1rem;
}

.footer-scorpio .zodiac-symbol {
  font-size: 3rem;
  color: #fdb7ea;
  display: inline-block;
  animation: pulse 3s ease-in-out infinite;
}

.step-footer p {
  color: #4d4d4d;
  margin: 0.5rem 0;
}

.step-footer .fa-heart {
  color: #d6079f;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  25%,
  75% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.footer-year {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet y laptop pequeño */
@media (max-width: 1024px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .invitation-card {
    max-width: 550px;
  }

  .map-container iframe {
    height: 350px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .step-section {
    padding: 1rem 0.5rem 1.5rem;
  }

  .step-section .step-content {
    gap: 1rem;
  }

  .hero-section {
    padding: 1rem 0.5rem 1.5rem;
  }
  .container {
    padding: 0 0.8rem;
  }

  .invitation-card {
    padding: 1.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
  }

  .card-icons {
    margin-bottom: 0.8rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .name-highlight {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .countdown-modern {
    gap: 0.6rem;
  }

  .time-value {
    width: 60px;
    height: 60px;
  }

  .time-value .number {
    font-size: 1.5rem;
  }

  .time-label {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .form-wrapper {
    padding: 1.5rem;
  }

  .button-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .step-navigation {
    flex-direction: column;
    gap: 0.8rem;
  }

  .step-nav-btn {
    width: 100%;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
  }

  .detail-card {
    padding: 0.35rem 0.3rem;
  }

  .detail-icon {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .detail-card h3 {
    font-size: 0.75rem;
    margin-bottom: 0.15rem;
  }

  .detail-info {
    font-size: 0.7rem;
  }

  .map-section {
    margin-top: 0.4rem;
  }

  .map-title {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .map-container iframe {
    height: 280px;
  }

  .btn-map {
    max-width: 180px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .countdown-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .step-section {
    padding: 0.8rem 0.3rem 1rem;
  }

  .step-section .step-content {
    gap: 0.8rem;
  }

  .hero-section {
    padding: 0.8rem 0.3rem 1rem;
  }

  .container {
    padding: 0 0.5rem;
  }

  .invitation-card {
    padding: 1.2rem 0.8rem;
    margin-bottom: 0.8rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
  }

  .name-highlight {
    font-size: 2.2rem;
  }

  .age-number {
    font-size: 1.6rem;
  }

  .age-text {
    font-size: 0.9rem;
  }

  .time-value {
    width: 55px;
    height: 55px;
  }

  .time-value .number {
    font-size: 1.3rem;
  }

  .time-label {
    font-size: 0.65rem;
  }

  .section-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .details-grid {
    gap: 0.35rem;
    margin-bottom: 0.5rem;
  }

  .detail-card {
    padding: 0.3rem 0.25rem;
  }

  .detail-icon {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    margin-bottom: 0.15rem;
  }

  .detail-card h3 {
    font-size: 0.7rem;
    margin-bottom: 0.1rem;
  }

  .detail-info {
    font-size: 0.65rem;
  }

  .map-section {
    margin-top: 0.3rem;
  }

  .map-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .map-container {
    margin-bottom: 0.6rem;
  }

  .map-container iframe {
    height: 220px;
  }

  .btn-map {
    max-width: 160px;
    padding: 0.45rem 0.8rem;
    font-size: 0.7rem;
    gap: 0.4rem;
  }

  .step-navigation {
    gap: 0.6rem;
    margin: 0.8rem auto 0;
  }

  .step-nav-btn {
    font-size: 0.85rem;
    gap: 0.4rem;
    padding: 0.8rem 1rem;
  }
}

/* ============================================
   ANIMACIONES ESPECIALES
   ============================================ */
.balloon {
  position: fixed;
  bottom: -100px;
  width: 40px;
  height: 50px;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: floatUp 10s ease-in-out forwards;
  opacity: 0.8;
  z-index: 10;
}

.balloon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: rgba(255, 255, 255, 0.5);
}

@keyframes floatUp {
  to {
    bottom: 110%;
    transform: translateX(calc(var(--random-x, 0) * 100px));
  }
}
