/* footer.css - Pie de página con estilo marino elegante */

.site-footer {
    background: linear-gradient(135deg, #001f3f, #006994, #00b8a9);
    background-size: 400% 400%;
    animation: oceanGradient 15s ease infinite;
    color: #e0f7fa;
    padding: 50px 0;
    font-family: 'Segoe UI', sans-serif;
    border-top: 4px solid #00f2fe;
}

@keyframes oceanGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

/* Menú elegante en tonos claros */
.footer-menu {
    margin-bottom: 25px;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-menu-list li {
    position: relative;
}

.footer-menu-list a {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-menu-list a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #00f2fe;
    box-shadow: 0 2px 8px rgba(0, 255, 255, 0.2);
}

/* Información adicional */
.footer-info {
    font-size: 14px;
    color: #cceeff;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-menu-list {
        flex-direction: column;
        gap: 15px;
    }
}
