/* ==========================================
   Servicios Section Styles
   ========================================== */

#servicios {
    background-color: #f8f9fa;
}

/* Card Clickable */
.card-clickable {
    cursor: pointer;
    transition: all var(--transition-normal);
}

.card-clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
}

/* Filter Buttons */
.btn-filter {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    margin: 0.25rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-filter:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-filter.active {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* Servicio Item */
.servicio-item {
    transition: all var(--transition-normal);
}

.servicio-item.hidden {
    display: none;
}

/* Servicios Detallados Section */
#servicios-detallados {
    background-color: #f8f9fa;
}

/* ===== ALINEAR BOTONES AL PIE DE LAS TARJETAS ===== */
#servicios-detallados .card {
    height: 100%;
}

#servicios-detallados .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#servicios-detallados .card-body > div.mt-3 {
    margin-top: auto !important;
}

/* ================================================== */

/* Botón Ver más detalles */
.text-primary-color.fw-bold {
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.text-primary-color.fw-bold:hover {
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 2px 8px rgba(0, 206, 209, 0.4);
}

.text-primary-color.fw-bold:hover i {
    transform: translateY(3px);
    animation: bounce 0.6s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}