/* Estilos personalizados que tienen prioridad */

/* Footer con texto claro para mejor legibilidad */
.footer {
    margin-top: 48px;
    padding: 32px 20px;
    background: #1e293b;
    color: #ffffff !important;
    border-radius: 12px;
    text-align: center;
}

.footer-content {
    max-width: 640px;
    margin: 0 auto;
}

.footer h3 {
    color: #ffffff !important;
    margin-bottom: 16px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer p {
    color: #ffffff !important;
    margin: 10px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer a {
    color: #93c5fd !important;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #dbeafe !important;
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #e5e7eb !important;
}

@media (max-width: 700px) {
    .footer {
        padding: 24px 12px;
    }
    
    .footer h3 {
        font-size: 1.15rem;
    }
}
