.consultas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center; /* CENTRA LAS TARJETAS */
}

.consulta-card {
    width: 220px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: #333;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.consulta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

.consulta-icon {
    background: linear-gradient(307deg, rgb(82, 84, 91), rgb(115, 118, 128));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
}

.consulta-icon img {
    width: 60px;
    height: 60px;
    filter: invert(1) brightness(200) !important; /* 🔥 ICONOS BLANCOS SÍ O SÍ */
}

.consulta-body {
    overflow: visible !important;
    display: block;
    padding: 15px;
    text-align: center;
    background: #fff;
}

.consulta-body h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.consulta-body p {
    margin-top: 3px;
    color: #777;
    font-size: 0.9rem;
    white-space: normal;       /* Permite saltos normales */
    overflow-wrap: break-word; /* Rompe palabras largas */
    word-break: break-word;    /* Obliga a romper si es necesario */
}
