.footer{
    background: #000;
    color: #e3ab46;
    padding: 60px 80px 30px;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
}

.footer-top{
    display: grid;
    grid-template-columns: 1.2fr 3fr;
    align-items: center;
}

.footer-brand img{
    width: 260px;
    margin-bottom: 15px;
}

.slogan{
    color: #fff;
    margin-bottom: 20px;
}

.footer-socials a{
    color: #e3ab46;
    font-size: 20px;
    margin-right: 15px;
    transition: all .3s ease;
}

.footer-socials a:hover{
    text-shadow: 0 0 10px #e3ab46;
    transform: scale(1.1);
}

.footer-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.circle{
    text-decoration: none;
    color: #e3ab46;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all .4s ease;
}

.footer-links .circle.active i {
    background-color: #e3ab46 !important;
    color: #ffffff !important;
    border-color: #e3ab46 !important;
    box-shadow: 0 0 25px rgba(227, 171, 70, 0.9) !important;
    opacity: 1 !important;
}

.footer-links .circle.active span {
    color: #e3ab46 !important;
    opacity: 1 !important;
    font-weight: bold !important;
}

.circle i{
    width: 110px;
    height: 110px;
    border: 2px solid #e3ab46;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    box-shadow: 0 0 15px rgba(227,171,70,0.4);
    transition: all .4s ease;
}

.circle span{
    text-align: center;
    opacity: 0.85;
}

.circle:hover i{
    box-shadow: 0 0 25px rgba(227,171,70,0.9);
    transform: scale(1.08);
}

.circle:hover span{
    opacity: 1;
}

.footer-line{
    margin: 40px 0 25px;
    height: 1px;
    background: rgba(227,171,70,0.5);
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p{
    color: #fff;
    opacity: 0.85;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 30px;
    background: transparent; 
    color: #e3ab46; 
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #e3ab46; 
    box-shadow: 0 0 6px rgba(227,171,70,0.6); 
    transition: all 0.3s ease;
    margin-right: 6px;
}

.btn-login i {
    font-size: 1.1rem;
    margin-right: 6px;
}

.btn-text {
    display: inline-block;
    font-size: 0.95rem;
    color: #e3ab46; 
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(227,171,70,0.9);
    color: #e3ab46;
}

/* --- FOOTER RESPONSIVE --- */

/* Tablets: hasta 768px */
@media (max-width: 768px) {
    .footer {
        padding: 50px 5% 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand img {
        width: 200px;
    }

    .footer-socials a {
        font-size: 18px;
        margin-right: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .circle i {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }

    .circle span {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .btn-login {
        padding: 5px 12px;
        font-size: 14px;
    }
}

/* Móviles: hasta 480px */
@media (max-width: 480px) {
    .footer {
        padding: 40px 5% 20px;
    }

    .footer-brand img {
        width: 160px;
    }

    .footer-socials a {
        font-size: 16px;
        margin-right: 8px;
    }

    .circle i {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .circle span {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .btn-login {
        padding: 4px 10px;
        font-size: 13px;
    }