/*------Fuente de letras------*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&family=Saira:wght@500&family=Tourney:wght@100;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ysabeau+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700&display=swap');
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
/*Navegacion del HTML*/
body {
    scroll-behavior: smooth;
}
div[id]{
    scroll-margin-top: 100px;
}
section[id]{
    scroll-margin-top: 100px;
}
/*Panel de Navegacion*/
nav{
    background: #f4f4f4;
    height: 100px;
    width: 100%;
    font-family: 'Saira', sans-serif;
    font-weight: 500;
    position: fixed;
    z-index: 1000;
    top: 0;
}
.enlace{
    position: absolute;
    padding-top: 0px;
    padding-right: 0;
    padding-left: 200px;
}
.logo{
    height: 100px;
    margin: 0px 0px;
}
nav ul{
    float: right;
    margin-right: 100px;
}
nav ul li{
    display: inline-block;
    line-height: 100px;
    margin: 0 5px;
}
nav ul li a{
    color: #001142;
    font-size: 19px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}
li a.active, li a:hover{
    color:#fe292f;
    transition: .5s;
    text-decoration: underline 3px;
}
.checkbtn{
    font-size: 30px;
    color: #001142;
    float: right;
    line-height: 100px;
    margin-right: 70px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}


/*------------Cambio Fuente de media------------*/
@media (max-width: 952px){
    .enlace{
        padding-left: 150px;
    }
    nav ul li a{
        font-size: 16px;
        color: white;
    }
    /*------Panel 1-------*/
    .imgpanel1{

        display: none;
        visibility: hidden;
        height: 0px;
        width: 0px;
        position: fixed;
    }
    .juarez-tume{
        font-size: 10px;
    }
    /*-------Panel 2-------*/
    .imgpanel2{
        display: none;
        visibility: hidden;
        height: 0px;
        width: 0px;
        position: fixed;
    }
    .panel2{
        height: 100%;
        margin-top: 100px;
        margin-bottom: 50px;
    }
    /*--------Panel 3-------*/
    .imgpanel3{

        display: none;
        visibility: hidden;
        height: 0px;
        width: 0px;
        position: fixed;
    }
}

@media (max-width: 1150px){
    .checkbtn{
        display: block;
    }
    ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #001142;
        top: 100px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a{
        font-size: 20px;
        color: #fff;
    }
    li a:hover, li a.active{
        background: none;
        color: red;
    }
    #check:checked ~ ul{
        left: 0;
    }
    ul .paginacion{
        background: none;
    }
    header ul{
        position: auto;
        width: auto;
        height: auto;
        background: none;
        top: auto;
        left: auto;
        text-align: auto;
        transition: auto;
    }
}
@media (max-width: 500px){
    .checkbtn{
        margin-right: 20px;
    }
    .enlace{
        padding-left: 10px;
    }
}
/*--------------------Slider--------------------*/
header {
    position: relative;
    margin-top: 100px;
}
.slide {
    text-align: center;
    padding: 150px 50px;
    background-size: cover;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    height: 500px;
}
.s1 {
    background-image: url(img/img-slider-1.webp);
    box-shadow: inset 0px 0px 25px 20px rgba(0, 0, 0, 0.527);
}
.s2 {
    background-image: url(img/img-slider-2.webp);
    box-shadow: inset 0px 0px 25px 20px rgba(0, 0, 0, 0.527);
    display: none;
}
.s3 {
    background-image: url(img/img-slider-3.webp);
    box-shadow: inset 0px 0px 25px 20px rgba(0, 0, 0, 0.527);
    display: none;
}
.slide h1 {
    font-size: 40pt;
    margin-bottom: 20px;
    margin-bottom: 60px;
}
.slide p {
    font-size: 18px;
    margin-bottom: 20px;
}
.boton-slider {
    position: relative;
    border: none;
    outline: none;
    width: 180px;
    height: 50px;
    background-image: linear-gradient(180deg, #CB1727 0%, #A71320 100%);
    font-size: 1.2rem;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    border-radius: 5px;
}
.boton-slider::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c52126;
    z-index: -1;
    border-radius: 7px;
    transform: translateY(0px);
}
.boton-slider:active{
    transform: translateY(0);
}
.boton-slider:active::before{
    transform: translateY(0);
}
.boton {
    font-size: 20pt;
    color: white;
    font-weight: bolder;
    position: absolute;
    top: 40%;
    padding: 10px 10px;
    cursor: pointer;
    border-radius: 100px;
}
.boton:hover {
    background-color: none;
    transition: 0.5s;
    color: #868686;
}
.derecha {
    right: 8px;
    font-family: 'Nanum Gothic', sans-serif;
}
.izquierda {
    left: 8px;
    font-family: 'Nanum Gothic', sans-serif;
}
/*PAGINACIÓN*/
.paginacion {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 10px;
    text-align: center;
}
.paginacion li {
    list-style: none;
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.432);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
}
.paginacion li:hover {
    background-color: white;
    transition: 0.5s;
}

/*--------------------Panel 1-----------------------*/
.panel1{
    display: flex;
    align-items: center;
    margin-top: 0px 0px;
    background-color: #fff;
    padding: 0px 0px;
}
.imgpanel1{
    width: 100%;
    max-width: 50%;
    height: 470px;
    margin-left: 0;
    display: flex;
    object-fit: cover;
}
/*--------------Contenido Panel 1------------*/
/*-----------Texto Panel 1---------*/
.contenido-panel1{
    margin: 50px;
}
/*----Juarez&Tume----*/
.juarez-tume{
    display: flex;
    font-family: arial;
    justify-content: left;
    align-items: center;
    font-size: 25px;
}
.juarez{
    color: #001142
}
.y{
    margin-left: 8px;
    margin-right: 8px;
    color: rgb(51, 51, 51);
}
.tume{
    color: #fe292f;
}
/*----Sobre Nosotros----*/
.titulo-panel1{

    font-family: 'Ysabeau SC', sans-serif;
    font-weight: 400;
    font-size: 35px;
    margin-top: -15px;
    color: #001142;
    display: flex;
}

.texto-panel1{

    color: #0e0e0e;
    font-family: 'Nunito', sans-serif;
    font-weight: 200;
    font-size: 20px;
    margin-top: 20px;
}
/*-----------------Mini Slider---------------*/
@keyframes scroll{
    0%{
        transform: translate(0);
    }
    100%{
        transform: translate(calc(-250px * 7));
    }
}
.slider-mini{
    background-color: #153e9c;
    height: 120px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}
.slide-mini p{
    margin-left:15px;
    margin-right: 80px;
    font-size:20px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
}
.slider-mini .slide-mini-track{
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
    margin: 25px;
}
.slider-mini .slide-mini{
    height: 100px;
    width: 250px;
    margin-top: -15px;
    display: flex;
    align-items: center;
}
/*---------Eslogan con fondo movible---------*/
.eslogan-movil{
    height: 400px;
    background-image: url(img/img_eslogan.webp);
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    font-size: 50px;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.titulo1-eslogan-movil{
    font-family: 'Tourney', cursive;
    color: white;
}
.titulo2-eslogan-movil{
    font-family: 'Tourney', cursive;
    font-weight: 100;
    color: #fff;
}
@media(max-width: 500px){
    .eslogan-movil{
        font-size: 40px;
    }
}
/*--------------------Panel 2-----------------------*/
.panel2{

    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0px 0px;
    background-color: white;
    padding: 0px 0px;  
}
/*--------------Contenido Panel 2------------*/
.imgpanel2{
    width: 3000px;
    max-width: 100%;
    height: 470px;
    margin-left: 0;
    display: flex;
    object-fit: cover;
}
/*-----------Texto Panel 2---------*/
.contenido-panel2{
    margin-left: 10%;
    margin-right: 10%;
    margin-top: -50px;
    max-width: 100%;
}
/*----Sobre Nosotros----*/
.titulo-panel2{
    font-family: 'Ysabeau SC', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #001142;
    display: flex;
    justify-content: center;
    text-align: center;  
}
.raya-titulo-panel2{
    font-family: arial;
    font-size: 60px;
    margin-top: -45px;
    color: #001142;
    display: flex;
    justify-content: center
}
.texto-panel2{
    color: #0e0e0e;
    font-family: 'Nunito', sans-serif;
    font-weight: 200;
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
    justify-content: center;
}
/*--------------------Panel 3-----------------------*/
.panel3{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0px 0px;
    background-color: #f4f4f4;
    padding: 0px 0px;  
}
/*--------------Contenido Panel 3------------*/
.imgpanel3{
    width: 3000px;
    max-width: 100%;
    height: 470px;
    margin-left: 0;
    margin-right: 0;
    display: block;
    object-fit: cover;  
}
/*-----------Texto Panel 3---------*/
.contenido-panel3{
    margin: 50px;
    max-width: 100%;
    text-align: center;
    margin-left: 15%;
    margin-right: 15%;
}
/*----Nuestra vision----*/
.titulo-panel3{
    font-family: 'Ysabeau SC', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #001142;
    display: flex;
    justify-content: center;
    text-align: center;
}
.raya-titulo-panel3{
    font-family: arial;
    font-size: 60px;
    margin-top: -45px;
    color: #001142;
    display: flex;
    justify-content: center;
    text-align: center;
}
.texto-panel3{
    color: #0e0e0e;
    font-family: 'Nunito', sans-serif;
    font-weight: 200;
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
}
/*--------------------Panel 4-----------------------*/
.panel4{
    width: 100%;
    height: 250px;
    justify-content: center;
    align-items: center;
    margin-top: 0px 0px;
    background-color: white;
    padding: 0px 0px;
    text-align: center;  
}
/*--------------Contenido Panel 4------------*/
/*-----------Texto Panel 4---------*/
/*----Blog----*/
.titulo-panel4{
    font-family: 'Ysabeau SC', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #001142;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 0px;
    padding-top: 20px;
}
.raya-titulo-panel4{
    font-family: arial;
    font-size: 40px;
    margin-top: -30px;
    color: #001142;
    display: flex;
    justify-content: center;
    text-align: center;
}
.texto-panel4{
    color: #0e0e0e;
    font-family: 'Nunito', sans-serif;
    font-weight: 200;
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
}
.boton-panel4 {
    position: relative;
    border: none;
    outline: none;
    width: 180px;
    height: 50px;
    background-image: linear-gradient(180deg, #CB1727 0%, #A71320 100%);
    font-size: 1.2rem;
    color: #fff;
    border-radius: 5px;
    padding: 5px 50px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}
.boton-panel4::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c52126;
    z-index: -1;
    border-radius: 7px;
    transform: translateY(0px);
}
.boton-panel4:active{
    transform: translateY(0);
}
.boton-panel4:active::before{
    transform: translateY(0);
}
/*--------------------------Servicios----------------------------*/
.servicios{
    justify-content: center;
    text-align: center;
    height: 150px;
    background-color: #ac2428;
}
.titulo-servicios{

    font-family: 'Ysabeau SC', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: white;
    padding-top: 40px;
}
.raya-titulo-servicios{

    font-family: arial;
    font-size: 40px;
    margin-top: -30px;
    color: white;
    display: flex;
    justify-content: center;
    text-align: center;
}
/*--------------------Panel de servicios-----------------------*/
.panel-servicios{
    display:flex;
    width: 100%;
    height: 500px;
    text-align: center;
}
/*-----------letras----------*/
.panel-servicios .parte1{
    width: 0px;
    flex-grow: 1;
    object-fit: cover;
    opacity: 1;
    transition: 0.5s;
    background-image: url(img/img-area-legal.webp);
    background-position: center;
    color: white;
    font-size: 35px;
    padding-top: 170px;
    font-family: 'Tourney', cursive;
    font-weight: 900;
    position: relative;
    display: inline-block;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.panel-servicios .parte1:hover{
    cursor: pointer;
    width: 300px;
    opacity: 1;
    filter: contrast(120%);
    color: white;
    padding-top: 20px;
    font-size: 35px;
    font-family: 'Tourney', cursive;
    font-weight: 900;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.panel-servicios .parte1:hover .sub-text {
    display: block; /* Mostrar en hover */
    color: rgb(255, 255, 255);
}
/*--------------------------*/
.panel-servicios .parte2{
    width: 0px;
    flex-grow: 1;
    object-fit: cover;
    opacity: 1;
    transition: 0.5s;
    background-image: url(img/img-contabilidad.webp);
    background-position: center;
    color: white;
    font-size: 35px;
    padding-top: 170px;
    font-family: 'Tourney', cursive;
    font-weight: 900;
    position: relative;
    display: inline-block;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.panel-servicios .parte2:hover{
    cursor: pointer;
    width: 300px;
    opacity: 1;
    filter: contrast(120%);
    color: white;
    padding-top: 20px;
    font-size: 35px;
    font-family: 'Tourney', cursive;
    font-weight: 900;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.panel-servicios .parte2:hover .sub-text {
    display: block; /* Mostrar en hover */
    color: rgb(255, 255, 255);
}
/*-----------------------------------------*/
.panel-servicios .parte3{
    width: 0px;
    flex-grow: 1;
    object-fit: cover;
    opacity: 1;
    transition: 0.5s;
    background-image: url(img/img-area-laboral.webp);
    background-position: center;
    color: white;
    font-size: 35px;
    padding-top: 170px;
    font-family: 'Tourney', cursive;
    font-weight: 900;
    position: relative;
    display: inline-block;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.panel-servicios .parte3:hover{
    cursor: pointer;
    width: 300px;
    opacity: 1;
    filter: contrast(120%);
    color: white;
    padding-top: 20px;
    font-size: 35px;
    font-family: 'Tourney', cursive;
    font-weight: 900;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.panel-servicios .parte3:hover .sub-text {
    display: block; /* Mostrar en hover */
    color: rgb(255, 255, 255);
}
/*-------------------------*/
.panel-servicios .parte4{
    width: 0px;
    flex-grow: 1;
    object-fit: cover;
    opacity: 1;
    transition: 0.5s;
    background-image: url(img/img-constituir.webp);
    background-position: center;
    color: white;
    font-size: 35px;
    padding-top: 170px;
    font-family: 'Tourney', cursive;
    font-weight: 900;
    position: relative;
    display: inline-block;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.panel-servicios .parte4:hover{
    cursor: pointer;
    width: 300px;
    opacity: 1;
    filter: contrast(120%);
    color: white;
    padding-top: 20px;
    font-size: 35px;
    font-family: 'Tourney', cursive;
    font-weight: 900;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.panel-servicios .parte4:hover .sub-text {
    display: block; /* Mostrar en hover */
    color: rgb(255, 255, 255);
}
.panel-servicios .sub-text {
    display: none; /* Inicialmente oculto */
    font-size: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight:200;
    padding: 20px;
    text-align: left;
    margin:5%;
    background-color: #050f27c5;
    border-radius: 10px;
    margin-top: 10px;
}

.panel-servicios .btn-servicio{
    position: relative;
    border: none;
    outline: none;
    width: 180px;
    height: 50px;
    background-image: linear-gradient(180deg, #CB1727 0%, #A71320 100%);
    font-size: 1.2rem;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}
.panel-servicios .parte1:hover .btn-servicio{
    display: none;
    margin-left: 37%;
    transition: 1s;
}
.panel-servicios .parte2:hover .btn-servicio{
    display: none;
    margin-left: 35%;
}
.panel-servicios .parte3:hover .btn-servicio{
    display: none;
    margin-left: 35%;
}
.panel-servicios .parte4:hover .btn-servicio{
    display: none;
    margin-left: 35%;
    animation: forwards 3s forwards;
}
@media (max-width: 1080px){
    .panel-servicios{
        display:block;
        width: 100%;
        height: 100%;
        text-align: center;
    }
    .panel-servicios .btn-servicio{
        display: none;
    }
    .panel-servicios .parte1{
        width: 100%;
        flex-grow: 1;
        object-fit: cover;
        opacity: 1;
        transition: 0.5s;
        background-image: url(img/img-area-legal.webp);
        background-position: center;
        color: white;
        font-size: 35px;
        padding-top: 20px;
        font-family: 'Tourney', cursive;
        font-weight: 900;
        position: relative;
        display: inline-block;
        text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
    }
    .panel-servicios .parte1:hover{
        cursor: pointer;
        width: 100%;
        opacity: 1;
        filter: contrast(120%);
        color: white;
        padding-top: 20px;
        font-size: 35px;
        font-family: 'Tourney', cursive;
        font-weight: 900;
        text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
    }
    .panel-servicios .parte2{
        width: 100%;
        flex-grow: 1;
        object-fit: cover;
        opacity: 1;
        transition: 0.5s;
        background-image: url(img/img-contabilidad.webp);
        background-position: center;
        color: white;
        font-size: 35px;
        padding-top: 20px;
        font-family: 'Tourney', cursive;
        font-weight: 900;
        position: relative;
        display: inline-block;
        text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
    }
    .panel-servicios .parte2:hover{
        cursor: pointer;
        width: 100%;
        opacity: 1;
        filter: contrast(120%);
        color: white;
        padding-top: 20px;
        font-size: 35px;
        font-family: 'Tourney', cursive;
        font-weight: 900;
        text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
    }
    .panel-servicios .parte3{
        width: 100%;
        flex-grow: 1;
        object-fit: cover;
        opacity: 1;
        transition: 0.5s;
        background-image: url(img/img-area-laboral.webp);
        background-position: center;
        color: white;
        font-size: 35px;
        padding-top: 20px;
        font-family: 'Tourney', cursive;
        font-weight: 900;
        position: relative;
        display: inline-block;
        text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
    }
    .panel-servicios .parte3:hover{
        cursor: pointer;
        width: 100%;
        opacity: 1;
        filter: contrast(120%);
        color: white;
        padding-top: 20px;
        font-size: 35px;
        font-family: 'Tourney', cursive;
        font-weight: 900;
        text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
    }
    .panel-servicios .parte4{
        width: 100%;
        flex-grow: 1;
        object-fit: cover;
        opacity: 1;
        transition: 0.5s;
        background-image: url(img/img-constituir.webp);
        background-position: center;
        color: white;
        font-size: 35px;
        padding-top: 20px;
        font-family: 'Tourney', cursive;
        font-weight: 900;
        position: relative;
        display: inline-block;
        text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
    }
    .panel-servicios .parte4:hover{
        cursor: pointer;
        width: 100%;
        opacity: 1;
        filter: contrast(120%);
        color: white;
        padding-top: 20px;
        font-size: 35px;
        font-family: 'Tourney', cursive;
        font-weight: 900;
        text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
    }
    .panel-servicios .sub-text {
        display: block; /* Inicialmente oculto */
        font-size: 20px;
        font-family: 'Nunito', sans-serif;
        font-weight:200;
        padding: 20px;
        text-align: left;
        text-decoration: none;
        margin:5%;
        color: white;
        border-radius: 10px;
        margin-top: 10px;
    }
}
/*--------------------------*/
/*-----------------Boton WhatsApp----------------*/
.btn-wsp{
    position: fixed;
    display: flex;
    width: 60px;
    height: 60px;
    line-height: 55px;
    bottom: 30px;
    right: 30px;
    background: #0df053;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 0;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    margin-top: 8px;
    transition-duration: 200ms;
}
.icon-wsp{
    margin-top: 8px;
    font-size: 40px;
    margin-left: 10px;
}
.btn-wsp:hover{
    text-decoration: none;
    width: 175px;
    font-size: 20px;
    font-family:'Saira', sans-serif;
    transition-duration: 500ms;
}
/*-----------------Contactanos-------------------*/
.contactanos{
    position: relative;
    width: 100%;
    padding: 40px;
    background-image: url(img/img-fondo-contacto.webp);
    background-size:cover;
    background-attachment: fixed;
    font-family: 'Saira', sans-serif;
}
.contactanos-titulo{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}
.contactanos-titulo h2{
    color: #fff;
    font-weight: 500;
}
.form{
    grid-area: form;
}
.info{
    grid-area: info;
}
.map{
    grid-area: map;
}
.contacto{
    padding: 20px;
    background: #fff;
    box-shadow: 0 5px 35px rgba(0,0,0,0.15);
    border-radius: 10px;
}
.box{
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 3.7fr 4fr;
    grid-template-areas: 
    "form info"
    "form map";
    grid-gap: 20px;
    margin-top: 20px;
}
.contacto h3{
    color: #1178a8;
    font-weight: 500;
    font-size: 1.4em;
    margin-bottom: 10px;
}
/*--------Form--------*/
.formBox{
    position: relative;
    width: 100%;
}
.formBox .row50{
    display: flex;
    gap: 20px;
}
.inputBox{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
}
.formBox .row100 .inputBox{
    width: 100%;
}
.inputBox span{
    color: #1178a8;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;
}
.inputBox input{
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #333;
    border-radius: 5px;
}
.inputBox textarea{
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #333;
    resize: none;
    min-height: 220px;
    margin-bottom: 10px;
    border-radius: 5px;
}
.inputBox input[type="submit"]{
    background-image: linear-gradient(180deg, #CB1727 0%, #A71320 100%);
    color: #fff;
    border: none;
    font-size: 1.1em;
    max-width: 120px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 15px;
}
.inputBox ::placeholder{
    color: #999;
}
/*info*/
.info{
    background: #0e3959;
}
.info h3{
    color: #fff;
}
.info .infoBox div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.info .infoBox div span{
    min-width: 40px;
    height: 40px;
    color: #fff;
    background: rgb(0 111 161);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 50%;
    margin-right: 15px;
}
.info .infoBox div p{
    color: #fff;
    font-size: 1.1em;
}
.info .infoBox div a{
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}
.map{
    padding: 0;
}
.map iframe{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
/*.map{
    padding: 0;
    justify-content: center;
    background: #0e3959;
    align-items: center;
}
.map ion-icon{
    color: white;
    display: flex;
    font-size: 40px;
    margin: 30px;
    margin-top: 30px;
}*/
/*Responsive Desing*/
@media(max-width: 991px){
    .contactanos{
        padding: 10px;
        width: 100%;
    }
    .box{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: 
        "form"
        "info"
        "map";
    }
    .map{
        min-height: 300px;
    }
    .formBox .row50{
        display: flex;
        gap: 0;
        flex-direction: column;
    }
    .inputBox{
        width: 100%;
    }
}
@media(max-width: 400px){
    .contactanos{
        padding: 10px;
        width: 100%;
    }
    .inputBox input[type="submit"]{
        max-width: 100%;
    }
}
@media(max-width: 390px){
    .juarez-tume{
        font-size: 10px;
    }
    .eslogan-movil{
        font-size: 35px;
    }
    .info .infoBox div a {
        font-size: auto;
    }
    .slide h1{
        font-size: 40px;
    }
    .slide p{
        font-size: 20px;
    }
}
@media(max-width: 470px){
    .juarez-tume{
        font-size: 15px;
    }
    .slide{
        padding: 50px 50px;
        height: auto;
    }
}
@media(max-width: 620px){
    .slide{
        padding: 50px 50px;
    }
}
@media(max-width: 760px){
    .slide{
        padding: 50px 50px;
    }
}
/*--------------clientes que confian en nosotros-------*/
.clientes {
    max-width: 100%;
    margin: 0 auto;
    padding:20px;
    column-count: 3;
    padding-bottom: 100px;
    margin-top: -60px;
}
h2 {
    text-align: center;
    font-size: 50px;
}
.cliente {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;  
}
.cliente img {
    max-width: 100%;
    min-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    padding: 10px;
    margin-bottom: 60px;
    cursor: pointer;
}
.cliente img:hover {
    filter: none;
}
.cliente6 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    cursor: pointer;
    margin-top: -35px;
}
.cliente6 img {
    max-width: 100%;
    min-width: 100px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    padding: 0px;
}
.cliente6 img:hover {
    filter: none;
}
/* Estilos para pantallas pequeñas (máximo 600px)*/
@media (max-width: 930px) {
    .clientes {
        max-width: 95%;
        margin: 0 auto;
        padding: 20px;
        column-count: 2;
        padding-bottom: 100px;
        margin-top: -60px;
    }
    .cliente img {
        filter: none;
    }
    .cliente6 img {
        filter: none;
        margin-top: 20px;
    }
}
/*---------------Pies de pagina------------------*/
.pie-pagina{
    width: 100%;
    height: 300px;
    background-color: #1d1d1d;
    font-family: Nunito, sans-serif;
    font-weight: 200;
}
.redes-sociales{
    justify-content: center;
    text-align: center;
    padding-top: 40px;
    color: white;
    font-size: 28pt;
    background-color: #1d1d1d;
    text-decoration: none;
}
.icon-redes{
    font-size: 28pt;
    color: white;
    text-decoration: none;
    height: max-content;
}
.icon-redes a{
    color: white;
    margin-bottom: -20px;
    height: 100%;
}
.redes-facebook:hover{
    color:#0866ff;
    transition: 0.5s;
}
.redes-linkedin:hover{
    color:#0a66c2;
    transition: 0.5s;
}
.redes-instagram{
    font-size: 29pt;
}
.redes-instagram:hover{
    transition: 0.5s;
    background: -webkit-linear-gradient(#fdf497, #fd5949, #d6249f, #285AEB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.redes-youtube:hover{
    color:#ff0000;
    transition: 0.5s;
}

.politica{
    justify-content: center;
    text-align: center;
    padding-top: 20px;
    color: white;
    font-size: 18pt;
}
.politica:hover{
    text-decoration: underline;
}
.derechos{
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 25px;
}
.diseño{
    justify-content: center;
    text-align: center;
    display: flex;
}
.politica-privacidad{
    color: #f4f4f4;
}
.hecho-por{
    color: #f4f4f4;
    margin-left: 6px;
}
.pie-instagram{
    background-image: linear-gradient(180deg, #f316e8 0%, #e96812 100%);
    border-radius: 5px;
    margin: -3px;
}
