@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Manrope', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

/* ===============================
   FONDO DEGRADADO PREMIUM
================================= */
body {
  height: 100vh;
  background: linear-gradient(135deg, #ffeddd 20%, #ffdaeb 60%, #caf7ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Oculto */
.hidden {
  display: none;
}

/* ===============================
   OVERLAY
================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ===============================
   GLASS CARD
================================= */
.modal-card {
  position: relative;
  width: 920px;
  max-width: 95%;
  padding: 55px 40px;
  border-radius: 32px;
  background: rgb(255 255 255 / 60%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 2px solid rgb(255 255 255 / 80%);
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
  text-align: center;
}

@media (max-width: 768px) {

  /* Baja el header un poco */
  .modal-card {
    width: 350px;
  }


}

/* ===============================
   FLAGS
================================= */
.modal-langs {
  position: absolute;
  top: 22px;
  right: 28px;
  display: flex;
  gap: 12px;
}

.modal-langs img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
}

/* ===============================
   HEADER
================================= */
.modal-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.modal-title {
  font-size: 64px;
  font-weight: 400;
  color: #011746;
}

.modal-hand {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.modal-subtitle {
  margin-top: 12px;
  font-size: 22px;
  color: #5f6b7a;
}

/* ===============================
   OPCIONES
================================= */
.modal-options {
  margin-top: 45px;
  display: flex;
  gap: 35px;
  justify-content: center;
  flex-wrap: wrap;
}

.option-card {
  flex: 1;
  min-width: 300px;
  max-width: 420px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.35s ease;
}

.option-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.18);
}

/* ===============================
   COPYRIGHT
================================= */
.modal-copyright {
  margin-top: 25px;
  font-size: 13px;
  color: #4a5568;
  text-align: center;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .modal-title {
    font-size: 42px;
  }

  .modal-subtitle {
    font-size: 18px;
  }
}


@media (max-width: 768px) {
.modal-options {

  gap: 20px;

}

.modal-card {
  padding: 20px 40px;

}

}


.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}

@media (max-width: 768px) {

  /* Baja el header un poco */
  .modal-header {
    margin-top: 40px;
  }

  /* Reduce el espacio entre el texto y las tarjetas */
  .modal-options {
    margin-top: 25px;  /* antes tenías 45px */
  }

}

@media (max-width: 768px) {
  .modal-hand {
    width: 30px;
    height: 30px;
  }
}