/* SECCIÓN SERVICIOS */
.services-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f0f4f8;
}

.text-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.086);
}

.services-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5em;
    text-align: center;
}

.services-description {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    text-align: justify;
    margin: 0 auto 1em;
    max-width: 800px;
}

/* Video */
.services-video {
    display: block;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: contain;
}

/* Carousel Multi-item */
#servicesCarousel .carousel-inner {
    padding: 0 10px;
}

#servicesCarousel .carousel-item {
    padding: 10px;
}

#servicesCarousel img {
    max-height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#servicesCarousel img:hover {
    transform: scale(1.05);
}

#servicesCarousel .carousel-indicators {
    display: none;
}

/* Modal */
#imageModal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

#imageModal img {
    max-height: 70vh;
    object-fit: contain;
}

.modal-caption {
    font-size: 1.1em;
    color: #333;
}