/**
 * 🔨 Estilos del Footer
 * Estilos para el footer fijo con logo
 */

/* Footer full-width con fondo negro */
.full-width-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #000000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1; /* Por debajo del botón de privacidad */
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.footer-copyright {
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    letter-spacing: 0.3px;
    opacity: 1 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-logo {
        height: 45px;
    }
    
    .footer-copyright {
        font-size: 11px;
        color: #ffffff !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    .full-width-footer {
        height: 80px;
    }
    
    .footer-content {
        gap: 6px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-copyright {
        font-size: 10px;
        padding: 0 15px;
        color: #ffffff !important;
        opacity: 1 !important;
    }
}


