/* SERVICIOS SECTION - CON IMÁGENES DE FONDO */
.servicios-section {
    padding: 100px 0;
    position: relative;
}

/*.servicios-background {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.98) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.servicios-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #3498db, #2ecc71);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}*/

/* Tarjetas de servicio con imágenes */
.service-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    height: 100%;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(60, 191, 231, 0.9) 0%,
        rgba(43, 150, 192, 0.85) 50%,
        rgba(60, 211, 231, 0.8) 100%
    );/*
    background: linear-gradient(135deg, 
        rgba(231, 76, 60, 0.9) 0%,
        rgba(192, 57, 43, 0.85) 50%,
        rgba(231, 76, 60, 0.8) 100%
    );*/
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
    transform: translateY(20px);
    transition: all 0.4s ease;
    opacity: 0.9;
}

.service-card:hover .service-content {
    transform: translateY(0);
    opacity: 1;
}

/* Iconos de servicio */
.service-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Títulos de servicio */
.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.05rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Lista de características */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    color: white;
    padding-left: 2.5rem;
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 0.7rem;
    color: #f1c40f;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-features li:hover i {
    transform: scale(1.2);
    color: #f39c12;
}

/* Efectos hover mejorados */
.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}


/* Responsive */
@media (max-width: 768px) {
    .servicios-section {
        padding: 60px 0;
    }
    
    .servicios-background {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        min-height: 500px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding-left: 1.8rem;
    }
    
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .servicios-background {
        padding: 30px 15px;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        min-height: 450px;
    }
    
    .service-features li {
        font-size: 0.85rem;
    }
}