

.site-footer a {
    text-decoration: none;
}


.footer-gotop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 30px 0;
    background: linear-gradient(180deg, var(--AzulOscuro), var(--AzulClaro)); 
    color: var(--Blanco);
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
}

.footer-gotop:hover {
    opacity: 0.9;
    color: var(--Blanco);
}

.footer-gotop i {
    font-size: 0.8rem;
}

.footer-gotop-text {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


#footer {
    background-color: var(--NegroSoft); /* fondo alternativo de footer, según la guía de tokens */
    border-top: 4px solid var(--Rojo);  /* línea divisoria del footer, uso de acento permitido */
    padding-top: 40px;
    padding-bottom: 24px;
}

/* --- Fila principal: logo / enlaces / legal --- */

.footer-main {
    padding-bottom: 32px;
}


.footer-brand {
    margin-bottom: 24px;
}

.footer-logo {
    display: inline-block;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--Blanco);
    line-height: 1;
}

.footer-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff8c;
    margin: 4px 0 18px 0;
}

.footer-desc,
.footer-address,
.footer-phone {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff8c;
    margin-bottom: 6px;
}

.footer-phone a {
    color: #ffffff8c;
    transition: color 0.2s ease-in-out;
}

.footer-phone a:hover {
    color: var(--AzulClaro); 
}


.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--Blanco);
    margin-bottom: 16px;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    font-size: 0.9rem;
    color: #ffffff8c;
    transition: color 0.2s ease-in-out;
}

.footer-list a:hover {
    color: var(--AzulClaro); 
}


.footer-social-row {
    padding-bottom: 24px;
}

.footer-social {
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--AzulOscuro); 
    color: var(--Blanco);
    font-size: 1rem;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.social-icon:hover {
    background-color: var(--AzulClaro);
    color: var(--Blanco);
    transform: translateY(-2px);
}


.footer-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    margin-bottom: 16px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #ffffff8c;
    line-height: 1.6;
}

.footer-powered-by {
    color: var(--Blanco);
}

.footer-powered-by-accent {
    color: var(--AzulClaro);
}


@media (max-width: 767.98px) {
    .footer-brand {
        text-align: left;
    }

    .footer-heading {
        margin-top: 8px;
    }
}

@media (max-width: 575.98px) {
    .footer-social {
        justify-content: flex-start;
    }

    .footer-copyright {
        text-align: left;
    }
}