body {
    background-color: #a00101;
    text-align: center;
    padding: 70px;
    margin: 0;
  }
  
  header {
    margin-bottom: 40px;
  }
  
  h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 70px;
    color: #ffffff;
    letter-spacing: 1px;
  }
  
  .card {
    background-color: #b30000;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    max-width: 50%;
    margin: auto;
  }
  
  .carrossel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    padding: 0;
  }
  
  .carrossel-externo {
    position: relative;
    overflow: hidden;
    width: 500px;
    height: 900px;
    border-radius: 12px;
  }
  
  .carrossel {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
  }
  
  .carrossel img {
    width: 500px;
    height: 900px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 12px;
  }
  
  /* Texto sobre a imagem */
  .info-overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }
  
  .info {
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    color: white;
    margin: 5px 0;
    text-align: left;
  }
  
  /* Bolinhas */
  .indicadores {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .indicadores .bolinha {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.4;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  
  .indicadores .ativa {
    opacity: 1;
    background-color: white;
  }
  
  /* Setas */
  button.btn-anterior,
  button.btn-proxima {
    font-size: 40px;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button.btn-anterior:hover,
  button.btn-proxima:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  