/*RESET -> hacemos esto para tener control absoluto en la web y no usar el por defecto*/

*{
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    
}
/*HEADER*/
header{
    height: 100px; /*altura*/
    background-color:rgb(174, 164, 164);
    padding: 0 50px; /*centrar */
    color: white;
    display: flex; /*para ordenar el contenedor, ponerlo uno al lado de otro*/
    justify-content: space-between; /*para separarlos*/
    align-items: center; /*para centrar*/
}

.logo{ /*logo venom*/
    text-transform: uppercase;
    color: rgb(99, 5, 5);
    font-weight: 200;
    font-size: 70px;
    font-family: 'VENOM', sans-serif;
}


.menu a{/*enlaces*/
    color: white;
    text-transform: uppercase;
    text-decoration: none;/*quitar el subrayado*/
    padding: 0 10px;
    transition: 0.4s;/*tiempo de animación*/
}
.mostrar-menu,.esconder-menu{/*simbolo hamburguesa y X*/
    font-size: 30px;
    cursor: pointer;
    display: none;/*ahi no se tiene que ver, se debe ver en version responsive*/
    transition: 0.4s;
}
.mostrar-menu{
    order: 1;/*para que la hamburguesa salga al final y no al principio*/
}
.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover{
    color:rgb(99, 5, 5);/*cuando pasamos por encima cambia de color*/
}
#check{
    display: none; /*eliminar casilla check*/
}
/*BANNER*/
#banner{
    padding: 0 50px;
    background-image: url(/IMG/fondo.png);
    height: 45vh;
    background-size: cover;
    background-position: center;
}
#banner::before{
    content: '';
    background: rgba(77,77,92,0.6);
    position: absolute;
    width: 100%;
    height: 45vh;
    left: 0;
}
.contenido-banner{
    position: relative;
    color: white;
    height: 100%;
    display: flex;
    flex-direction:column;
    justify-content:center;
}
.contenido-banner h3{
    font-size: 30px;
    font-weight: 400;
    padding: 10px 0px;
}
.contenido-banner h3 span{
    font-weight: 600;
    color:rgb(86, 11, 11);
}

.boton-entrar{
    text-decoration: none;
    color: white;
    border: 3px solid rgb(99, 5, 5);
    padding: 20px 40px;
    align-self: baseline; 
    transition: all 0.4s;
}
.boton-entrar:hover{
    background: rgb(99, 5, 5);
}
/*GALERIA*/


#galeria {
    background-color:rgb(174, 164, 164);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  #galeria div {
    width: calc(20% - 20px);
    margin: 10px;
  }
  
  #galeria img {
    width: 100%;
    height: auto;
  }
  #galeria div:hover {
    transform: scale(1.1);
    transition: all 0.5s;
    box-shadow: 10px 10px 5px rgba(0,0,0,0.3);
    cursor: pointer;
  }
#galeria img:hover {
    border: 2px solid rgb(5, 5, 5);
}
/*SINOPSIS*/

.descripcion h3{
    color: rgb(99, 5, 5);
    font-size: 35px;
    text-align: center;
    margin: 50px 0px 20px 0px;
}
.descripcion h4{
    text-align: center;
    font-size: 25px;
    padding: 0px 75px;
    display: flex;
    flex-direction:column;
}
/* PERSONAS*/


#personas{
    background-color: white;
    padding: 50px 50px;
    display: flex;
    justify-content: center;
    text-align: center;
}
#personas img{
    border-radius: 100%;    
}
#personas div{
    padding: 30px 30px;
}
#personas div h4{
    color: #1c1c20;
    font-size: 20px;
    margin: 30px 0px;
}
#personas div p{
    color: #25252787;
    font-size: 18px;
}
.boton-saber-mas{
    background-color: #fbfbfd87;
    display: inline-block;
    text-decoration: none;
    color: rgb(99, 5, 5);
    padding: 10px 30px;
    border: 3px solid rgb(99, 5, 5);
    border-radius: 30px;
    margin-top: 15px;
    transition: all 0.4s;
}
.boton-saber-mas:hover{
    background-color:rgb(99, 5, 5);
    color: white;
} 
.riz{
    transition: transform 0.3s;
    width: 242px;
}
.riz:hover{
    transform: scale(1.2);
}
.tom{
    transition: transform 0.3s;
    width: 250px;
}
.tom:hover{
    transform: scale(1.2);
}
.michelle{
    transition: transform 0.3s;
    width: 260px;
}
.michelle:hover{
    transform: scale(1.2);
}
/*ICONOS*/
#iconos{
    padding: 0px 50px;
    background-color: rgb(174, 164, 164);
}
.contenido-iconos{
    padding: 50px 50px 0px 50px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.contenido-iconos div{
    flex: 1;
    margin: 20px 0px;
    border-right: 2px solid rgba(77,77,92,0.6)
}

#available{
    border: none;
}
.contenido-iconos div i{
    color:rgb(99, 5, 5); 
}
.contenido-iconos div h6{
    color: white;
    font-size: 20px;
    font-weight: 100;
    margin: 10px 0px;;
}
.fa-mobile-screen-button {
    font-size: 36px;
  }
.fa-youtube{
    font-size: 36px;
}
.fa-vr-cardboard{
    font-size: 36px;
}
.boton-iconos{
    text-align: center;
    padding-bottom: 50px;
}
/*FOOTER*/
footer{
    background-color: #252527;
    color: #f7f7f9;
    text-align: center;
    padding: 10px 0px;
}
/*RESPONSIVE*/
@media(max-width:768px){
    /*HEADER*/
    .mostrar-menu,
    .esconder-menu{
        display: block;/*mostrar en bloque*/
    }
    .menu{
        position: fixed;
        width: 100%;/*para que ocupe todo*/
        height: 100vh;/*ocupe 100% desde cualquier dispositivo*/
        background-color: rgb(174, 164, 164);
        right: -100%;/*para que aparezca desde la derecha*/
        top: 0;
        text-align: center;
        padding: 100px 0px;
        z-index: 100;/*para que se vea delante de todo*/
        transition: 0.8s;
    }
    .menu a{
        display: block; /*mostrar uno encima de otro*/
        padding: 20px;
    }
    .esconder-menu{ /*para mover la X arriba a la derecha*/
        position: absolute;
        top: 40px;
        right: 40px;
    }
    #check:checked ~ .menu{/*para que cuando cliquemos, aparezca*/
        right: 0;
    }
    .contenido-banner h3 span{
        
        font-weight: 600;
        color:rgb(99, 5, 5);
        left:0;
    }
    .contenido-banner h3{
        margin-left: 0; /* Elimina el margen izquierdo en pantallas pequeñas */
        text-align: center; /* Centra el texto en pantallas pequeñas */
          
    }
    .boton-entrar {
        margin-left: 0; /* Elimina el margen izquierdo en pantallas pequeñas */
        margin-top: 10px; /* Ajusta la posición del botón en pantallas pequeñas */
        display: block; /* Hace que el botón se muestre como bloque en pantallas pequeñas */
        text-align: center; /* Centra el texto en pantallas pequeñas */
      }
    /*GALERIA*/
    @media screen and (max-width: 1024px) {
        #galeria div {
          width: calc(33.33% - 20px);
        }
      }
      
      @media screen and (max-width: 768px) {
        #galeria div {
          width: calc(50% - 20px);
        }
      }
      
      @media screen and (max-width: 480px) {
        #galeria div {
          width: 100%;
          margin: 0;
        }
      }
     /*SINOPSIS*/
     .descripcion h3{
        text-align: center;
    }
    .descripcion h4{
        text-align: center;
        font-size: 15px;
    }
     
    /*PERSONAS*/
    #personas{
        flex-direction:column;
    }
    .tom,.michelle,.riz{
        width: 100%;
    }
    #personas div h4{
        width: 100%;
    }
    #personas div p{
        width: 100%;
    }

    /*ICONOS*/
    .contenido-iconos{
        flex-direction: column;
    }
    .contenido-iconos div{
        border: none;
    }
}
    
