 /* Fonts (solo una importación de cada tipo) */
  @import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&display=swap');
 
 :root {
    --color-fondo: #f8fbfa;
    --color-back: #CFCEC3;
    --color-texto: #333;
    --color-rosado: #8c715a;
    --color-claro: #edeff2;
  }

  body {
    background: url('img/fondo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Georgia', serif;
    color: var(--color-texto);
  }

  

  video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover; /* recorta el video sin deformarlo */
  }

  .titulo-rosado {
    color: #246E81 !important; /* se mantiene la versión más completa */
    font-weight: 600;
    font-size: 1.4rem;
    text-align: center;
    width: 100%;
    margin: 0;
  }

  .form-control,
  .btn {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .boleto-img {
    border-radius: 10px;
    border: 1px solid var(--color-claro);
    max-width: 100%;
    height: auto;
  }

  /* Fondo oscuro semitransparente tipo Pokémon GO */
  .modal.fade.show {
    background: rgba(0, 0, 0, 0.6);
  }

  /* Contenedor principal del modal */
  .modal-content {
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    font-family: 'Fredoka', sans-serif;
    animation: popIn 0.4s ease;
  }

  /* Texto general */
  .modal-body p,
  .modal-body label {
    color: #5f5f5f;
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Input redondeado */
  .asistentes-input {
    border-radius: 12px;
    border: 2px solid #47B6A3;
    text-align: center;
    font-weight: 500;
  }

  /* Botón principal tipo “ACEPTAR” Pokémon GO */
  .btn-confirmacion-modal {
    display: block;
    width: 320px;
    background: linear-gradient(90deg, #71D6B0, #47B6A3);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 5px 0;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 0 #1C3C8E, 0 8px 12px rgba(0, 0, 0, 0.25);
  }

  .btn-confirmacion-modal:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #81DFC0, #4FC0AF);
  }

  /* Botón secundario tipo “DECLINAR” Pokémon GO */
  .btn-no-asistiremos {
    background: transparent;
    border: none;
    color: #47B6A3;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s;
  }

  .btn-no-asistiremos:hover {
    color: #2A75BB;
    text-decoration: underline;
  }

  /* Animación de entrada */
  @keyframes popIn {
    from {
      transform: scale(0.9);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* Video e invitación */
  .video-link {
    display: inline-block;
    line-height: 0;
  }

  .video-container {
    position: relative;
    display: inline-block;
    line-height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  }

  .video-container video {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0 0;
    display: block;
  }

  /* Botón del ancho del video */
  .btn-ver-invitacion {
    display: block;
    width: 100%;
    /* max-width: 420px; */
    background-color: #2A75BB;
    color: #FFCB05;
    border: 3px solid #FFCB05;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 14px 0;
    border-radius: 0 0 20px 20px;
    cursor: pointer;
    box-shadow: 0 5px 0 #1C3C8E, 0 8px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease-in-out;
  }

  .btn-ver-invitacion:hover {
    background-color: #3C88DD;
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 6px 0 #1C3C8E, 0 10px 15px rgba(0, 0, 0, 0.3);
  }

  /* Caja blanca con sombra */
  .pokemon-modal-box {
    background: #fff;
    border-radius: 18px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: popIn 0.4s ease;
    border: 2px solid #47B6A3;
  }

  /* Título y texto Pokémon modal */
  .pokemon-modal-title {
    color: #246E81;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .pokemon-modal-text {
    color: #5f5f5f;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  /* Botón principal tipo "Aceptar" */
  .btn-pokemon-aceptar {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #71D6B0, #47B6A3);
    border: none;
    color: #fff;
    font-weight: 400;
    padding: 12px 0;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-pokemon-aceptar:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #81DFC0, #4FC0AF);
  }