/* Estilos específicos para a página Sobre */
.sobre-container {
    margin: 20px auto;
    padding: 40px;
    background-color: #fff;
    width: 80%;
}

.sobre-container h1 {
    font-size: 2.5rem;
    color: #333;
}

.main-content .center-text {
    margin-bottom: 80px;
    margin-top: 100px;
}

.about-container p {
    margin-bottom: 80px;
}

.about-content {
    width: 100%;
    display: flex;
    margin-bottom: 40px;
    gap: 40px;
}

.about-content img {
    width: 50%;
}

.about-content p {
    font-family: "Newsreader", "Newsreader Placeholder", serif;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 20px;
    color: rgb(163, 163, 163);
    text-transform: none;
    text-align: left;
    text-transform: none;
    align-self: center;
}

@layer demo {    
    @media (prefers-reduced-motion: no-preference) {
      .index-images figure {
        height: 110.5vh;
      }
    }
  }
  
  @layer demo.support {
    .index-images {
        height: 125vh;
    }
    
    /* Define largura máxima para as imagens */
    .about-images img {
        max-inline-size: 100%;
    }    
}

.seeAllBtn-container {
    margin-top: 300px;
}

@media (max-width: 900px) {
    .about-content {
        flex-flow: wrap;
    }

    .about-content img {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .main-content .center-text {
        height: 35vh;
    }
}

