@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,,500,600,700,800,900&display=swap');
::-webkit-scrollbar {
  display: none;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    min-height: 100vh;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    color: #fff;
}
/*Header*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(252, 252, 252);
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

header img {
    height: 85px;
    width: 85%;
    margin-left: 50px;
}

/* Barra de navegación */

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    margin-right: 40px;
    position: relative;
}

nav ul li:hover ul {
    display: block;
}

nav a {
    color: #0B3D91;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #0477BF;
}

.container{
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  max-width: 100%;
  z-index: 1;
  margin-top: 20vh;
}


.container .card{
  margin-top: 0;
  position: relative;
  width: 95%;
  height:80vh;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  justify-content:center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  
}


#c1{
    background-image: url(../media/img/vuelos.jpeg);
    background-position: center;
    background-size: cover;
}



.container .card .content{
    padding: 20px;
    text-align: center;
    transform: translateY(100px);
    opacity: 0;
    transition: 0.5s;
}

.container .card:hover .content{
    transform: translateY(0px);
    opacity: 1;
}

.container .card .content h2{
    position: relative;
    text-align: center;
    font-size: 4em;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.container .card .content a{
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 200px;
    background: #fff;
    color: #0B3D91;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}

.container .card .content a:hover{
    transform: scale(1.2);
}


/*Boton de subida*/
.scroll-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 9999;
    background-color: #0B3D91;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
    transition: all 0.3s ease-in-out;
  }
  
  .scroll-top-btn:hover {
    background-color: #2c2c2c;
  }
  
  .scroll-top-btn.active {
    display: block;
  }
  
  .scroll-top-btn i {
    font-size: 24px;
  }
  
  /*Footer*/
  
  footer {
    position: absolute;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../media/img/footer-vuelos.jpeg) ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10vh;
  }
  
  footer .redes-sociales,
  footer .menu-footer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  
  footer .redes-sociales li,
  footer .menu-footer li {
    list-style: none;
  }
  
  footer .redes-sociales li a,
  footer .menu-footer li a {
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
  }
  
  footer .redes-sociales li a:hover {
    transform: translateY(-10px);
    opacity: 1;
  }
  
  footer .menu-footer li a{
  font-size: 2em;
  color:#fff;
  margin: 0 20px;
  display: inline-block;
  text-decoration: none;
  opacity: 0.8;
  }
  
  footer .menu-footer li a:hover{
    opacity: 1;
    transform: scale(1.2);
  }
  
  footer p{
    color: #fff;
    transition: all 0.3s ease-in-out;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
  }

  @media (max-width: 425px) {

    .container .card .content h2{
      position: relative;
      text-align: center;
      font-size: 3em;
      color: #fff;
      text-transform: uppercase;
      text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
      pointer-events: none;
  }

  }

  footer .imagen-footer {
    position:absolute;
    bottom: 0;
    left: 0;
    width: auto; /* Ajusta el tamaño según tus necesidades */
    height: auto;
    z-index: 100; /* Asegura que la imagen esté por encima de otros elementos */
  }
  @media (max-width: 768px) {
    footer {
        height: 50vh;
      }
      footer .imagen-footer {
        position:absolute;
        bottom: 0;
        left: 0;
        top: 40vh;
        width: auto; /* Ajusta el tamaño según tus necesidades */
        height: auto;
        z-index: 100; /* Asegura que la imagen esté por encima de otros elementos */
      }
  }
  @media (max-width: 480px) {
    footer {
      height: 50vh;
    }
    footer .imagen-footer {
        position:absolute;
        bottom: 0;
        left: 5%;
        top: 42vh;
        width: 90%; /* Ajusta el tamaño según tus necesidades */
        height: auto;
        z-index: 100; /* Asegura que la imagen esté por encima de otros elementos */
      }

  }