/*EFECTO SCROLL*/
html
{
    scroll-behavior: smooth;
}

/*EFECTO BODY*/
body
{
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    font-family: "Faculty Glyphic", sans-serif;
}

/*EFECTO MENÚ*/
.fijo
{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: black;
    padding: 15px 0;
    z-index: 100;
}

.logo
{
    margin-left: 30px;
}

.menu-link
{
    position: relative;
    top: -35px;

    margin-left: 50px;

    color: white;
    text-decoration: none;

    font-size: 30px;

    transition: 0.5s;
}

.menu-link:hover
{
    color: #6f0e19;
    font-size: 35px;
}

/*EFECTO CARRUSEL*/
.carrusel
{
    width: 100%;
    height: 700px;

    margin-top: 50px;

    overflow: hidden;
}

.carrusel ul
{
    display: flex;

    width: 400%;

    padding: 0;

    animation: slide 16s infinite alternate ease-in-out;
}

.carrusel li
{
    width: 100%;
    list-style: none;
}

.carrusel img
{
    width: 100%;
}

@keyframes slide
{
    0% { margin-left: 0%; }
    20% { margin-left: 0%; }

    25% { margin-left: -100%; }
    45% { margin-left: -100%; }

    50% { margin-left: -200%; }
    70% { margin-left: -200%; }

    75% { margin-left: -300%; }
    100% { margin-left: -300%; }
}

/*EFECTO SUBTITULOS*/
.Subtitulos
{
    color: white;

    font-size: 30px;
    font-weight: bold;

    text-align: center;

    margin-top: 50px;
    margin-bottom: 40px;
}

/*EFECTO POSTERS*/
.poster
{
    display: flex;
    justify-content: center;
    gap: 30px;

    text-align: center;
}

/*EFECTO CONTENEDOR*/
.contenedor
{
    width: 300px;

    color: white;
}

/*EFECTO TEXTO*/
.textonumeros
{
    position: relative;
    top: -15px;

    font-size: 16px;
    font-weight: 300;
}

/*EFECTO BOTÓN*/
.button
{
    width: 150px;

    padding: 10px 20px;

    border: none;
    border-radius: 50px;

    background-color: #6f0e19;

    color: white;

    font-size: 16px;
    font-weight: 600;

    transition: 0.5s;
}

.button:hover
{
    background-color: #57181E;
}


/*EFECTO POSTER*/
.poster img
{
    transition: 0.5s;
}

.poster img:hover
{
    filter: blur(10px);
}

/*EFECTOS PÁGINA LEYENDA*/

/*TÍTULO PELÍCULA*/
.titulo-pelicula
{
    text-align: center;

    color: white;

    font-size: 45px;

    font-weight: bold;

    margin-top: 130px;
    margin-bottom: 15px;
}

/*LEYENDA*/
.leyenda-container
{
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 50px;

    margin-top: 30px;

    margin-bottom: 30px;
}

/*POSTER LEYENDA*/
.leyenda-poster img
{
    width: 300px;
    height: 450px;

    border-radius: 10px;

    transition: 0.5s;
}

/* EFECTO BLANCO Y NEGRO */
.leyenda-poster img:hover
{
    filter: grayscale(100%);
}

/*TRAILER*/
.leyenda-trailer iframe
{
    border-radius: 10px;
}

/*SINOPSIS*/
.leyenda-sinopsis
{
    width: 80%;

    margin: auto;
    margin-top: 30px;

    color: white;

    text-align: justify;
}

.leyenda-sinopsis h3
{
    text-align: center;

    font-size: 35px;

    margin-bottom: 10px;
}


/*GALERÍA*/
.galeria-peliculas
{
    margin-top: 50px;
}

/* FILAS*/
.fila-galeria
{
    display: flex;

    justify-content: center;

    gap: 40px;

    margin-bottom: 50px;
}

/*IMAGEN GALERÍA*/
.imagen-galeria
{
    text-align: center;
}

/* EFECTO */
.imagen-galeria img
{
    transition: 0.5s;
}

.imagen-galeria img:hover
{
    transform: scale(1.05);
}

/*TEXTO*/
.texto-galeria
{
    margin-top: 15px;

    color: white;

    font-size: 18px;
}