/* Estilos generales */
footer {
    background: #1c1c1c;
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 16px;
}

/* Contenedor del footer */
.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

/* Secciones del footer */
.footer-section {
    margin: 15px;
    min-width: 250px;
}

/* Títulos */
.footer-section h3 {
    font-size: 18px;
    color: #e74c3c;
    margin-bottom: 10px;
}

/* Enlaces */
.footer-section a {
    color: #ffffff;
    text-decoration: none;
}

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

/* Íconos de redes sociales */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons img {
    width: 30px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Pie de página */
.footer-copy {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}
