@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body .background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.1;
}
body h2 {
  font-family: "lora";
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-style: italic;
}
body h3 {
  font-family: "lora";
  font-optical-sizing: auto;
  font-size: 1.1rem;
  font-style: italic;
  color: hsl(87, 94%, 7%);
}
body .card-title {
  font-size: 1.2rem; /* Ajusta el tamaño del título */
}
body .card-text {
  font-size: 1rem; /* Ajusta el tamaño del texto */
}
body .btn {
  font-size: 0.9rem; /* Ajusta el tamaño del botón si es necesario */
}

.container {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 0.5fr;
  gap: 5px 5px;
  grid-auto-flow: row;
  grid-template-areas: "header header header header" "main aside1 aside1 aside1" "section1 section1 section2 section2" "aside2 aside2 aside2 aside2" "footer footer footer footer";
  z-index: 0;
}

.header {
  min-height: 90px;
  grid-area: header;
  font-weight: bold;
  position: relative;
  z-index: 3;
}

.main {
  grid-area: main;
  position: relative;
  display: flex;
  z-index: 1;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.aside1 {
  grid-area: aside1;
  position: relative;
  z-index: 1;
  /*background-color:$oscuro(0, 0%, 0%); */ /* Fondo de las cajas */
  /*border: 2px solid $medio; */ /* Borde de 2px de color verde */
  /*border-radius: 20px; */ /* Bordes redondeados */
  /*box-shadow: 2px 2px 10px $oscuro;*/
  padding: 10px;
}

.aside2 {
  grid-area: aside2;
  position: relative;
  z-index: 1;
  /*background-color:$oscuro(0, 0%, 0%); */ /* Fondo de las cajas */
  /*border: 2px solid $medio; */ /* Borde de 2px de color verde */
  /*border-radius: 20px; */ /* Bordes redondeados */
  /*box-shadow: 2px 2px 10px $oscuro;*/
  padding: 10px;
}

.section2 {
  grid-area: section2;
  position: relative;
  z-index: 3;
  /*background-color:$oscuro(0, 0%, 0%); */ /* Fondo de las cajas */
  /*border: 2px solid $medio; */ /* Borde de 2px de color verde */
  /*border-radius: 20px; */ /* Bordes redondeados */
  /*box-shadow: 2px 2px 10px $oscuro;*/
  padding: 10px;
}

.section1 {
  grid-area: section1;
  position: relative;
  z-index: 3;
  /*background-color:$oscuro(0, 0%, 0%); */ /* Fondo de las cajas */
  /*border: 2px solid $medio; */ /* Borde de 2px de color verde */
  /*border-radius: 20px; */ /* Bordes redondeados */
  /*box-shadow: 2px 2px 10px $oscuro;*/
  padding: 10px;
}

.footer {
  grid-area: footer;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 1rem;
  z-index: 3;
  background-color: hsl(87, 94%, 7%) 0, 0%, 0%;
  border: 2px solid rgba(128, 128, 228, 0.8549019608); /* Borde de 2px de color verde */
  border-radius: 20px; /* Bordes redondeados */
  box-shadow: 2px 2px 10px hsl(87, 94%, 7%);
  padding: 20px;
}
.footer a {
  text-decoration: none;
  margin: 0 10px;
  position: relative;
  z-index: 4;
}
.footer i {
  transition: transform 0.3s ease;
}
.footer i:hover {
  transform: scale(1.2);
}

td, th {
  background: rgba(255, 255, 255, 0.8235294118);
  color: hsl(87, 94%, 7%);
}

table {
  border-collapse: separate;
  border-spacing: 5px;
  background: hsl(87, 94%, 7%) bottom left repeat-x;
  color: rgba(255, 255, 255, 0.8235294118);
}

/*Fin de CSS Pagina Anterior*/
.styled-background {
  background-color: rgba(128, 128, 228, 0.8549019608);
  padding: 15px;
}

.icono {
  width: 40px;
  height: 35px;
}

.navbar {
  background-color: #0a1f44;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.navbar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.navbar .navbar-brand img {
  width: 60px;
  height: auto;
}
.navbar .navbar-toggler {
  margin-left: auto;
}
.navbar .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar .navbar-nav .nav-item {
  margin: 0 15px;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: bold;
  transition: color 0.3s ease;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: rgba(255, 255, 255, 0.82);
}

.img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Opción para cubrir todo el contenedor */
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.ticketText {
  background-color: #001a35;
  color: rgba(255, 255, 255, 0.82);
}

.card-title {
  text-transform: uppercase;
}

.formColor {
  background-color: #001a35; /* Azul claro */
  padding: 20px;
  border-radius: 10px; /* Bordes redondeados */
  color: rgba(255, 255, 255, 0.82);
}

.lora-letras_web {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal .modal-content {
  background: #1e3a8a;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animated-card {
  text-transform: uppercase;
  background: linear-gradient(135deg, #1e3a8a, #001a35);
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.animated-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}
.animated-card .card-title {
  font-size: 1.8rem;
  font-weight: bold;
  animation: pulse 1.5s infinite alternate;
}
.animated-card .card-text {
  font-size: 1.2rem;
  animation: fadeIn 1s ease-in-out;
}

.btn-primary-custom {
  margin-top: 10px;
  display: inline-block;
  padding: 10px 20px;
  background: #001a35;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-primary-custom:hover {
  background: #1e40af;
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
hr {
  border: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #34d399, transparent);
  animation: glowing 1.5s infinite;
}

@keyframes glowing {
  0% {
    background: linear-gradient(90deg, transparent, #34d399, transparent);
  }
  50% {
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
  }
  100% {
    background: linear-gradient(90deg, transparent, #34d399, transparent);
  }
}
/*@media screen and (max-width: 768px){
    .container{  
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 0.5fr 1fr 1fr 1fr 1fr 1fr 1fr 0.5fr;
        gap: 5px 5px;
        grid-auto-flow: row;
        grid-template-areas:
          "header header"
          "main main"
          "main main"
          "section1 section1"
          "section2 section2"
          "aside1 aside1"
          "aside2 aside2"
          "footer footer";
    }
    body{
        h2{
            font-family: "PlaypenSans-Medium";
            font-size: 1.25rem;
            font-style: italic;
            color: $oscuro;
        }
        h3{
            font-family: "PlaypenSans-Medium";
            font-size: 1rem;
            font-style: italic;
            color: $oscuro;
        }
    }
}

@media screen and (max-width: 480px){
    .container{  
        grid-template-columns: 2fr;
        grid-template-rows: 2fr 1fr 1fr 1fr 1fr 1fr 1fr 0.5fr;
        gap: 5px 5px;
        grid-auto-flow: row;
        grid-template-areas:
          "header"
          "main"
          "main"
          "section1"
          "section2"
          "aside1"
          "aside2"
          "footer";
    }
    body{
        h2{
            font-family: "PlaypenSans-Bold";
            font-size: 1rem;
            font-style: italic;
            color: $oscuro;
        }
        h3{
            font-family: "PlaypenSans-Medium";
            font-size: 0.80rem;
            font-style: italic;
            color: $oscuro;
        }
    }     
} */
/*Correcion de mi responsive*/
/* Estilos generales */
@media screen and (max-width: 768px) {
  .container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr 1fr 1fr 1fr 0.5fr;
    gap: 5px 5px;
    grid-auto-flow: row;
    grid-template-areas: "header header" "section1 section1" "section2 section2" "aside1 aside1" "aside2 aside2" "footer footer";
  }
  /* Navbar estático, no desplazado */
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: relative; /* Puede ser 'relative' o 'static' */
    z-index: 50; /* Navbar por encima de otros elementos */
  }
  .nav-item {
    margin: 5px;
  }
  /* Secciones con z-index mayor cuando el navbar está estático */
  .section1, .section2 {
    position: relative;
    z-index: 200; /* Secciones por encima del navbar */
  }
  /* Para asegurarte que el header esté siempre por encima */
  header {
    position: relative;
    z-index: 100; /* El header siempre visible */
  }
  /* Otros elementos */
  .main, .aside1, .aside2, footer {
    position: relative;
    z-index: 1;
  }
  body h2 {
    font-family: "PlaypenSans-Medium";
    font-size: 1.25rem;
    font-style: italic;
    color: hsl(87, 94%, 7%);
  }
  body h3 {
    font-family: "PlaypenSans-Medium";
    font-size: 1rem;
    font-style: italic;
    color: hsl(87, 94%, 7%);
  }
  /* Ocultar imágenes en pantallas pequeñas */
  img {
    display: none; /* Oculta todas las imágenes en pantallas pequeñas */
  }
  .main {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .container {
    grid-template-columns: 2fr;
    grid-template-rows: 2fr 1fr 1fr 1fr 1fr 0.5fr;
    gap: 5px 5px;
    grid-auto-flow: row;
    grid-template-areas: "header" "section1" "section2" "aside1" "aside2" "footer";
  }
  /* Navbar desplazado, sticky o fixed */
  nav {
    flex-direction: column;
    align-items: flex-start;
    position: sticky; /* O 'fixed' si lo quieres fijo */
    top: 0; /* En caso de sticky o fixed */
    z-index: 150; /* Navbar por encima de las secciones */
  }
  .nav-item {
    margin: 5px 0;
  }
  /* Secciones con z-index mayor cuando el navbar no se ha desplazado */
  .section1, .section2 {
    position: relative;
    z-index: 100; /* Las secciones deben estar debajo del navbar cuando es sticky o fixed */
  }
  /* Para asegurarte que el header esté siempre por encima */
  header {
    position: relative;
    z-index: 100;
  }
  /* Otros elementos */
  .main, .aside1, .aside2, footer {
    position: relative;
    z-index: 1;
  }
  body h2 {
    font-family: "PlaypenSans-Bold";
    font-size: 1rem;
    font-style: italic;
    color: hsl(87, 94%, 7%);
  }
  body h3 {
    font-family: "PlaypenSans-Medium";
    font-size: 0.8rem;
    font-style: italic;
    color: hsl(87, 94%, 7%);
  }
  /* También ocultamos las imágenes en pantallas pequeñas (específicamente en estas secciones) */
  .section1 img, .section2 img {
    display: none;
  }
  .main {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */
