:root {
    --primary-color: #ff3131;
    --secondary-color: #c98361;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-color: #333;
}

/* Modulo Services*/
.services-section {
    padding: 3rem 0;
    background-color: var(--light-color);
}
.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 1.5rem 0;
    text-align: center;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.card-text {
    text-align: center;
}
/* Modulo Services*/

/*RESPONSIVO*/
/* Responsive para Modulo Services */
@media (max-width: 1399.98px) {
    /* Pantallas extra grandes (xl) */
    .services-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 1199.98px) {
    /* Pantallas grandes (lg) */
    .services-section {
        padding: 2rem 0;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    /* Pantallas medianas (md) */
    .services-section {
        padding: 1.75rem 0;
    }
    
    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .card-icon {
        font-size: 2.5rem;
        margin: 1.25rem 0;
    }
}

@media (max-width: 767.98px) {
    /* Pantallas pequeñas (sm) */
    .services-section {
        padding: 1.5rem 0;
    }
    
    .service-card {
        margin-bottom: 1.25rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    /* Pantallas extra pequeñas (xs) */
    .services-section {
        padding: 1.25rem 0;
    }
    
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .service-card {
        margin-bottom: 1rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .card-icon {
        font-size: 2.25rem;
        margin: 1rem 0;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .card-text {
        font-size: 0.85rem;
    }
}