body {
    margin: 0;
    padding: 0;
    background-color: #c2a7e0;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    position: relative;
    width: 600px;
    max-width: 90vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 80px; /* espaço para o título */
  }
  
  
  .slide-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
  }
  
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  #descricao {
    margin-top: 8px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    text-align: center;
  }
  
  button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background-color: rgba(114, 81, 127, 0.5);
    color: rgb(95, 16, 164);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    border-radius: 50%;
  }
  
  #prev {
    left: -40px;
  }
  
  #next {
    right: -40px;
  }
  
  #titulo-fixo {
    position: absolute;
    top: -60px;
    width: 100%;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
  }
  