

/* Iconos laterales */
.chip-icons{
    display:flex;
    gap:10px;
}

/* Iconos NEGROS, con cajita clara para que contraste contra el azul */
.chip-icons i{
    font-size:18px;
    color: #0b1220; /* negro suave */
    background: rgba(255,255,255,.70);
    width: 34px;
    height: 34px;
    border-radius: 10px;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow: 0 8px 16px rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.35);
    transition: transform .2s ease, background .2s ease;
}

.chip-icons i:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.85);
}



/* Título: oscuro (porque el chip es claro) */
.chip-title{
    color:#0b1220; /* negro suave */
    font-weight: 900;
    /* Tamaño responsivo (chico en móvil, grande en desktop) */
    font-size: clamp(14px, 1.4vw, 18px);
    letter-spacing: .6px;
    line-height: 1.1;
    text-wrap: balance; 
}

/* (Por si luego vuelves a usar subtítulo) */
.chip-subtitle{
    color: rgba(11, 18, 32, .80);
    font-weight: 700;
    font-size: clamp(11px, 1vw, 13px);
    margin-top: 4px;
}
