/* ===============================
   FOOTER SIEMPRE ELLA
================================ */

.footer-se,
.footer-se * {
    box-sizing: border-box;
}

.footer-se {
    width: 100%;
    margin-top: 90px;
    padding: 70px 1rem 55px;
    background: linear-gradient(135deg, #5f4029, #7b5a3e);
    color: #fffaf5 !important;
    position: relative;
    overflow: hidden;
}

.footer-se::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgba(254, 183, 147, 0.16);
    border-radius: 50%;
}

.footer-se::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -90px;
    width: 240px;
    height: 240px;
    background: rgba(245, 214, 127, 0.12);
    border-radius: 50%;
}

.footer-se-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-se-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.footer-se-info {
    max-width: 650px;
}

.footer-se-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    margin-bottom: 1.4rem;
}

.footer-se-logo {
    width: 300px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

/* TEXTO PRINCIPAL */
.footer-se .footer-se-text {
    color: #fffaf5 !important;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0 0 1.2rem;
    opacity: 1 !important;
    visibility: visible !important;
}

/* CONTACTO */
.footer-se-contacto {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1rem;
}

.footer-se .footer-se-contacto p {
    margin: 0;
    color: #fffaf5 !important;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 1 !important;
    visibility: visible !important;
}

.footer-se-contacto i {
    color: #feb793 !important;
    width: 18px;
    text-align: center;
}

/* REDES */
.footer-se-redes {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.6rem;
}

.footer-se-social {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    background: rgba(255, 250, 245, 0.12);
    color: #fffaf5 !important;
    border: 1px solid rgba(255, 250, 245, 0.18);
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.footer-se-social i {
    color: #fffaf5 !important;
}

.footer-se-social:hover {
    background: linear-gradient(135deg, #feb793, #c98952);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

/* SERVICIOS */
.footer-se-servicios {
    background: rgba(255, 250, 245, 0.10);
    border: 1px solid rgba(255, 250, 245, 0.18);
    border-radius: 22px;
    padding: 1.6rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.footer-se .footer-se-title {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 1.2rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.footer-se-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-se .footer-se-links a {
    color: #fffaf5 !important;
    text-decoration: none !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all 0.22s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.footer-se-links a i {
    color: #feb793 !important;
}

.footer-se-links a:hover {
    color: #f5d67f !important;
    transform: translateX(4px);
}

/* ===============================
   BARRA INFERIOR
================================ */

.footer-se-bottom {
    width: 100%;
    background: #4f3827;
    color: #fffaf5 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem;
}

.footer-se-bottom-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-se-bottom p {
    margin: 0;
    color: #fffaf5 !important;
    font-size: 0.92rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.footer-se-bottom a {
    color: #feb793 !important;
    text-decoration: none !important;
    font-weight: 800;
}

.footer-se-bottom a:hover {
    color: #f5d67f !important;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .footer-se-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-se-info {
        max-width: 100%;
        text-align: center;
    }

    .footer-se-logo-link {
        justify-content: center;
        width: 100%;
    }

    .footer-se-contacto p {
        justify-content: center;
    }

    .footer-se-redes {
        justify-content: center;
    }

    .footer-se-servicios {
        max-width: 520px;
        margin: 0 auto;
        text-align: center;
    }

    .footer-se-links a {
        justify-content: center;
    }

    .footer-se-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-se {
        margin-top: 60px;
        padding: 55px 1rem 45px;
    }

    .footer-se-logo {
        width: 240px;
    }

    .footer-se-title {
        font-size: 0.95rem;
    }

    .footer-se-text,
    .footer-se-contacto p,
    .footer-se-links a,
    .footer-se-bottom p {
        font-size: 0.88rem;
    }
}

@media (max-width: 420px) {
    .footer-se-logo {
        width: 210px;
    }

    .footer-se-servicios {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .footer-se-social {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
}