
    /* Fondo general */
    .footer-custom {
        position: relative;
        color: #f5ead0;
        padding: 80px 0 35px 0;
        background-image: url('/image/slade.png');
        background-size: cover;
        background-position: center;
    }

    /* Capa naranjada */
    .footer-overlay {
        position: absolute;
        inset: 0;
        background-color: rgba(164, 69, 22, 0.92);
        z-index: 1;
    }

    /* Contenido */
    .footer-content {
        z-index: 2;
        position: relative;
    }

    /* Texto */
    .footer-text {
        letter-spacing: 1px;
        font-size: 1.05rem;
    }

    /* Derechos */
    .footer-rights {
        font-size: 14px;
        color: #f5ead0;
        letter-spacing: 1px;
    }

    /* Íconos Redes */
    .footer-icons .icon-link {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 52px;
        height: 52px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        margin: 0 12px;
        font-size: 1.4rem;
        color: white;
        transition: 0.3s ease;
        backdrop-filter: blur(3px);
    }

    .footer-icons .icon-link:hover {
        background: white;
        color: #a44516;
        transform: translateY(-4px);
    }

    /* WhatsApp flotante */
    .whatsapp-btn {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 65px;
        height: 65px;
        background: rgba(255, 255, 255, 0.17);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 2rem;
        backdrop-filter: blur(5px);
        z-index: 999;
        transition: 0.3s;
    }

    .whatsapp-btn:hover {
        background: white;
        color: #25D366;
        transform: scale(1.1);
    }

    /* Link Aviso de Privacidad */
.footer-rights a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Línea animada */
.footer-rights a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -3px;
    background: #ffffff;
    transition: width 0.3s ease;
}

/* Hover */
.footer-rights a:hover {
    color: #fff;
}

.footer-rights a:hover::after {
    width: 100%;
}

    /* Responsive */
    @media (max-width: 768px) {
        .footer-text {
            font-size: .95rem;
        }

        .icon-link {
            margin: 0 8px;
        }
    }

