/* NUEVO NAV */
ul{
    margin: 0;
    padding: 0;
}
header{
    position: absolute;
    width: 100%;
    min-height: 66px;
    background-color: var(--mi-dark);
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}
.logoNav{
    width: 50px;
    height: 100%;
}
header ul{
    position: relative;
}

header ul li{
    position: relative;
    list-style: none;
    float: left;
}
header ul li a{
    padding: 10px 10px;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}
.linkBlanco{
    color: white;
}
.linkBlanco:hover{
    color: var(--mi-warning);
}
.linkAmarillo{
    color: var(--mi-warning);
}
.linkAmarillo:hover{
    color: white;
}
/* ICONOS DEL MENU */
.iconoInLineBlock{
    display: inline-block;
}
.iconosMenu{
    color: white;
    margin-bottom: 0;
}
.iconosMenu i{
    margin-right: 10px;
    font-size: 16px;
}
.iconosMenu:hover{
    color: var(--mi-warning);
}
.iconoIngresar{
    color: white;
    margin-left: 20px;
    margin-top: 10px;
    font-size: 14px;
}
.iconoIngresar i{
    margin-right: 10px;
}
.iconoIngresar:hover{
    color: var(--mi-warning);
}
/* SUBMENU */
header ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background-color: var(--mi-dark);
    display: none;
}
header ul li:hover ul{
    display: block;
}
header ul li ul li{
    position: relative;
    width: 100%;
    padding: 10px 0;
}
header ul li ul li a{
    color: white;
}
header ul li ul li a:hover{
    color: var(--mi-warning);
}
header ul li ul li:not(:last-child) {
    border-bottom: 1px solid var(--mi-secondary);
}
/* OFFCANVAS */
.offcanvas{
    background-color: var(--mi-dark);
    color: white;
}
.formLogueo{
    display: flex;
    flex-direction: column;
}
.formLogueo input{
    margin-bottom: 10px;
    border: 1px solid var(--mi-secondary);
    background-color: transparent;
    padding: 10px;
    color: white;
}
.botonIniciar{
    color: var(--mi-warning);
    background-color: transparent;
    border: 1px solid var(--mi-warning);
    padding: 5px;
    margin-top: 20px;
    width: 100%;
    transition: all .5s ease;
}
.botonIniciar:hover{
    color: var(--mi-dark);
    background-color: var(--mi-warning);
}
.formLogueo a{
    color: white;
    transition: all .5s ease;
}
.formLogueo a:hover{
    color: var(--mi-warning);
}
.iconoWhatsApp{
    display: flex;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--mi-dark);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
}
.iconoWhatsApp:hover{
    background-color: var(--mi-secondary);
}
.iconoWhatsApp i{
    color: white;
    font-size: 30px;
}








/* ################################################################### */
/* ################################################################### */
/* ################################################################### */
/* FOOTER */
.contenedorHablemos{
    display: flex;
    align-items: center;
    background-color: var(--mi-danger);
    padding: 50px 100px;
}
.textoHablemos{
    width: 40%;
    padding: 0 20px;
    text-align: end;
}
.texto01{
    color: white;
    font-size: 40px;
}
.formHablemos{
    width: 40%;
    text-align: start;
}
.formHablemos label{
    display: none;
}
.formHablemos input{
    color: white;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 0;
}
.formHablemos textarea{
    color: white;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 0;
}
.formHablemos textarea::placeholder{
    color: white;
}
.formHablemos input::placeholder{
    color: white;
}
.botonBlanco{
    color: white;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 0;
    margin: 0;
    padding: 10px;
    transition: all .5s ease;
}
.botonBlanco:hover{
    color: var(--mi-dark);
    background-color: white;
}
.emailEnviado{
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid white;
    display: flex;
    align-items: center;
}
.emailEnviado i {
    font-size: 30px;
    color: black;
    margin-right: 15px;
}
.emailNoEnviado{
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid black;
    display: flex;
    align-items: center;
}
.emailNoEnviado i {
    font-size: 30px;
    color: white;
    margin-right: 15px;
}
footer{
    /* display: flex; */
    /* justify-content: space-between; */
    background-color: var(--mi-dark);
    /* padding: 50px; */
}
.bloqueFooter1{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    justify-content: space-between;
    padding: 50px 100px;
}
.copy{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--mi-secondary);
    padding: 5px 100px 0px 100px;
    color: white;
}
.copy img{
    width: 50px;
}
.logoFooter{
    width: 100px;
    height: 44px;
}
.listFooter{
    margin: 0;
    list-style: none;
    padding: 0;
}
.cajaIcono{
    display: grid;
    grid-template-columns: 1fr 11fr;
    align-items: center;
    margin-top: 20px;
}
.cajaIcono p{
    margin: 0;
}
.cajaIcono i, .cajaIcono p{
    color: white;
    font-size: 15px;
}

.iconosConLogo p{
    color: white;
    font-size: 14px;
}
.iconosFooter{
    display: flex;
}
.iconosFooter i{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin: 5px;
    padding: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--mi-dark);
}
.iconosFooter i:hover{
    background-color: var(--mi-warning);
}





/* ################################################################### */
/* ################################################################### */
/* ################################################################### */
/* Responsive */
@media (max-width:992px) {
    header{
        padding: 10px 20px;
        width: 100%;
    }
    header nav{
        position: absolute;
        width: 100%;
        top: 66px;
        left: 0;
        background-color: var(--mi-dark);
        display: none;
    }
    header.active nav{
        display: initial;
    }
    header nav ul li{
        width: 100%;
    }
    header nav ul li ul{
        position: relative;
        width: 100%;
        left: 0;
    }
    .menuToggle{
        position: relative;
        width: 40px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menuToggle::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: white;
        transform: translateY(-12px);
        box-shadow: 0 12px white;
    }
    .menuToggle::after{
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: white;
        transform: translateY(12px);
    }
    header.active .menuToggle::before{
        transform: rotate(45deg);
        box-shadow: 0 0 white;
    }
    header.active .menuToggle::after{
        transform: rotate(315deg);
    }
    .contenedorHablemos{
        display: grid;
        grid-template-columns: 1fr;
        padding: 50px;
        justify-content: center;
    }
    .textoHablemos{
        width: 100%;
        padding: 30px;
        text-align: center;
    }
    .formHablemos{
        width: 100%;
        text-align: center;
    }
    .bloqueFooter1{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .menuToggleAction{
        display: block;
    }
    .listNav{
        position: fixed;
        top: 70px;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--mi-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        transition: all 1s ease;
    }
    .listNav a{
        display: block;
        margin: 7px 0;
    }
    #menuToggle:checked + label.menuToggleAction + ul{
    right: 0;
    }   
}
@media(max-width:678px) {
    

    .bloqueFooter1{
        grid-template-columns: 1fr;
        padding: 50px;
    }
    .copy{
        display: grid;
        grid-template-columns: 1fr;
        padding: 50px;
    }
}
