  /* Estilos del carrusel */
  .carrusel-carousel-container-v01 {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
  }
 
 .line-th1-mh {
    border-right: 2px solid #ccc; /* Línea vertical */
 }
 .line-th2-mh {
    border-right: 2px solid #ccc; /* Línea vertical */
 }
  .carrusel-timeline-v01 {
    height: 100%;
    flex: 0 0 auto; /* Tamaño fijo */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative; /* Ajuste de posición */
  }

.dot-th1{
    color:#feb000ff;
    background-color: #feb000ff; /* Color de referencia */
}
.dot-th2{
    color:#feb000ff;
    background-color: #feb000ff; /* Color de referencia */
}
  .carrusel-timeline-dot-v01 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    font-size: 0px;
    margin-bottom: 10px;
    position: absolute; /* Ajuste de posición */
    left: 101%; /* Ajuste de posición */
    transform: translateX(-50%); /* Ajuste de posición */
    line-height: 10px; /* Centrar número */
    text-align: center; /* Centrar número */
  }

  .carrusel-timeline-dot-v01.active {
    width: 20px;
    height: 20px;
    color: black;
    line-height: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
  }

  .carrusel-carousel-info-v01 {
    padding-left: 20px;
    flex: 1; /* Ocupa el espacio restante */
    display: flex;
    flex-direction: column;
    justify-content: center;
/*    align-items: center; */
  }

  .carrusel-carousel-info-v01 h3 {
    margin-top: 0;
    font-weight: 600;
    line-height: 1.1em;
  }

  .carrusel-carousel-info-v01 p {
    line-height: 1.1em;
    font-weight: 400;
  }

  .carrusel-carousel-image-v01 {
    flex: 0 0 auto; /* Tamaño fijo */
    max-width: 90%; /* Ancho máximo */
    position: relative;
    text-align: center;
  }

  .carrusel-carousel-image-v01 img {
    max-width: 100%; /* Imagen adaptable */
    border-radius: 8px;
/*    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);*/
  }

  .carrusel-carousel-nav-v01 {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .carrusel-carousel-nav-v01 button {
    background-color: #feb000ff; /* Color de referencia */
    color: black;
    border: none;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
  }

  .carrusel-carousel-nav-v01 button:focus {
    outline: none;
  }