/* ============================================
   FOOTER ULTRA SIMPLIFICADO
   ============================================ */

.site-footer {
    background: #007887;
    color: rgba(255, 255, 255, 0.8);
    padding: 18px 0;
    margin-top: 40px;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.footer-copy {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-copy strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 6px;
    font-size: 13px;
}

/* TODOS LOS ENLACES IGUALES */
.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-sep {
    color: rgba(255, 255, 255, 0.2);
}

/* Admin IGUAL que los demás (elimino el estilo especial) */
.footer-admin {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 13px !important;
}

.footer-admin:hover {
    color: #ffffff !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
    .site-footer {
        padding: 22px 0;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 15px;
    }
}

@media (max-width: 400px) {
    .site-footer {
        padding: 14px 0;
    }

    .footer-copy {
        font-size: 12px;
    }

    .footer-legal {
        font-size: 11px;
    }

    .footer-legal a {
        font-size: 11px;
    }
}