

#carouselExample {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

#carouselExample .carousel-inner {
    width: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

#carouselExample .carousel-item {
    width: 100%;
    height: 100%;
    position: relative;
}

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

/* Overlay para mejorar la legibilidad */
#carouselExample .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5;
}

/* Contenedor para los textos */
#carouselExample .carousel-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 20px;
}

/* Estilos para el texto del carrusel */
#carouselExample .carousel-content-wrapper .carousel-text {
    font-family: 'Oswald', sans-serif !important;
    font-size: 3rem !important;
    font-weight: bold !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8) !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    letter-spacing: 8px !important;
}

#carouselExample .carousel-content-wrapper .carousel-description {
    font-family: 'Roboto', sans-serif !important;
    font-size: 2rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8) !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    letter-spacing: 1px !important;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    #carouselExample .carousel-inner {
        min-height: 400px;
    }
    
    #carouselExample .carousel-content-wrapper .carousel-text {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
        letter-spacing: 1px !important;
    }
    
    #carouselExample .carousel-content-wrapper .carousel-description {
        font-size: 1.5rem !important;
        letter-spacing: 0.5px !important;
    }
}

/* Controles del carrusel */
#carouselExample .carousel-control-prev,
#carouselExample .carousel-control-next {
    width: 5%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 15;
    cursor: pointer;
}

#carouselExample .carousel-control-prev:hover,
#carouselExample .carousel-control-next:hover {
    opacity: 1;
}

#carouselExample .carousel-control-prev-icon,
#carouselExample .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

/* Indicadores */
#carouselExample .carousel-indicators {
    bottom: 20px;
    z-index: 15;
}

#carouselExample .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
}

#carouselExample .carousel-indicators li.active {
    background-color: #ffffff;
} 

/*Estilos para las tarjetas de servicios */
.card{
	margin-bottom:20px;
	transition:transform 0.3s ease;
	border: none;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);	
}

.card:hover{
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	
}
.card-img-top {
height: 200px;
object-fit:cover;
border-radius: 0;	
}
.card-body{
	padding: 1rem;
	text-align:center;
	
}

.card-title{
	font-family: 'Oswald', sans-serif;
	font-size: 1.2rem;
	font-weight: 500;
	margin: 0;
	white-space: nowrap;
	overflow:hidden;
	text-overflow: ellipsis;
	text-align:center;
	color:#333;
}

/*ajustes repositivos para las tarjetas */
@media(max-width: 768px){
	.card-title{
		font-size : 1rem;´
	}
}


