.owl-carousel {
    width: 1554px;
    overflow: hidden;
}

.owl-carousel .item {
    width: 100%;
    /* Ajusta el ancho de los elementos del carrusel según sea necesario*/
}

/* Estilos para las flechas del carrusel */
.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.owl-prev:hover,
.owl-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}

/* Resto de estilos para el carrusel */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.owl-carousel .owl-nav button {
    background-color: transparent;
    color: #fff;
}

.owl-carousel .owl-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.owl-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
}

.titulo-tv {
    text-align: center;
    /*color: chocolate;*/
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: -2px;
    font-size: 1.1em;
}

.fondo-tv {
    background: rgba(226, 226, 226, 1);
    background: -moz-linear-gradient(top, rgba(226, 226, 226, 1) 0%, rgba(209, 209, 209, 1) 65%, rgba(219, 219, 219, 1) 65%, rgba(254, 254, 254, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(226, 226, 226, 1)), color-stop(65%, rgba(209, 209, 209, 1)), color-stop(65%, rgba(219, 219, 219, 1)), color-stop(100%, rgba(254, 254, 254, 1)));
    background: -webkit-linear-gradient(top, rgba(226, 226, 226, 1) 0%, rgba(209, 209, 209, 1) 65%, rgba(219, 219, 219, 1) 65%, rgba(254, 254, 254, 1) 100%);
    background: -o-linear-gradient(top, rgba(226, 226, 226, 1) 0%, rgba(209, 209, 209, 1) 65%, rgba(219, 219, 219, 1) 65%, rgba(254, 254, 254, 1) 100%);
    background: -ms-linear-gradient(top, rgba(226, 226, 226, 1) 0%, rgba(209, 209, 209, 1) 65%, rgba(219, 219, 219, 1) 65%, rgba(254, 254, 254, 1) 100%);
    background: linear-gradient(to bottom, rgba(226, 226, 226, 1) 0%, rgba(209, 209, 209, 1) 65%, rgba(219, 219, 219, 1) 65%, rgba(254, 254, 254, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e2e2e2', endColorstr='#fefefe', GradientType=0);

}