    h2 {
      margin: 30px 0 15px;
      margin-left: 60px;
    }

    /* Contenedor general */
    .carousele-wrapper {
      position: relative;
      overflow: hidden;
      background: #fff;
      padding: 20px 40px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      max-width: 1458px;
      margin: 20px auto;
    }

    /* Carrusel interno */
    .carousele {
      display: flex;
      gap: 10px;
      transition: transform 0.5s ease;
      width: max-content;
    }

    .carousele img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 6px;
      flex-shrink: 0;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .carousele img:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    /* Botones de navegación */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.6);
      border: none;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
      padding: 10px;
      border-radius: 50%;
      z-index: 2;
      transition: background 0.3s;
    }

    .arrow:hover {
      background: rgba(0,0,0,0.8);
    }

    .arrow.left { left: 10px; }
    .arrow.right { right: 10px; }

    .arrow:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }
