.servicios-section {
    padding: 5rem 0;
}

.servicios-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

/* Card */
.servicio-card {
    border: 1px solid #e0e0e0;
    background-color: #f6f6f6;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Header */
.servicio-header {
    background-color: #000;
    color: #fff;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

/* Flecha */
.servicio-arrow {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.servicio-header.collapsed .servicio-arrow {
    transform: rotate(-90deg);
}

/* Body */
.servicio-body {
    padding: 1.5rem;
    background-color: #f6f6f6;
}

/* Items */
.servicio-item {
    background-color: #fff;
    border: 1px solid #f0cfcf;
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
}

.servicio-item:last-child {
    margin-bottom: 0;
}

.servicio-item:hover {
    background-color: #faf3f3;
}

@media (max-width: 991px) {
    .servicio-card {
        margin-bottom: 1.5rem;
    }
}


