/*==========================================================
                    FOOTER
==========================================================*/

.footer{

    position:relative;

    background:linear-gradient(
    180deg,
    var(--azul-oscuro),
    var(--azul));

    color:white;

    padding:90px 8% 30px;

    overflow:hidden;

}

/*==================================
        NUMERO DE FONDO
==================================*/

.footer::before{

    content:"ITEMCOL";

    position:absolute;

    top:30px;

    right:30px;

    font-size:120px;

    font-weight:900;

    color:rgba(255,255,255,.04);

    user-select:none;

}

/*==================================
        GRID
==================================*/

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

/*==================================
        LOGO
==================================*/

.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}

.footer-logo img{

    width:65px;

}

.footer-logo h2{

    color:white;

    font-size:30px;

}

/*==================================
        TEXTO
==================================*/

.footer p{

    line-height:1.9;

    color:#EAEAEA;

}

/*==================================
        TITULOS
==================================*/

.footer h3{

    margin-bottom:25px;

    color:var(--naranja);

}

/*==================================
        ENLACES
==================================*/

.footer ul{

    list-style:none;

}

.footer ul li{

    margin-bottom:15px;

}

.footer ul li a{

    color:white;

    transition:.3s;

}

.footer ul li a:hover{

    color:var(--naranja);

    padding-left:8px;

}

/*==================================
        REDES
==================================*/

.redes{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.redes a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.12);

    color:white;

    font-size:20px;

    transition:.35s;

}

.redes a:hover{

    background:var(--amarillo);

    color:var(--azul);

    transform:translateY(-8px);

}

/*==================================
        COPYRIGHT
==================================*/

.footer-bottom{

    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:30px;

    text-align:center;

    color:#DADADA;

}

/*==================================
        BOTON ARRIBA
==================================*/

.toTop{

    position:fixed;

    right:35px;

    bottom:35px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:var(--amarillo);

    color:var(--azul);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    box-shadow:var(--shadow2);

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.toTop.active{

    opacity:1;

    visibility:visible;

}

.toTop:hover{

    transform:translateY(-8px);

    background:white;

}

/*==================================
        WHATSAPP
==================================*/

.whatsApp{

position:fixed;

right:30px;

bottom:105px;

width:65px;

height:65px;

border-radius:50%;

background:#25D366;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

color:white;

box-shadow:0 15px 35px rgba(0,0,0,.30);

z-index:999;

animation:pulse 2s infinite;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

.whatsApp:hover{

    transform:scale(1.1);

}

/*===============================
      CELULARES
===============================*/

@media (max-width:576px){

}