/* Footer */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 2vw 0;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-left img {
    width: 200px;
    margin-bottom: 15px;
}

.footer-left,
.footer-center,
.footer-right {
    width: 30%;
    min-width: 250px;
    text-align: left;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 5px;
}

ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center; /* Centra el texto horizontalmente */
    padding: 10px 0; /* Añade espacio arriba y abajo */
    background-color: #343a40; /* Fondo oscuro para el footer */
    color: white; /* Texto en color blanco */
    font-size: 14px; /* Tamaño de fuente ajustado */
}

/* 📌 MEDIA QUERIES PARA RESPONSIVE */

/* Para pantallas menores a 480px (celulares pequeños) */
@media (max-width: 480px) {
    .footer-container {
        flex-direction: column; /* 🔹 Apila los elementos en móviles */
        align-items: center; /* 🔹 Centra horizontalmente */
        text-align: center; /* 🔹 Asegura que el texto también esté centrado */
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        text-align: center;
    }
}
