/* código creado por Rick Martínez */

.nav-space {
    height: 30px; /* Ajusta este valor según la altura de tu navbar */
}

.tittle-serv {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 2px 3px 5px rgb(0, 0, 0);
}

.seccion-servicio {
    background-color: #9E9E9E;
    padding: 60px 40px;
    text-align: justify;
    color: #ffffff;
    text-shadow: 2px 3px 5px rgba(0, 0, 0);
}

.servicio-content {
    display: flex;
    padding: 20px 0;
    gap: 40px;
    align-items: flex-start; /* Alinea al inicio */
}

/* Estilos del carrusel */
.carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 46vh;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%); /* Empieza fuera por la derecha */
    transition: transform 0.6s ease-out, opacity 0.6s ease;
    pointer-events: none; /* ← AGREGA ESTO */
}

.carousel-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto; /* ← AGREGA ESTO */
}

.carousel-item.prev {
    transform: translateX(-100%); /* Sale por la izquierda */
    opacity: 0;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
}

/* Controles del carrusel */
.carousel-control {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    background: rgba(216, 112, 0, 0.7);
    border: 2px solid #00000070;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background: rgba(216, 112, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgb(0, 0, 0);
    background: #ffffffab;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 6px rgba(0, 0, 0);
}

.indicator:hover {
    background: #d87000;
    transform: translateY(-2px);
    box-shadow: 0px 2px 6px rgba(216, 112, 0);
    border-color: #d87000;
}

.indicator.active {
    transform: translateY(-2px);
    background: #d87000;
    box-shadow: 0px 2px 6px rgba(216, 112, 0);
    border-color: #d87000;
}

.presentacion {
    flex: 1; /* Ocupa el espacio disponible */
    min-width: 0; /* Importante para que el texto no desborde */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-undcns {
    flex: 1; /* Ocupa el mismo espacio que el texto */
    min-width: 0;
    display: flex;
    justify-content: center; /* Centra la imagen */
    align-items: flex-start;
}

.img-undcns img{
    max-height: 400px;
    border-radius: 10px;
}

.img-srvs {
    flex: 1; /* Ocupa el mismo espacio que el texto */
    min-width: 0;
    display: flex;
    justify-content: center; /* Centra la imagen */
    align-items: flex-start;
}

.img-srvs img {
    max-width: 100%;
    border-radius: 10px;
}

.servi-back {
    text-align: center;
    width: 100%;
}

.serv-back {
    display: inline-block;
    margin-top: 30px;
    text-shadow: none;
    padding: 10px 20px;
    background-color: #d87000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.serv-back:hover {
    background-color: #b05a00;
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .nav-space {
        height: 60px; /* Ajusta este valor según la altura de tu navbar */
    }

    .tittle-serv {
        margin-bottom: 0px;
    }

    .servicio-content {
        flex-direction: column; /* Apila en móviles */
        gap: 20px;
    }

    .seccion-servicio {
        padding: 30px 35px;
    }
    
    .presentacion {
        padding-bottom: 0px;
    }

    .presentacion,
    .img-srvs {
        flex: none;
        width: 100%;
    }

    .img-undcns {
        flex: none;
        width: 100%;
    }

    .img-srvs img {
        max-height: 100%;
    }

    .img-undcns img {
        max-height: 250px;
    }

    .carousel {
        max-width: 100%;
    }
    
    .carousel-inner {
        height: 300px;
    }
    
    .carousel-control {
        top: 85%;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .servi-back {
        padding-top: 0px;
        margin-top: 0px;
    }

}

/* Versión2.0 Rick Martínez */