/* ------------------------- */
/* Estilos Generales */
/* ------------------------- */

* {
    box-sizing: border-box;
    margin: 0; 
    padding: 0;
}

body { 
    font-family: 'Lato', sans-serif;
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    margin-bottom: 0;
}

.texto-naranja {
    font-weight: 300;
    color: rgb(24,56,89);
}

.texto-blanco {
    font-weight: 500;
    color: #fff;
}

.texto-negro {
	color: rgb(51,62,72);
}

/*

Clases de fullpage.js

*/

#fp-nav ul li a span{
    background: rgb(24,56,89);
}

#fp-nav ul li .fp-tooltip{
    color: rgb(24,56,89);
}

/*

Menú de navegación

*/

.nav{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 70;
    width: 100%;
    margin: 0;
    padding: 10px 20px;
    background-color: rgba(0,0,0,0.5);
}

.nav li,
.nav a{
    display: inline-block;
    margin: 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    color: white;
    transition: .5s ease;
}

.nav li.active{
    border-bottom: 2px solid rgb(24,56,89);
}

.menu li a{
    transition: .5s ease;
    margin: 0;
    padding: 0;
}

.menu li.active a,
.menu li:hover a{
    color: rgb(24,56,89);
}

/*

Header

*/

.header{
    background: url('../img/inicio.jpg');
    background-position: center;
    background-size: cover;
}

.header .contenedor-titulo{
    text-align: center;
    position: relative;
    z-index: 99;
    width: 50%;
    left: 25%;
    background-color: rgb(0,0,0,0.1);
}

.header .titulo{
    font-size: 70px;
    text-transform: uppercase;
}

.header .contenedor-icono{
    position: absolute;
    z-index: 99;
    bottom: 3%;
    left: 50%;
    font-size: 40px;
    animation: bajar-subir 1s ease infinite;
}

.bg-video{
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: 100%;
    background: #000;
    background-position: center;
    background-size: contain;
    object-fit: cover;
}

/*

Animaciones

*/

@keyframes bajar-subir{
    0% { transform: translateY(20px); }
    25% { transform: translateY(0px); }
    100% { transform: translateY(20px); }
}

/*

Objetivos

*/

.objetivos{
    background: url('../img/objetivos.jpg');
    background-position: center;
    background-size: cover;
}

/*

Acerca de

*/

.acercade{
    background: url('../img/quienes_somos.png');
    background-position: center;
    background-size: cover;
}

.acercade .contenedor-titulo{
    text-align: center;
    position: relative;
    z-index: 99;
    width: 50%;
    left: 25%;
    background-color: rgb(0,0,0,0.1);
}

.acercade .titulo{
    font-size: 70px;
    text-transform: uppercase;
}

/*

Servicios

*/

.servicios{
    background: url('../img/solucion.jpg');
    background-position: center;
    background-size: cover;
}

.servicios .contenedor-titulo{
    text-align: center;
    position: relative;
    z-index: 99;
    width: 50%;
    left: 25%;
    background-color: rgba(0,0,0,0.2);
}

.servicios .titulo{
    font-size: 70px;
    text-transform: uppercase;
}

/*

Clases de fullpage.js flchas de slide

*/

.fp-controlArrow.fp-next,
.fp-controlArrow.fp-prev{
    top: 95%;
}

.fp-controlArrow.fp-prev{
    left: 80%;
    border-width: 20px 20px 20px 0;
    border-color: transparent #000 transparent transparent;
}

.fp-controlArrow.fp-next{
    right: 50px;
    border-width: 20px 0 20px 20px;
    border-color: transparent transparent transparent #000;
}

/*

Footer

*/

.footer{
    background: url('../img/redes_sociales.jpg');
    background-position: center;
    background-size: cover;
}

.footer .texto-naranja{
    text-transform: uppercase;
    font-size: 60px;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.footer h2{
    opacity: 0;
    font-family: 'Oswald', sans-serif;
    transition: .3s ease all;
}

.footer .redes-sociales{
    display: flex;
    justify-content: center;
    margin: 0;
    font-size: 50px;
}

.footer .redes-sociales a{
    display: flex;
    width: 100px;
    height: 100px;
    background: #fff;
    color: #30313a;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    margin: 0 20px;
}

.footer .facebook i{
    color: #3b5998;
}

.footer .instagram i{
    color: #c13584;
}

.footer .youtube i{
    color: red;
}

.footer .facebook:hover{
    background: #3b5998;
    transition: .5s ease;
}

.footer .instagram:hover{
    background: #c13584;
    transition: .5s ease;
}

.footer .youtube:hover{
    background: red;
    transition: .5s ease;
}

.footer .facebook:hover i{
    color: #fff;
    transition: .5s ease;
}

.footer .instagram:hover i{
    color: #fff;
    transition: .5s ease;
}

.footer .youtube:hover i{
    color: #fff;
    transition: .5s ease;
}

/*

Mediaqueries

*/

@media screen and (max-width: 768px){
    .menu li a,
    .menu li.active a{
        font-size: 18px;
    }
    
    .producto{
        font-size: 40px;
    }
    
    .precio{
        font-size: 23px;
    }
    
    .footer h2{
        font-size: 15px;
    }
    
    .footer .redes-sociales{
        font-size: 30px;
    }
    
    .footer .redes-sociales a{
        width: 70px;
        height: 70px;
    }
    
    .footer .texto-naranja{
        font-size: 40px;
    }
}

@media screen and (max-width: 576px){
    .header .titulo{
        font-size: 60px;
    }
    
    .informacion-producto{
        position:absolute;
        top: 70%;
    }
    
    .fp-controlArrow.fp-next{
        left: 100px;
    }
    
    .fp-controlArrow.fp-prev{
        left: 25px;
    }
}

@media screen and (max-width: 450px){
    .nav{
        display: block;
        text-align: center;
    }
    
    .nav a{
        font-size: 16px;
        margin-bottom: 0;
    }
    
    .menu{
        display: flex;
        justify-content: space-between;
    }
    
    .menu li a,
    .menu li.active a{
        font-size: 15px;
        padding: 5px;
    }
    
    .titulos{
        font-size: 45px;
    }
    
    .productos .modelo{
        font-size: 30px;
    }
    
    .footer .texto-naranja{
        font-size: 18px;
    }
    
    .footer .redes-sociales a{
        width: 50px;
        height: 50px;
    }
    
    .footer .redes-sociales i{
        font-size: 24px;
    }
}