/* --- FOOTER PADOVA --- */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Open Sans Condensed', sans-serif;
    position: relative;
    width: 100%;
}

/* Franja Superior Naranja */
.footer-top-border {
    width: 100%;
    height: 6px;
    background-color: #F69C00;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 30px 20px;
}

/* --- BLOQUE DE 3 COLUMNAS --- */
.footer-columns {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 35px;
}

.footer-col {
    flex: 1;
    position: relative;
}

/* Línea separadora vertical entre columnas */
.footer-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.footer-col-title {
    color: #F69C00;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 8px;
}

.footer-menu-list a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu-list a:hover {
    color: #F69C00;
}

/* Redes Sociales en Columna 3 */
.footer-social-text {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social-icons a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: #F69C00;
}

/* --- DIVISOR CENTRAL CON LOGO TOTALMENTE BLANCO --- */
.footer-logo-divider-box {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 10px 0 30px 0;
}

.footer-logo-divider-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.footer-logo-wrap {
    position: relative;
    display: inline-block;
    background-color: #000000;
    padding: 0 20px;
    z-index: 2;
}

.footer-logo-wrap img {
    max-height: 45px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1); /* Filtro para forzar el logo a blanco puro */
}

/* --- BOTTOM LEGAL Y MEMBRESÍAS --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.footer-legal-info {
    flex: 2;
    color: #888888;
    font-family: sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

.footer-legal-info p {
    margin: 0 0 4px 0;
}

.footer-email-link {
    color: #F69C00;
    text-decoration: underline;
}

.footer-email-link:hover {
    color: #ffffff;
}

.footer-affiliations {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    color: #888888;
    font-size: 12px;
}

.footer-affiliations img {
    max-height: 40px;
    width: auto;
    filter: brightness(0.9);
}

@media (max-width: 850px) {
    .footer-columns {
        flex-direction: column;
        gap: 25px;
    }
    .footer-col:not(:last-child)::after { display: none; }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}