    .horizontal-carousel-sections {
      margin: 20px auto;
      padding: 20px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      max-width: 1458px;
      position: relative;
      margin-top: 620px;
    }

    .carousel-titles {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .horizontal-carousel-wrappers {
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .horizontal-carousels {
      display: flex;
      gap: 10px;
      transition: transform 0.5s ease;
      flex-wrap: nowrap;
      width: max-content;
    }

    .horizontal-carousels img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }

    /* Hover efecto */
    .horizontal-carousels img:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    /* Flechas */
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      font-size: 24px;
      border-radius: 50%;
      z-index: 2;
      transition: opacity 0.3s;
    }

    .carousel-arrow.lefts { left: 10px; }
    .carousel-arrow.rights { right: 10px; }

    .carousel-arrow:hover {
      background-color: rgba(0,0,0,0.8);
    }

    /* Flechas deshabilitadas */
    .carousel-arrow.disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }