
/* FUENTES */

@font-face {
    font-family: HattonB;
    src: url(../fonts/PPHatton-Bold.otf)
}

@font-face {
    font-family: HattonM;
    src: url(../fonts/PPHatton-Medium.otf)
}

@font-face {
    font-family: neuebook;
    src: url(../fonts/PPNeueMontreal-Book.otf)
}

@font-face {
    font-family: neuelight;
    src: url(../fonts/PPNeueMontreal-Thin.otf)
}

@font-face {
    font-family: neuemid;
    src: url(../fonts/PPNeueMontreal-Medium.otf)
}

/* NO SELECCION DE TEXTO */

.no-seleccionable {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

html {
    scroll-behavior: smooth;
}

body {
    background-size: cover;
    background-position: center;
    font-family: neuebook;
}

















.home {
    position: fixed;
    width: 100vw;
    height: 125px;
    background-color: white;
    z-index: 3;
}

.nav {
    display: flex;
    justify-content: space-between;
}


.title {
    font-family: HattonB;
    font-size: 48px;
    margin-top: 43px;
    margin-left: 24px;
    cursor: pointer;
}




























/* CONTENIDO DE LA SECCIÓN */


.volviendoi {
    margin-left: 20px;
    margin-top: 110px;
}





.contenidodetalle {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 40px;


    margin: 0px 350px;
    margin-top: 50px;
    margin-bottom: 50px;

}


.imgdet1 {
    opacity: 0;
    scale: 0.7;

    animation-name: aparece;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}


@keyframes aparece {
    0% {
      opacity: 0; 
      scale: 0.7;
    }
    100% {
      opacity: 1;
      scale: 1;
    }
    }



.detalletext {
    display: flex;
    flex-direction: column;
    
}





.detalletitu {
    
    font-size: 30px;
    font-family: neuemid;

    margin-bottom: 10px;
}


.sinopsis {
    font-size: 14px;
}




.detalleinter {
    cursor: pointer;
    width: 150px;
    height: 40px;
    margin-top: 20px;

    border-radius: 20px;
    background-color: black;
    color: white;

    font-family: neuebook;
    font-size: 16px;
}


.btnSin {
    cursor: pointer;
    height: 40px;
    width: 110px;
    border: 3px solid black;
    border-radius: 50px;
    margin-top: 20px;

    font-size: 16px;
}


.mensajePendiente {
    font-size: 14px;
    padding-top: 10px;
    color: transparent;
}













































/* RESPONSIVE */

@media (max-width: 1300px) 
{

    .title {
        font-size: 40px;
        margin-top: 60px;
    }

    .contenidodetalle {
        flex-direction: column;
        column-gap: 30px;
    
        margin: 0px 200px;
        
        text-align: center;

        margin-top: 30px;
        margin-bottom: 50px;
    
    }




    .imgdet1 {
        height: 500px;
    }


    .detalletext {
        align-items: center;
    }

    .detalletitu {
    
        font-size: 30px;
        font-family: neuemid;
    
        margin-top: 50px;
        margin-bottom: 10px;
    }

    

}





@media screen and (min-width: 501px) and (max-width:780px) 

{

    .contenidodetalle {
        flex-direction: column;
        column-gap: 30px;
    
        margin: 0px 150px;
        
        text-align: center;

        margin-top: 30px;
        margin-bottom: 50px;
    
    }


    .imgdet1 {
        height: 500px;
    }


    .detalletitu {
    
        font-size: 30px;
        font-family: neuemid;
    
        margin-top: 50px;
        margin-bottom: 10px;
    }


}






@media (max-width: 500px) 
{

    .contenidodetalle {
    
        margin: 50px 40px;

        
    
    }

    .imgdet1 {
        height: 300px;
    }

}

