body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    height: 100vh;
    color: white;
  }
  
  .carrossel-container {
    width: 1500px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  
  .carrossel {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carrossel img {
    width: 100%;
    flex-shrink: 0;
    height: 700px;
    object-fit: cover;
  }
  
  .legenda {
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 16px;
    font-size: 1.6rem; /* Aumentei o texto */
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  
  .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 8px 16px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
  }
  
  .btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  .anterior {
    left: 10px;
  }
  
  .proximo {
    right: 10px;
  }
  
  h1 {
    font-size: 40px;
  }
  