/* Para usar variables en css */
:root{
    --color1: rgb(252, 149, 105);
    --background: rgba(244, 244, 244);
    --borde: rgb(12, 113, 195);
    --before-nosotros: rgb(78, 94, 208);
    --fondo: #f2f2f2;
    --titulos: 25px;
    --margenes: 60px;
    --espacios: 25px;
    --espacios-contenido: 30px;
    --iconos: 50px;
}
/* ============== INI GENERALES =============== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Open sans';
}

img{
    vertical-align: top;
}

.servicios-texto ul{
    padding: 0px;
    list-style: none;
}
/* ============== FIN GENERALES =============== */
/* =========== INI LOADER ============== */
.hidden{
    overflow: hidden;
}

.centrado{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
  
.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 6px;
    width: 13px;
    background: #cef;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
  
.lds-facebook div:nth-child(1) {
    left: 6px;
    animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
    left: 26px;
    animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
    left: 45px;
    animation-delay: 0;
}

@keyframes lds-facebook {
    0% {
        top: 6px;
        height: 51px;
    }

    50%,
    100% {
        top: 19px;
        height: 26px;
    }
}
/* =========== FIN LOADER ============== */ 
/* =============== INI HEADER ===================== */
/* inicio Con esto se puede poner una imagen debajo de un gradiente en el fondo */
header{
    width: 100%;
    height: 80px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

nav{
    width: 100%;
    position: fixed;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    z-index:1
}

.nav1{
    background: #fff;
    height: 80px;
    color: #333;
}

.nav2{
    background: var(--fondo);
    height: 60px;
    color: #333;
}

.contenedor-nav{
    display: flex;
    margin: auto;
    width: 90%;
    justify-content: space-between;
    align-items: center;
    max-width:1000px;
    height:inherit;
    overflow: hidden;
}  
 
nav .enlaces a{
    display: inline-block;
    padding: 5px 0;
    margin-right: 17px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    color: inherit;
}

nav .enlaces a:hover{
    border-bottom: 3px solid var(--borde);
    transition: 1s;
}

.logo img{
    height: 50px;
}

.icono{
    display: none;
    font-size: 24px;
    padding: 23.5px 20px;
}
/* ========== FIN HEADER =========== */
/* =============== INI MAIN ============ */
.contenedor{
    margin: auto;
    padding: var(--margenes) 0;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    overflow: hidden;
}
/* ========== INICIO =========== */
/* ========== INI PRINCIPAL =========== */
.textos{
    width: 100%;
    height: 600px;
    background: linear-gradient(to bottom, 
    rgba(4, 7, 71, 0.93),
    rgba(73, 108, 220, 0.7),
    rgba(255, 255, 255, 0.356)
    ), url(../img/fondo.jpeg);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.textos>h1{
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 700;
}

.textos>h2{
    font-size: 22px;
    font-weight: 300;
    width: 40%;
    font-weight: 500;
    margin-bottom: 40px;
}

.btn-contenedor{
    width: 350px;
    display: flex;
    justify-content: space-between;
}

.btn-contenedor a{
    display: inline-block;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    margin: 50px 15px 0 15px;
    border: 2px solid var(--borde);
    background-color: var(--color1);
    width: 140px;
    border-radius: 25px;
    text-align: center;
    padding: 5px 5px;
    transition: 0.7s;
}

.btn-contenedor a:hover{
    background-color: #fff;
    color: var(--borde);
}
/* ========== FIN PRINCIPAL =========== */
/* =============== INI FODA ============ */
.container-foda{
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
}

.content-foda{
    display: flex;
    flex-direction: column;
    width: 20%;
    align-items: center;
    margin: 0 20px;
    text-align: center;
}

.content-foda i{
    color: var(--color1);
    font-size: var(--iconos);
    margin-bottom: var(--espacios);
    
}

.content-foda h4{
    margin-bottom: var(--espacios);
    color: #555;
    font-size: var(--titulos);
}

.content-foda p{
    font-size: 17px;
    line-height: 1.7;
}
/* =============== FIN FODA ============ */
/* =============== INI NOSOTROS ============ */
.nosotros-content{
    display: flex;
    align-items: center;
    background-color: var(--background);
    height: 714px;
}

.nosotros{
    width: 50%;
}

.img-nosotros img{
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 714px;
}

.texto-nosotros{
    display: flex;
    flex-direction: column;
    color: #555;
}

.text-parrafo{
   padding: 145px 109px;
}

.text-parrafo h1{
    font-size: 36px;
    margin-bottom: 20px;
    width: 70%;
}

.text-parrafo p{
    line-height: 1.7;
    font-size: 16px;
    width: 70%;
}

.btn-contenedor{
    justify-content: center;
    margin-top: -20px;
    width: 70%;
}

.before-nosotros::before{
    content: '';
    display: block;
    margin-top: calc(var(--espacios+15px));
    width: 100px;
    height: 3px;
    background: var(--before-nosotros);
    margin-bottom: var(--espacios-contenido);
}
/* =============== FIN NOSOTROS ============ */
/* =============== INI EMPLEOS ============ */
.empleos-content{
    background: linear-gradient(to bottom, 
    rgba(4, 7, 71, 0.93),
    rgba(4, 7, 71, 0.93),
    rgba(79, 108, 205, 0.904)
    );
    width: 100%;
    height: auto;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empleos-content h1{
    width: 40%;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.before-empleos::before{
    content: '';
    display: block;
    margin: auto;
    margin-top: var(--espacios);
    width: 100px;
    height: 3px;
    background: #fff;
    margin-bottom: var(--espacios-contenido);
}

.empleos-content .formulario-empleos{
    width: 40%;
}

.form{
    margin-bottom: 20px;
}

#txtComentarios{
    max-width: 100%;
    min-width: 100%;
    max-height: 150px;
    min-height: 150px;
}

.botton-enviar{
    text-align: end;
}

.btn-enviar{
    padding: 5px 15px;
    background-color: var(--color1);
    color: #fff;
    border: 2px solid var(--borde);
    border-radius: 25px;
    font-weight: 500;
}
/* =============== FIN EMPLEOS ============ */
/* =============== INI CONTACTO ============ */
.fondo-contacto{
    width: 100%;
    padding: 30px 0;
    background: url(../img/business-01.jpg);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.contenedor-contacto{
    margin: auto;
    padding: var(--margenes) 0;
    width: 90%;
    max-width: 1080px;
    text-align: center;
    overflow: hidden;
}

.contenido-contacto{
    display: flex;
}

.informacion{
    width: 46%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: #fff;
    margin-right: 32px;
}

.informacion h3{
    font-size: 22px;
    color: #1f1f1f;
    padding-bottom: 15px;
}

.informacion p{
    font-size: 16px;
    text-align: left;
    color: #666;
    padding-bottom: 15px;
}

.info-contacto{
    display: flex;
}

.info-contacto i{
    font-size: 28px;
    width: 30px;
    color: var(--color1);
    margin-right: 15px;
}

.info-contacto a{
    text-decoration: none;
    font-size: 16px;
    color: var(--before-nosotros);
    padding-bottom: 25px;
}

.contenedor-redes{
    display: flex;
    margin: auto;
}

.redes{
    width: 35px;
    height: 35px;
    background-color: #ccc;
    margin: 0 15px 8px 0;
    border-radius: 100px;
    padding: 5px 0;
}

.redes a i{
    color: #fff;
    font-size: 20px;
}

.formulario-contacto{
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.formulario-contacto h3{
    font-size: 22px;
    color: #333;
    padding: 0 0 15px 0;
    text-align: left;
}

#txtMensaje{
    max-width: 100%;
    min-width: 100%;
    max-height: 150px;
    min-height: 150px;
}
/* =============== FIN CONTACTO ============ */
/* ================= FIN INICIO =============== */
/* ================= INI SERVICIOS =============== */
/* ================= INI PRINCIPAL =============== */
.textos.servicios{
    height: 350px;
    background: linear-gradient(to bottom, 
    rgba(4, 7, 71, 0.93),
    rgba(73, 108, 220, 0.7),
    rgba(225, 225, 225, 0.356)
    ), url(../img/fondo_servicios.jpg);
    background-size: cover; /* Añade esta línea */
    background-position: center; background-size: cover; 
    background-position: center; 
}

.textos.servicios>h1{
    margin: 10px;
}

.textos.servicios>h2{
    margin-top: 15px;
    width: 40%;
    font-weight: 500;
}
/* ================= FIN PRINCIPAL =============== */
/* ================= INI NUESTROS SERVICIOS =============== */
.nuestros-servicios{
    width: 90%;
    max-width: 1200px;
    margin: 120px auto;
}

.servicios-texto{
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: auto;
    margin-bottom: 120px;
}

.servicios-texto>h2{
    color: #1f1f1f;
    text-align: center;
    margin-bottom: 40px;
}

.servicios-texto>p{
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    text-justify: auto;
    padding-bottom: 16px;
    word-spacing: 5px;
}

.servicios-texto ul li{
    color: #666;
}

.opciones-servicios{
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
}

.opciones-servicios .servicio{
    display: flex;
    flex-direction: column;
    width: 25%;
    align-items: center;
    margin: 0 20px;
    text-align: center;
}

.opciones-servicios .servicio i{
    font-size: 60px;
    margin-bottom: 35px;
    color: var(--color1);
}

.opciones-servicios .servicio p{
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
}

.opciones-servicios .servicio a{
    padding: 5px;
    border: solid 2px #0c71c3;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 25px;
    color: #0c71c3;
}
/* ================= FIN NUESTROS SERVICIOS =============== */
/* ============== INI NUESTRO EQUIPO ================ */
.nuestro-equipo{
    width: 100%;
    background-color: var(--background);
    padding-bottom: 35px;
}

.equipo-texto>h2{
    margin-bottom: 50px;
    color: #1f1f1f;
}

.before-equipo::before{
    content: '';
    display: block;
    margin: auto;
    margin-top: var(--espacios);
    width: 100px;
    height: 3px;
    background: var(--before-nosotros);
    margin-bottom: var(--espacios-contenido);
}

.equipo-texto>p{
    font-size: 16px;
    color: #666;
    width: 60%;
    margin: auto;
    word-spacing: 5px;
    line-height: 1.5;
    margin-bottom: 50px;
}

.equipo-content{
    display: flex;
    justify-content: space-around;
}

.equipo-avatar{
    width: 30%;
}

.avatar-img img{
    width: 100%;
    height: 100%;
}

.info-equipo>h4{
    color: #1f1f1f;
    font-size: 22px;
}

.info-equipo>p{
    color: #aaa;
    font-size: 16px;
}

.equipo-redes a i{
    text-decoration: none;
    color: #aaa;
    font-size: 16px;
    margin: 0px 10px;
}
/* ============== FIN NUESTRO EQUIPO ================ */
/* ================= FIN SERVICIOS =============== */
/* ================= INI CLIENTES =============== */
/* ================= INI PRINCIPAL =============== */
.textos.clientes{
    height: 350px;
    background: linear-gradient(to bottom, 
    rgba(4, 7, 71, 0.93),
    rgba(73, 108, 220, 0.7),
    rgba(225, 225, 225, 0.356)
    ), url(../img/fondo_clientes.jpg);
    background-size: cover;
    background-size: cover; 
}
/* ================= FIN PRINCIPAL =============== */
/* ================= FIN NUESTROS CLIENTES =============== */
.texto-clientes{
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: auto;
    margin-bottom: 120px;
}

.texto-clientes>h1{
    font-size: 36px;
    color: #1f1f1f;
    margin: 40px 0;
}

.texto-clientes>p{
    font-size: 16px;
    color: #666;
    width: 90%;
    line-height: 1.7;
}

.content-clientes{
    display: flex;
    flex-direction: column;
}

.row-clientes{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.img-cliente{
    width: 22%;
    padding: 45px 0 27px 0;
}

.img-cliente img{
    width: 100%;
}

.content-otros{
    display: flex;
    padding: 50px 0 120px 0;
    justify-content: space-around;
}

.titulos-otros{
    width: 43%;
}

.titulos-otros h1{
    font-size: 30px;
    color: #333;
    font-weight: 400;
    padding-bottom: 30px;
}

.parte-clientes img{
    width: 100%;
    padding: 40px 0;
}

.otros-clientes p{
    text-align: start;
    color: #666;
}
/* ================= FIN NUESTROS CLIENTES =============== */
/* ================= FIN CLIENTES =============== */
/* ================= INI ALIANZAS =============== */
/* ================= INI PRINCIPAL =============== */
.textos.alianzas{
    height: 350px;
    background: linear-gradient(to bottom, 
    rgba(4, 7, 71, 0.93),
    rgba(73, 108, 220, 0.7),
    rgba(225, 225, 225, 0.356)
    ), url(../img/fondo_alianzas.jpg);
    background-size: cover;
    background-size: cover; 
}

.alianzas h2{
    width: 39%;
}
/* ================= FIN PRINCIPAL =============== */
/* ================= INI CONTENIDO =============== */
.content-alianzas{
    display: flex;
    flex-direction: column;
    width: 55%;
    margin: auto;
}

.texto-alianzas, .slider-alianzas{
    padding: 45px 0 27px 0;

}

.texto-alianzas p{
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    /* word-spacing: 4px; */
}

.slider-alianzas{
    padding-bottom: 250px;
    z-index:0
}
/* ================= FIN CONTENIDO =============== */
/* ================= FIN ALIANZAS =============== */
/* ================= INI CONTACTO =============== */
/* ================= INI PRINCIPAL =============== */
.textos.contacto{
    height: 350px;
    background: linear-gradient(to bottom, 
    rgba(4, 7, 71, 0.93),
    rgba(73, 108, 220, 0.7),
    rgba(225, 225, 225, 0.356)
    ), url(../img/business-01.jpg);
    background-size: cover;
    background-size: cover; 
}
/* ================= FIN PRINCIPAL =============== */
/* ================= INI CONTENIDO =============== */
.contacto-container{
    display: flex;
    flex-direction: column;
    padding: 80px 0;
}

.texto-contacto{
    padding: 0 0 100px 0;
}

.texto-contacto h1{
    font-size: 36px;
    color: #1f1f1f;
}

.options-contacto{
    display: flex;
    justify-content: space-around;
}

.tipo-contacto{
    width: 20%;
}

.tipo-contacto i{
    color: var(--color1);
    font-size: 60px;
    padding-bottom: 40px;
}

.tipo-contacto h4{
    color: #1f1f1f;
    font-size: 22px;
    padding-bottom: 20px;
}

.tipo-contacto p{
    font-size: 16px;
    color: #666;
}

.tipo-contacto a{
    font-size: 16px;
    color: var(--before-nosotros);
    text-decoration: none;
}

.contenedor-mapa{
    width: 100%;
    height: 500px;
}

.contenedor-mapa iframe{
    width: 100%;
    height: 100%;
}
/* ================= FIN CONTENIDO =============== */
/* ================= FIN CONTACTO =============== */
/* ================= INI SESION =============== */
.formulario-sesion{
    display: flex;
    height: 100%;
    padding: 10.8% 0;
    flex-direction: column;
}

.formulario-sesion h1{
    font-size: 30px;
    color: #333;
    margin-bottom: 40px;
    padding-bottom: 10px;
    text-align: left;
}

.formulario-controles form{
    display: flex;
    flex-direction: column;
}

.formulario-controles form label{
    font-size: 16px;
    padding-bottom: 8px;
    color: #555;
    text-align: left;
}

.formulario-controles form input{
    margin-bottom: 35px;
}

.formulario-controles form button{
    margin-bottom: 35px;
    width: 20%;
    padding: 15px 20px;
    border-radius: 5px;
    background-color: #3ba1da;
    color: #fff;
    border: 1px transparent;
}

.formulario-controles form a{
    text-decoration: none;
    font-size: 16px;
    color: #888;
}
/* ================= FIN SESION =============== */
/* ================= FIN MAIN =============== */
/* =============== INI FOOTER ============ */
footer{
    height: 55px; 
    background-color: #202020;
    padding: 10px 0;
}

.footer-content{
    display: flex;
    justify-content: space-around;
    align-content: center;
    align-items: center;
}

.footer-content .aviso{
    font-size: 14px;
}

.footer-redes{
    display: flex;
}

.social i {
    font-size: 30px;
    margin-right: 20px;
}

.social a i {
    color: #777;
    transition: color 1.5s ease;
}

.social a i:hover{
   color: var(--before-nosotros);
}


.footer-content .aviso{
    color: #777;
}

.aviso strong a{
    text-decoration: none;
    color: #777;
}
/* =============== FIN FOOTER ============ */
/* ============== INI RESPONSIVO ================ */
@media screen and (max-width: 1300px){
    .text-parrafo{
        padding: 104px 78px;
    }

    .text-parrafo p{
        width: 80%;
    }

     .opciones-servicios .servicio{
        width: 20%;
    }

    .content-alianzas{
        width: 60%;
    }
}

@media screen and (max-width: 1000px){
    .nav2{
        color: #333;
    }

    .icono{
        display: block;
        cursor: pointer;
    }

    .icono span{
        color: #333;
    }

    .enlaces{
        position: fixed;
        top: 80px;
        background: #fff;
        left: 0;
        height: 100%;
        transition: 1s;
        width: 0;
        overflow: hidden;
    }

    .enlaces a{
        display: block;
        width: 100%;
        height: 50px;
        padding: 20px;
        text-align: center;
        background: #fff;
        color: #333;
    }

    .text-parrafo{
        padding: 80px 60px;
    }

    .text-parrafo p{
        width: 90%;
     }

    .empleos-content h1, .empleos-content .formulario-empleos{
        width: 70%;
    }

    .textos.servicios>h2{
        width: 80%;
    }

     .equipo-content{
        flex-direction: column;
        align-items: center;
    }

    .equipo-avatar{
        width: 50%;
    }

    .row-clientes{
    justify-content: space-around;
    }

    .img-cliente{
        width: 40%;
        
    }

    .content-otros{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .titulos-otros{
        width: 80%;
    }
    
}

@media screen and (max-width: 768px){
    :root{
        --margenes: 30px;
    }

    .textos>h1{
        font-size: 70px;
        width: 90%;
    }
    
    .textos>h2{
        font-size: 25px;
        width: 90%;
    }

    .content-foda{
        width: 40%;
        margin-top: 50px;
    }

    .text-parrafo{
        padding: 62px 46px;
    }

    .nosotros, .btn-contenedor{
        width: 90%;
    }

    .img-nosotros {
       display: none;
    }

    .contenido-contacto{
        flex-direction: column;
    }

    .informacion{
        width: 100%;
        margin-bottom: 30px;
    }

    .opciones-servicios .servicio{
        width: 90%;
        margin-top: 50px;
    }

    .servicios-texto {
        margin-bottom: 70px;
        width: 80%;
    }

    .equipo-avatar{
        width: 70%;
    }

    .titulos-otros{
        width: 80%;
    }

    .content-alianzas{
        width: 90%;
    }

    .options-contacto{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tipo-contacto{
        width: 90%;
    }

    .formulario-controles form button{
        width: 30%;    
    }
}


@media screen and (max-width: 500px){
    :root{
        --espacios-contenido: 25px
    }

    .content-foda{
        width: 90%;
    }

    .caja-servicios{
        width: 90%;
        margin-bottom: var(--margenes);
    }

    .cont-work{
        width: 85%;
    }

    .marca-logo{
        width: 80%;
    }

    .iconos{
        margin: auto;
    }

    .text-parrafo{
        padding: 40px 30px;
    }

    .text-parrafo p, .btn-contenedor, .text-parrafo h1 {
        width: 100%;
    }

    footer{
        height: 80px;
    }

    .footer-content{
        justify-content: center;
        flex-direction: column-reverse;
        text-align: center;
    }

    .servicios-texto>p{
        width: 90%;
    }

    .equipo-avatar{
        margin-bottom: 40px;
    }

    .equipo-texto>p{
        width: 90%;
    }

    .img-cliente{
        width: 90%;   
    }

    .formulario-controles form button{
        width: 40%;    
    }
}

@media screen and (max-width: 400px){

    footer{
        height: 90px;
    }

    .footer-content{
        justify-content: center;
        flex-direction: column-reverse;
    }
    
    .textos>h1{
        font-size: 60px;
    }

    .btn-contenedor{
       flex-direction: column;
       align-items: center;
    }

    .text-parrafo{
        padding: 28px 21px;
        margin: 0;
    }

    .empleos-content h1 {
        font-size: 20px;
    }

    .equipo-avatar{
        width: 90%;
    }

    .texto-clientes>p{
        width: 100%;
    }

    .formulario-controles form button{
        width: 50%;    
    }
}
/* ============== FIN RESPONSIVO ================ */