/* Botones de redes — iconos SVG, estilo unificado en toda la app */
.zb-redes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.zb-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    line-height: 0;
    border: 2px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
        transform 0.2s ease,
        box-shadow 0.25s ease,
        filter 0.2s ease;
}

.zb-red:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow:
        0 10px 22px rgba(15, 23, 42, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    color: #fff;
}

.zb-red:focus-visible {
    outline: 2px solid var(--zb-teal-light, #5eead4);
    outline-offset: 3px;
}

.zb-red--md {
    width: 48px;
    height: 48px;
}

.zb-red--md .zb-red__svg {
    width: 24px;
    height: 24px;
}

.zb-red--lg {
    width: 56px;
    height: 56px;
}

.zb-red--lg .zb-red__svg {
    width: 28px;
    height: 28px;
}

.zb-red--facebook {
    background: linear-gradient(145deg, #2d88ff 0%, #1877f2 55%, #0d65d9 100%);
}

.zb-red--facebook:hover {
    filter: brightness(1.08);
}

.zb-red--instagram {
    background: linear-gradient(
        135deg,
        #f9ce34 0%,
        #ee2a7b 45%,
        #6228d7 100%
    );
}

.zb-red--instagram:hover {
    filter: brightness(1.06) saturate(1.1);
}

.zb-red--whatsapp {
    background: linear-gradient(145deg, #3ddb7a 0%, #25d366 50%, #1da851 100%);
}

.zb-red--whatsapp:hover {
    filter: brightness(1.08);
}

.zb-red--messenger {
    background: linear-gradient(145deg, #00b2ff 0%, #0084ff 55%, #006aff 100%);
}

.zb-red--telefono {
    background: linear-gradient(145deg, var(--zb-indigo, #4338ca) 0%, var(--zb-navy-mid, #312e81) 100%);
}

/* Pie de página */
.pie-redes .zb-redes,
.pie .zb-redes--pie {
    gap: 0.55rem 0.7rem;
}

/* Página contacto */
.contacto-red-fila {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contacto-red-fila .zb-redes--contacto {
    gap: 0.75rem;
}

.contacto-red-etiqueta {
    font-family: var(--zb-font, 'Segoe UI', system-ui, Arial, sans-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--zb-navy, #1e1b4b);
    text-decoration: none;
}

.contacto-red-etiqueta:hover {
    color: var(--zb-teal, #0d9488);
}

@media only screen and (max-width: 767px) {
    .zb-red--lg {
        width: 52px;
        height: 52px;
    }

    .zb-red--lg .zb-red__svg {
        width: 26px;
        height: 26px;
    }

    .contacto-red-etiqueta {
        font-size: 1rem;
    }
}
