@font-face {
    font-family: "BebasNeue";
    src: url(../fuentes/BebasNeue-Regular.ttf);
}

body {
    margin: 0;
    padding: 0;
    font-family: "BebasNeue";
    pointer-events: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a{
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 40px;
    margin-left: 6px;
    letter-spacing: 1.5px;
}

.marca a{
    font-size: 45px;
}


.menu{
    display: flex;
    align-items: center;
}

.menu a{
    font-weight: normal;
    font-size: 19px;
    color: rgb(34, 31, 31);
    margin: 1.5vw;
    position: relative;
    margin-top: 2.5vw;
    font-size: 21px;
    
}

.menu a:hover::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
}


.menu input{
    height: 25px;
    border: 1px solid black;
    border-radius: 40px;
    margin-left: 20px;
    margin-top: 0.8vw;
    outline: none;
}

.menu input::placeholder{
    font-family: "BebasNeue";
    text-align: center;
} 

.cerrar{
    display: none;
}

.menu-icon {
    font-size: 35px;
    line-height: 1;

}

.menu-icon:hover{
    font-size: 38px;
}

#cerrar, #abrir{
    background-color: transparent;
    border: none;
}

.cerrar {
    background: transparent;
    border: none;
    color: #000;
    font-size: 24px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    
}

.cerrar:hover{
    color: #939191;
}

.me-gusta, .carrito{
    margin-top: 1vw;
}

.carrito{
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('../Imagenes/Iconos/116356.png');
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    margin-right: 10px;
    margin-left: 10px;
}

.carrito:hover{
    width: 27px;
    height: 27px;
}
  
.me-gusta{
    display: block;
    width: 22px;
    height: 22px;
    background-image: url('../Imagenes/Iconos/1077035.png');
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 32px;
    cursor: pointer;
}

.me-gusta:hover{
    width: 25px;
    height: 25px;
}


.abrir-menu{
    display: none;
    margin-right: 6px;
}

.anuncio {
    background-color: #FDB813;
    height: auto;
    margin-top: 1vw;
    overflow: hidden; 
    white-space: nowrap; 
}

.anuncio p {
    position: relative;
    animation-name: mover-derecha-izquierda;
    animation-duration: 55s;
    animation-iteration-count: infinite;
    color: white;
    align-items: center;
    letter-spacing: 4px;
    font-size: 1.2vw;
}

@keyframes mover-derecha-izquierda {
    0% {
    transform: translateX(100%); 
    }

    100% {
        transform: translateX(-100%); 
    }
}

#seccion-zapatillas{
    height: auto;
}

.seccion1 {
    display: flex;
    justify-content: space-between;
}

.seccion1 img {
    width: 48%;
    cursor: pointer;
}

.seccion1 img:hover {
    filter: brightness(50%);

}

.zapatillas, .camisetas, .accesorios, .outlets {
    display: flex;
    cursor: pointer;
}

.zapatilla, .camiseta, .accesorio, .o{
    width: 16.6%;
    height: auto;
    margin: 8px;
    transition: 0.5s ease-in-out;
}

.zapatilla img, .camiseta img, .accesorio img, .o img{
    width: 97.5%;
    height: auto;
    margin: auto;
}



.zapatilla h1, .camiseta h1, .accesorio h1, .o h1{
    text-align: center;
    font-size: 3.5vw;
    letter-spacing: 2px;
    font-weight: bold;
    margin-top: -2px;
}

.zapatilla p, .camiseta p, .accesorio p, .o p{
    text-align: center;
    letter-spacing: 2px;
    margin-top: -2px;
    color: gray;
    font-size: 2.2vw;
}

.zapatilla:hover, .camiseta:hover, .accesorio:hover, .o:hover {
    box-shadow: 1px 1px 8px gainsboro;
}

.caricaturas{
    display: flex;
}

.caricaturas img{
    width: 19%;
    height: auto;
    margin: auto;
    cursor: pointer;
}

.caricaturas img:hover{
    filter: brightness(50%)
}

.newsletter{
    width: 100%;
    height: auto;
}

.newsletter p{
    text-align: center;
    font-size: 3vw;
    color: rgb(143, 143, 143);
    cursor: pointer;
}

.newsletter p:hover{
    color: gainsboro;
}

#abrir-ventana{
    display: block;
    width: 30%;
    margin: auto;
    border: 1px solid gainsboro;
    border-radius: 50px;
    cursor: pointer;
    font-size: 3vw;
    font-family: "BebasNeue";
    padding: 0.5vw;
    color: rgb(154, 153, 153);
}

.newsletter button:hover{
    background-color: rgb(196, 196, 196);
    
}

.newsletter #ventana-emergente {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
  }
  
.newsletter .contenido-ventana {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 50px;
    z-index: 2;
    text-align: center;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.68);
    
}

.contenido-ventana h2{
    font-size: 26px;
}
  
.newsletter .cerrar-ventana {
    position: absolute;
    top: 1px;
    right: 10px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.cerrar-ventana:hover{
    color: rgb(171, 170, 170);
}
  
.newsletter #correo-electronico {
    display: block;
    margin: 10px auto;
    padding: 7px;
    width: 200px;
    border: 1px solid gainsboro;
    border-radius: 20px;
    outline: none;
}

#correo-electronico::placeholder{
    font-family: "BebasNeue";
    text-align: center;
    font-size: 16px;
}
  
.newsletter #suscribirse {
    display: block;
    margin: auto;
    width: 40%;
    padding: 0.5vw;
    background-color: rgb(204, 204, 204);
    color: rgb(129, 129, 129);
    border: none;
    border-radius: 20px;
    font-size: 17px;
    cursor: pointer;
    font-family: "BebasNeue";
}

.newsletter {
    transition: all 0.1s ease-in-out;
  }
.newsletter button:hover {
    animation: vibrar 0.3s infinite linear;
  }
  @keyframes vibrar {
    0% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(4px);
    }
    50% {
      transform: translateX(-4px);
    }
    75% {
      transform: translateX(4px);
    }
    100% {
      transform: translateX(0);
    }
  }

  
#seccion-camisetas{
    height: auto;
}

#seccion-accesorios{
    height: auto;
}

#seccion-outlet{
    height: auto;
}

.cartel img {
    width: 100%;
    cursor: pointer;
}

.cartel img:hover{
    filter: brightness(50%);
}

.camisetas{
    display: flex;
}

.imagen-accesorios img{
    width: 100%;
    cursor: pointer;
}

.imagen-outlet img{
    width: 100%;
    cursor: pointer;
}

.imagen-outlet img:hover{
    filter: brightness(50%);
}

.imagen-accesorios:hover{
    filter: brightness(50%);

}

.footer {
    display: flex;
    flex-direction: column;
    border-top: 2px solid black;
    margin: 8px;
    align-items: center;
    height: auto;
    margin-bottom: 6vw;
}

.datos {
    display: flex;
    cursor: pointer;
}

.datos p {
    margin: 10px;
}


.datos p:hover {
    font-size: 15px;
}


.footer .redes img {
    width: 22px;
    height: 22px;
    margin: 4px;
    padding-top: 6px;

}


.footer h3{
    font-size: 14px;
    
}

#mensaje {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 0 0 100vmax rgb(0, 0, 0, .5);
    pointer-events: auto;

}


#si{
    margin-right: 10px;
}

#mensaje button{
    font-family: "BebasNeue";
    width: 30px;
    font-size: 20px;
    background-color: #FDB813;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;

}

#mensaje {
    transition: all 0.1s ease-in-out;
  }
#mensaje button:hover {
    animation: vibrar 0.3s infinite linear;
  }
  @keyframes vibrar {
    0% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(4px);
    }
    50% {
      transform: translateX(-4px);
    }
    75% {
      transform: translateX(4px);
    }
    100% {
      transform: translateX(0);
    }
  }

  .bloquear-interaccion {
    pointer-events: none;
  }

.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 35px;
    left: 20px;
    z-index: 9999;
    font-size: 18px;
    font-weight: bold;
    background-color: orange;
    color: #fff;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    text-decoration: none;
}

  .scroll-to-top:hover {
    background-color: #333;
}

.ocultar-scroll{
    display: none !important;
}

.mostrar-scroll{
    display: block;
}

#hashtag-pagina {
    pointer-events: none;
    position: fixed;
    text-align: right;
    width: 50%;
    margin: auto 0;
    right: 0;
    top: 50%;
    writing-mode: vertical-rl;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: lowercase;
    background: linear-gradient(#ff0000, #ff8000, #ffff00, #00ff00, #0000ff, #8000ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(-50%);
    z-index: 9999;
}

#info {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px;
    background-color: #333;
    color: #fff;
    font-size: 11px;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    z-index: 9999;
  }


@media screen and (max-width: 1090px) {
    .abrir-menu{
        display: block;
        cursor: pointer;
    }
    .nav{
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: gainsboro;
        z-index: 9999;
        padding: 8px;
        box-shadow: 0 0 0 100vmax rgb(0, 0, 0, .5);
        transition: 0.5s ease;
        
    }
    .nav.visible{
        transition: 0.5s ease-out;
        opacity: 1;
        visibility: visible;
    }
   .menu{
    flex-direction: column;
    margin: 10px;
   }
   .menu input{
    margin: auto;
    margin-top: 16px;
    margin-bottom: 16px;

   }
   .menu span{
    margin: auto;
    margin-top: 16px ;
   }
   #seccion-zapatillas{
    height: auto;
   }
   #seccion-camisetas{
    height: auto;
   }
   .cerrar{
    display: block;
   }

}

@media screen and (max-width: 950px) {
    .anuncio p {
        font-size: 11px;
        animation-name: mover-derecha-izquierda;
    }
    
    @keyframes mover-derecha-izquierda {
        0% {
        transform: translateX(100%); 
        }
    
        100% {
            transform: translateX(-115%); 
        }
    }
}

@media screen and (max-width: 700px){
    #hashtag-pagina{
        font-size: 20px;
    }
    #seccion-zapatillas{
        height: auto;
    }
    #seccion-camisetas{
        height: auto;
    }
    .anuncio p {
        animation-name: mover-derecha-izquierda;
    }
    @keyframes mover-derecha-izquierda {
        0% {
        transform: translateX(100%); 
        }
    
        100% {
            transform: translateX(-155%); 
        }
    }
    
    .menu{
    flex-direction: column;
    
   }
   .menu a{
       margin: 14px;
   }
   .menu input{
    margin: auto;
    margin-top: 16px;
    margin-bottom: 16px;

   }
   .menu span{
    margin: auto;
    margin-top: 16px ;
  
   }
    
    
}

@media screen and (max-width: 680px){
    body{
        border: 1px solid;
    }
    .anuncio p {
        animation-name: mover-derecha-izquierda;
    }
    @keyframes mover-derecha-izquierda {
        0% {
        transform: translateX(100%); 
        }
    
        100% {
            transform: translateX(-190%); 
        }
    }
    
    
    
}

@media screen and (max-width: 450px){
    
    .zapatilla, .camiseta, .accesorio, .o{
    overflow: hidden;
    }
    .footer{
        margin-bottom: 50px;
    }
}
   


    
