/* ================================================= */
/* ESTILOS DEL PIE DE PÁGINA (FOOTER)              */
/* ================================================= */

.main-footer {
    background-color: var(--secondary-blue);
    color: var(--text-light);
    padding: 40px 20px 20px;
    font-size: 0.95em;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    flex-basis: 25%;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--accent-yellow);
    font-size: 1.3em;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-yellow);
}

.footer-section .social-icons a {
    font-size: 1.5em;
    margin-right: 15px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-section .social-icons a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85em;
    opacity: 0.7;
}

.footer-logo {
    height: 100px;
    margin-bottom: 15px;
}

/* ================================================= */
/* MEDIA QUERIES PARA EL FOOTER (RESPONSIVO)        */
/* ================================================= */

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
        min-width: 100%;
    }
}

footer a {
  color: #9e9e9e; /* Un color gris claro, puedes cambiarlo por el que quieras */
  text-decoration: none; /* Quita el subrayado */
}

footer a:hover {
  color: #ffffff; /* El enlace se vuelve blanco al pasar el mouse */
}