/* Contenedor del footer */
#zd-footer {
    background-color: #0f1724; /* oscuro */
    color: #f3f4f6;
    padding: 40px 20px;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Contenido centrado y responsive */
#zd-footer-container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

/* Desktop: dos columnas */
@media (min-width: 768px) {
    #zd-footer-container{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

/* Izquierda: título y enlaces */
#zd-footer-left h2 {
    font-size: 1.25rem;
    margin: 0 0 6px 0;
}

#zd-footer-left p {
    margin: 0;
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Enlaces legales: sin subrayado ni color azul */
#zd-footer-links {
    margin-top: 10px;
}

#zd-footer-links a {
    margin: 0 8px;
    color: #d1d5db;
    text-decoration: none;          /* elimina subrayado */
    font-size: 0.95rem;
    transition: color 0.18s ease, transform 0.12s ease;
}

#zd-footer-links a:hover,
#zd-footer-links a:focus {
    color: #ffffff;
    transform: translateY(-2px);
    outline: none;
}

/* Derecha: iconos bien visibles */
#zd-footer-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Anchor contenedor para icono: cuadrado con padding (mejora click area) */
#zd-footer-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: transparent;
    color: #d1d5db;               /* color por defecto */
    text-decoration: none;
    transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
    box-shadow: none;
}

/* Icono en sí (tamaño) */
#zd-footer-right a i {
    font-size: 26px;              /* tamaño grande del icono */
    line-height: 1;
}

/* Hover general: ligera elevación */
#zd-footer-right a:hover,
#zd-footer-right a:focus {
    transform: translateY(-4px);
    outline: none;
}

/* Colores por red (hover) y fondo sutil para destacar */
#zd-footer-right a[data-network="instagram"]:hover { color: #E1306C; background: rgba(225,48,108,0.06); }
#zd-footer-right a[data-network="tiktok"]:hover    { color: #000000; background: rgba(0,0,0,0.06); }
#zd-footer-right a[data-network="whatsapp"]:hover  { color: #25D366; background: rgba(37,211,102,0.06); }
#zd-footer-right a[data-network="facebook"]:hover  { color: #1877F2; background: rgba(24,119,242,0.06); }
#zd-footer-right a[data-network="x"]:hover         { color: #1DA1F2; background: rgba(29,161,242,0.06); }

/* Asegura que los enlaces no muestren color de enlace por defecto (visited, active) */
#zd-footer a:visited { color: inherit; }
#zd-footer a:active  { color: inherit; }
