@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Quicksand:wght@300..700&family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin:0;
    padding: 0;
    
}
html::-webkit-scrollbar{
    display: none;
    visibility: hidden;
}

section{
    height:250vh;
    background-color: black;
    position: relative;
    overflow: hidden;
}

.pineada{
    position: absolute;
    height: 100vh;
    width: 100%;
    background-color: black;
    top:0;
}
nav{
    display: flex;
    width: 100%;
    position: fixed;
    z-index: 3;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.separador{
    padding: 3vw 1vw;
    width: auto;
}
a{
    padding-left: 1vw;
    padding-right: 1vw;
    text-decoration: none;   
    font-family: 'Poppins', sans-serif;
    color: white; 
}

.atletas{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: contain;
    z-index: 2;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%); 
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%);
}

.dentro-pineada{
    height: 100%;
    width: 100%;
    position: relative;
}

.imagen{
    width: 100%;
    height: 150%;
    object-fit: cover;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%); 
    -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.caja{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    font-family: "Oswald";
    color: #0a55a2;
    overflow: hidden;
}
.caja img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: start;
}
.gatos{
    font-size: 15vw;
}
.espacio{
    height: 400vh;
    background-color: transparent;
}
.uaqDeportes{
    width: auto;
    height: clamp(100px, 10vh, 25vh);
    align-self: center;
}
.trigger{
    position: absolute;
    height: 100vh;
    width: 100%;
    background-color:transparent;
    bottom: 0;
}
.trigger-container{
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-content: center;
    text-align: center;
    font-family: "Roboto Slab";
    color: white;
}

.prueba{
    height: 500vh;
    width: 100%;
    background-color: blue;
}
.reducido{
    display: none;
}



/* Estilos para el drawer */
.drawer {
    position: fixed;
    top: 0;
    left: -100%; /* Fuera de la vista inicialmente */
    min-width: 150px;
    height: 100%;
    background-color: white;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    transition: 0.5s;
    color: black;
  }

  .drawer .link{
    color: black;
    font-size:2vh;
  }
  
  .drawer.open {
    left: 0; /* Drawer visible */
  }
  
  .backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 500;
  }
  
  .backdrop.show {
    display: block;
  }
  
  .close-btn, .open-btn {
    border: none;
    cursor: pointer;
    border-radius: 10px;
    background-color: transparent;
    color: white;
    padding-left: 15px;
  }
  
  .open-btn {
    display: none;
    gap: 10px;
  }
  
  .close-btn{
    padding: 10px;
    position: absolute;
    right: 10px;
    color: black;
    
  }
  
  .close-btn:hover{
    background-color: #dbdbdb;
  }

 .drawer a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    position: relative;
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
}
.drawer a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 0;
    height: 2px;
    background-color: #444;
    border-radius: 1px;
    transition: 0.3s;
}
.drawer a:hover::after {
    width: 100%;
}
.titulo-drawer{
  align-self: center;
  font-size:4vw;
  font-weight:500;
  padding:0;
  margin: 0;
}


@media (max-width: 965px) {
    .hideMenu{
        display: none;
    }
    .open-btn{
        display: flex
    }
    .navbar-content{
        justify-content: space-between;
    }
    .logo{
      width: 10vw;
    }
}
