/* styles.css */
.apresentacao-titulo{
    margin-top: 2rem;
    font-family: "Poppins", sans-serif;
    padding: 0;
    text-align: center;
}

.apresentacao{
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.apresentacao-p{
    max-width: 37.5rem;
    word-wrap: break-word; /* Garante que palavras longas quebrem, se necessário */
}
.corpo {
    font-family: "Poppins", sans-serif;
    /*margin: 2rem;*/
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100vh;
    opacity: 0;
    transform: translateX(3.125rem);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

  .corpo.show {
    opacity: 1;
    transform: translateX(0);
  }

  .hidden {
    display: none;
  }

.container {
    display: flex;
    max-width: 75rem;
    background-color: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    max-height: 650px;
}

.image-container {
    flex: 1;
    width: 300px;
    height: 800px;
    overflow: hidden;
}

.image {
    margin-top: 30%;
    width: 100%;
    height: 55%;
    object-fit: cover;
    border-radius: 0rem 12.5rem 0rem 12.5rem;
}

.content {
    flex: 1;
    display: flex;
    margin-top: 70px;
    margin-left: 50px;
    margin-right: 50px;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
}

/*p {
    margin: 0.625rem 0;
}*/

ul {
    margin: 10px 0;
    padding-left: 20px;
}