/* ==========================================================================
   FOOTER DAZEL FLORALS
   ========================================================================== */

.hs-footer {
    background-color: #FAF9F6;
    width: 100%;
    position: relative; /* Clave para el logo flotante */
    overflow: hidden;
}

/* --- PARTE SUPERIOR --- */
.hs-footer-top {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hs-footer-logo {
    width: 364px;
    height: auto;
    display: block;
    margin-bottom: 30px;
}

/* Lista de Información */
.hs-footer-info {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    font-family: 'General Sans', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 2;
}

.hs-footer-info li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hs-footer-info li span {
    font-size: 12px;
}

/* Redes Sociales con Círculos */
.hs-footer-socials {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hs-social-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    transition: all 0.3s ease;
}

.hs-social-circle svg {
    width: 18px;
    height: 18px;
}

.hs-social-circle:hover {
    background-color: #000;
    color: #FFF;
}

/* Copyright */
.hs-footer-copyright {
    font-family: 'General Sans', sans-serif;
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

/* --- ENLACES (COLUMNA DERECHA) --- */
.hs-footer-right {
    padding-top: 20px;
}

.hs-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hs-footer-links a {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.hs-footer-links a:hover {
    opacity: 0.6;
}

/* --- PARTE INFERIOR FOTOGRÁFICA --- */
.hs-footer-bottom {
    width: 100%;
    height: 350px;
    background-image: url('../../img/footer-bg.webp');
    background-size: cover;
    background-position: center;
}

/* --- LOGO GIRATORIO FLOTANTE (MODO DIAGNÓSTICO) --- */
/* --- LOGO GIRATORIO FLOTANTE (FIX DE COLOR BLANCO Y MULTIPLY) --- */
.hs-footer-badge {
    position: absolute;
    right: 10%;
    bottom: 230px; 
    width: 240px;
    height: 240px;
    pointer-events: none; 
    z-index: 10;
    
    /* 1. LA MAGIA: Convertimos tu imagen blanca a negra puro */
    filter: invert(100%); 
    
    /* 2. EL EFECTO: Ahora que es negra, la fusionamos con los fondos */
    mix-blend-mode: multiply !important; 
}
.hs-spin-text {
    width: 100%;
    height: 100%;
    animation: hs-spin 15s linear infinite;
    display: block;
}

.hs-static-d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: auto;
}

@keyframes hs-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =========================================
   MOBILE VIEW EXACTA A LA IMAGEN (< 1024px)
   ========================================= */
@media (max-width: 1023px) {
    .hs-footer-top {
        display: flex;
        flex-direction: column;
        padding: 60px 20px 40px 20px;
    }
    
    /* Magia para reordenar elementos libremente aunque estén en distintos divs */
    .hs-footer-left,
    .hs-footer-right {
        display: contents; 
    }
    
    .hs-footer-logo {
        order: 1;
        width: 100%;
        max-width: 280px;
        margin-bottom: 30px;
    }
    
    .hs-footer-info {
        order: 2;
        margin-bottom: 40px;
    }
    
    .hs-footer-links {
        order: 3;
        width: 100%;
        column-gap: 20px;
        margin-bottom: 40px;
    }
    
    .hs-footer-copyright {
        order: 4;
        margin-top: 10px;
    }
    
    .hs-footer-bottom {
        height: 180px; /* Imagen más angosta en móvil */
    }
    
    .hs-footer-badge {
        width: 180px;
        height: 180px;
        right: -30px; /* Cortado en el borde derecho como en tu Figma */
        bottom: 90px; /* A la mitad de la foto móvil */
    }
}