/* ===== FOOTER DEFINITIVO - SIEMPRE OSCURO ===== */
/* Este footer mantiene el mismo diseño oscuro independientemente del tema */

.kremora-footer {
    background: #1a2332;
    color: #ffffff;
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
    width: 100%;
}

/* Asegurar que el footer siempre sea oscuro, incluso en light mode */
[data-theme="light"] .kremora-footer,
[data-theme="dark"] .kremora-footer {
    background: #1a2332;
    color: #ffffff;
}

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

.kremora-footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Columna de Branding */
.kremora-footer .footer-brand-column {
    max-width: 350px;
}

.kremora-footer .footer-logo {
    margin-bottom: 1.5rem;
}

.kremora-footer .footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
}

.kremora-footer .footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Redes Sociales */
.kremora-footer .footer-social {
    display: flex;
    gap: 1rem;
}

.kremora-footer .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.kremora-footer .social-icon:hover {
    background: #07f59f;
    color: #1a2332;
    transform: translateY(-3px);
}

/* Columnas de Links */
.kremora-footer .footer-column {
    /* Estilos base para columnas */
}

.kremora-footer .footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.kremora-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kremora-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.kremora-footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.kremora-footer .footer-links a:hover {
    color: #07f59f;
    padding-left: 5px;
}

/* Footer Bottom */
.kremora-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.kremora-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .kremora-footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .kremora-footer .footer-brand-column {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

    .kremora-footer .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .kremora-footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }

    .kremora-footer .container {
        padding: 0 1.5rem;
    }

    .kremora-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .kremora-footer .footer-brand-column {
        text-align: center;
    }

    .kremora-footer .footer-column {
        text-align: center;
    }

    .kremora-footer .footer-links a:hover {
        padding-left: 0;
    }

    .kremora-footer .footer-social {
        justify-content: center;
    }
}

/* Asegurar que los estilos del footer no sean sobrescritos por otros estilos */
.kremora-footer * {
    box-sizing: border-box;
}

