/* --- Estilos del Footer --- */
.main-footer {
    position: relative; /* Crea un contexto de apilamiento */
    z-index: 10;      /* Eleva el footer por encima del contenido principal */
    padding: 40px 20px 20px 20px; /* Padding por defecto para todas las páginas */
    color: white;
}

/* Anula el padding superior solo en la página de inicio (donde está la huincha) */
body.page-home .main-footer {
    padding-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- AJUSTA LOS ANCHOS DE LAS COLUMNAS AQUÍ --- */
/* La suma de los porcentajes debería ser cercana a 100% */
.footer-column-left {
    flex: 0 0 48%; /* No crece, no se encoge, base del 40% */
}
.footer-column-center {
    flex: 0 0 15%; /* No crece, no se encoge, base del 30% */
}
.footer-column-right {
    flex: 0 0 15%; /* No crece, no se encoge, base del 30% */
}
/* --------------------------------------------- */

.footer-column.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.footer-column.footer-social {
    text-align: right;
}

.footer-project-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0px;
}

.footer-separator {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.5);
}

.footer-logo {
    height: 45px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.footer-contact a {
    text-decoration: none;
    color: white;
    font-weight: normal;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-social p {
    font-size: 0.9rem;
    margin: 0 0 10px 0;
}

.footer-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.footer-social-icons a {
    color: white;
    transition: color 0.2s ease;
}

.footer-social-icons a:hover {
    color: #fea101;
}

.footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-copyright p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 20px;
}

/* --- Footer Responsivo --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        border-bottom: none;
    }
    .footer-column {
        text-align: center;
    }
    .footer-logos {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-social-icons {
        justify-content: center;
    }

    .footer-project-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 30px;
    }

    .footer-separator {
        display: none; /* Oculta el separador en móvil */
    }

}
}