* {
      box-sizing: border-box;
    }

    body {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background: #111;
      margin: 0;
    }

    .carrosel {
      position: relative;
      width: 600px;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .carrosel-track {
      display: flex;
      transition: transform 0.5s ease;
      width: calc(600px * 3);
    }

    .carrosel-img {
      width: 600px;
      height: 350px;
      object-fit: cover;
    }

    button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.2);
      color: white;
      border: none;
      padding: 10px;
      font-size: 24px;
      cursor: pointer;
      z-index: 2;
    }

    #prev {
      left: 10px;
    }

    #next {
      right: 10px;
    }