/* =========================================
   FOOTER NUEVO
========================================= */

.footer{
    background-color: #070707;
    border-top: 1px solid #2a2a2a;
    padding-top: 80px;
}

.footer__grid{
    padding: 0 8% 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer__logo{
    color: #C8A96B;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer__tagline{
    color: #b3b3b3;
    max-width: 350px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer__social{
    display: flex;
    gap: 15px;
}

.footer__social-link{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #161616;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: 0.3s;
}

.footer__social-link svg{
    width: 18px;
    height: 18px;
}

.footer__social-link:hover{
    background: #C8A96B;
    color: black;
    transform: translateY(-3px);
}

.footer__heading{
    font-size: 22px;
    margin-bottom: 25px;
}

.footer__links,
.footer__contact{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__links a{
    color: #b3b3b3;
    transition: 0.3s;
}

.footer__links a:hover{
    color: #C8A96B;
    padding-left: 5px;
}

.footer__contact li{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b3b3b3;
}

.footer__contact svg{
    width: 18px;
    height: 18px;
    color: #C8A96B;
    flex-shrink: 0;
}

.footer__bottom{
    border-top: 1px solid #2a2a2a;
    padding: 30px 8%;
    text-align: center;
}

.footer__bottom p{
    color: #777;
}

/* RESPONSIVE */

@media(max-width: 992px){

    .footer__grid{
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width: 768px){

    .footer__grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

}
