/* ====== TÍTULO ====== */
.titulo-servicios {
    font-weight: 700;
    margin: 16px 0 20px;
    color: #fd0d8d;
}

/* ====== ACCORDION ====== */
.accordion-publico .accordion-item {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
}

.servicio-titulo {
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #ffe5f3 0%, #ffd9ed 100%);
    color: #fd0d8d;
    border: none;
}

.servicio-titulo:hover {
    background: linear-gradient(135deg, #ffd9ed 0%, #ffcce6 100%);
}

.servicio-titulo:focus {
    box-shadow: none;
    background: linear-gradient(135deg, #ffd9ed 0%, #ffcce6 100%);
}

.servicio-titulo:not(.collapsed) {
    background: linear-gradient(135deg, #ffcce6 0%, #ffb3dd 100%);
    color: #e00c7d;
}

/* ====== COLUMNAS ====== */
.servicio-col {
    display: flex;
}

/* ====== CARD ====== */
.servicio-card {
    width: 100%;
    border-radius: 16px;
    border: 2px solid #ffe5f3;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(253, 13, 141, 0.1);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.servicio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(253, 13, 141, 0.15);
    border-color: #fd0d8d;
}

/* ====== IMAGEN ====== */
.servicio-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* ====== CUERPO ====== */
.servicio-body {
    padding: 12px;
    text-align: center;
    flex-grow: 1;
    background: #fffbfd;
}

.servicio-nombre {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #5a2747;
}

.servicio-desc {
    font-size: .8rem;
    color: #8d7189;
    line-height: 1.2;
    margin-bottom: 8px;
}

/* ====== PRECIO ====== */
.servicio-precio {
    display: inline-block;
    background: linear-gradient(135deg, #fd0d8d 0%, #e00c7d 100%);
    color: #ffffff;
    font-size: .85rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(253, 13, 141, 0.3);
}

/* ====== BODY DEL ACCORDION ====== */
.accordion-publico .accordion-body {
    background: linear-gradient(180deg, #fff9fd 0%, #ffffff 100%);
    padding: 16px;
}

/* ====== MOBILE ====== */
@media (max-width: 576px) {
    .servicio-img {
        height: 130px;
    }

    .servicio-desc {
        display: none;
    }
}

/* ====== TABLET+ ====== */
@media (min-width: 768px) {
    .servicio-img {
        height: 180px;
    }

    .servicio-desc {
        display: block;
    }
}