.carouselrow h3 {
    font-weight: 700;
    font-size: 18px;
}

.carousel-prev,
.carousel-next {
    width: 100%;
    /* Ocupa todo el ancho de la columna */
    height: 100%;
    /* Ocupa todo el alto del contenedor (col-1) */
    display: flex;
    align-items: center;
    /* Centra el icono verticalmente */
    justify-content: center;
    /* Centra el icono horizontalmente */
    border-radius: 8px;
    /* Borde redondeado */
    background: #E1E1E0;
    /* Fondo gris */
    border: none;
    /* Sin borde inicial */
    cursor: pointer;
    /* Indicador de clic */
    transition: background 0.3s ease, transform 0.2s ease, border 0.3s ease;
    /* Transiciones suaves */
}

.carousel-prev i,
.carousel-next i {
    font-size: 24px;
    /* Tamaño del icono */
}

/* Hover y active para los botones */
.carousel-prev:hover,
.carousel-next:hover,
.carousel-prev:active,
.carousel-next:active {
    color: #fff;
    /* Fondo blanco */
    background: #e6007e;
    /* Borde rosa */
}

/* Estilos para las Tarjetas */

/* Pantallas grandes (>= 992px) */
@media (min-width: 992px) {
    .custom-prevnext {
        width: 70px;
    }
}

/* Pantallas medianas (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .custom-prevnext {
        width: 60px;
    }
}

/* Pantallas pequeñas (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .custom-prevnext {
        width: 40px;
    }
}

/* Pantallas extra pequeñas (< 576px) */
@media (max-width: 575px) {
    .custom-prevnext {
        width: 25px;
    }
}




.card {
    display: flex;
    flex-direction: row;
    border-radius: 8px;
    margin-right: 1px;
    /* Bordes redondeados */
    overflow: hidden;
    background-color: #fff;
    /* Fondo blanco */
}

.card img {
    max-width: 80px;
    /* Ajusta el ancho de la imagen */
    height: auto;
    /* Mantiene la proporción */
}



.ratings {
    color: #e6007e;
    /* Color rosa */
    margin-top: 10px;
    font-size: 16px;
    /* Ajusta el tamaño de las estrellas */
    display: flex;
    gap: 2px;
    /* Espaciado entre estrellas */
    justify-content: center;
}

.card-header {
    font-weight: bold;
    color: #e6007e;
    /* Color rosa */
    font-size: 18px;
    /* Tamaño del texto */
    margin-bottom: 5px;
    border-bottom: none !important;
}

.card-footer {
    border-top: none !important;
}

.card-header h4 {
    font-weight: 700;
    font-size: 18px;
}

.card-body div {
    background: transparent;
    padding: 0;
}


@media (max-width: 767px) {
    .card-body {
        padding: 5px;
    }
}

@media (min-width: 768px) {
    .card-body {
        padding: 10px;
    }
}

.card-body {
    font-size: 14px;
    /* Espaciado más cómodo */
    flex: 1;
    /* Expande para llenar el espacio restante */
    display: flex;
    flex-direction: column;
    text-align: justify;

}

.soluciones .card .superior {
    /*min-height: 125px;*/
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.card-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.card-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 100px;
}

.card-text {
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



/*=======================================
  .soluciones .card .card-title: responsive
=======================================*/

/* Pantallas grandes (>=1200px) */
.soluciones .card .card-title {
    font-size: 1.25rem;
    /* 20px */
}

/* Pantallas medianas (992px – 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .soluciones .card .card-title {
        font-size: 1.125rem;
        /* 18px */
    }
}

/* Tablets (768px – 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .soluciones .card .card-title {
        font-size: 1rem;
        /* 16px */
    }
}

/* Móviles grandes (576px – 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .soluciones .card .card-title {
        font-size: 1.3rem;
        /* 14px */
    }
}

/* Móviles pequeños (<576px) */
@media (max-width: 575px) {
    .soluciones .card .card-title {
        font-size: 0.75rem;
        /* 12px */
    }
}

@media (max-width: 991px) {
    .card-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }

    .card-center {
        align-items: center !important;
        margin-bottom: 1rem;
    }

    .card-body {
        /*align-items: center;*/
        text-align: center;
    }
}



.card-body a {
    color: #e6007e;
    /* Color del enlace */
    text-decoration: none;
    /* Sin subrayado */
    font-weight: bold;
}

.card-body a:hover {
    text-decoration: underline;
    /* Subrayado al pasar el cursor */
}

.card-body p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

/* Publicación y actualización */
.card-body strong {
    font-size: 13px;
    /* Resalta los textos en negrita */
    color: #000;
    /* Texto negro */
}

.card-description p {
    display: -webkit-box;
    display: box;
    /* para algunos motores antiguos */
    -webkit-line-clamp: 3;
    line-clamp: 3;
    /* versión estándar */
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*dots*/

/* Estilo básico para el contenedor de los dots */
.owl-dots {
    text-align: center;
    /* Centra los dots horizontalmente */
    margin-top: 15px;
    /* Añade espacio superior */
}

/* Estilo para los dots de Owl Carousel */
.owl-carousel button.owl-dot {
    width: 10px;
    height: 10px;
    background-color: white;
    border: 1px solid #e6007e;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.owl-carousel button.owl-dot.active {
    background-color: #e6007e;
    border: 1px solid #e6007e;
    transform: scale(1.2);
}

.owl-carousel button.owl-dot span {
    display: none;
}

/*ESTILOS CARRUSEL DE INFORMACIÓN*/



.info-list-carousel .item h3 {
    color: #FFF;
    font-family: Quicksand;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

.info-list-carousel .item ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1px;
    margin-top: 16px;
    padding: 0;
}

.info-list-carousel .item ul li {
    padding: 1px 0;
    display: flex;
    align-items: center;
    color: #FFF;
    font-family: Nunito Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;

}

.info-list-carousel .item ul li::before {
    content: "•";
    color: #FFF;
    font-weight: bold;
    margin-right: 10px;
}

.info-list-carousel .quote {
    color: #FFF;
    font-family: Nunito Sans;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 24px;
    text-align: right;
}

.info-list-carousel .author {
    color: #FFF;
    font-family: Nunito Sans;
    font-size: 10px;
    font-style: italic;
    font-weight: 400;
    line-height: 16px;
    text-align: right;
    margin-top: 8px;
}
