* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f2f2f2;
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }

    p, li, h2, h3{
    animation: text 2s;
  }

  @keyframes text {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .topo {
    background-color: #002b45;
    color: white;
    padding: 30px 0;
    text-align: center;
  }
  
  .voltar {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .voltar:hover {
    text-decoration: underline;
  }
  
  .descricao {
    padding: 40px 20px;
    background-color: white;
  }
  
  .descricao h2 {
    color: #002b45;
    margin-bottom: 15px;
  }
  
  .detalhes {
    list-style: none;
    margin-top: 20px;
  }
  
  .detalhes li {
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  
  .carousel-track img {
    width: 100%;
    height: 500px;
    flex: 0 0 100%;
    object-fit: cover;
    border-radius: 16px;
  }
  
  /* Botões */
  .carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: rgb(0, 0, 0);
    font-size: 2rem;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    background-color: transparent;
  }
  
  .carousel button:hover {
    transform: translateY(-50%) scale(1.1);
  }
  
  .carousel .prev {
    left: 20px;
  }
  
  .carousel .next {
    right: 20px;
  }

  .rodape {
    background-color: #002b45;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
  }
  