body {
    padding-top: 180px;
    width: 100%;
    height: 100%;
    background-color: #D9D9D6;
    
}

h1 {
    color: #2D2926;
    margin-bottom: 120px;
    font-style: bold;
    text-align: center;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 60px 60px 60px;
}

.about-section h1 {
    text-align: center;
    margin: 40px;
    font-size: 3.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}

.about-left {
    text-align: center;
    /* Estilos para a coluna da esquerda */
}

/*.about-right { Estilos para a coluna da direita }*/

.about-h2 {
    font-size: 1.8rem;
    color: #2D2926;
    margin-bottom: 20px;
}

.about-p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #2D2926;
    text-align: justify;
}

/* Estilos para as imagens */
figure {
    display: flex;
    gap: 20px;
    margin: 40px 30px 50px 30px; /* Topo, Direita, Baixo, Esquerda */
    width: calc(100% - 60px); /* Ajusta a largura considerando as margens laterais */
}

figure img {
    width: 50%;
    height: auto;
    object-fit: cover;
    padding: 10px;
}


/* Responsividade para telas menores */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-section h1 {
        font-size: 2rem;
    }
    
    .about-h2 {
        font-size: 1.5rem;
    }
}




/* Responsividade */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-section h1 {
        font-size: 2rem;
    }
    
    .about-h2 {
        font-size: 1.5rem;
    }

    /* Ajuste responsivo para as imagens */
    figure {
        flex-direction: column;
        gap: 15px;
        margin: 30px 20px 40px 20px; /* Margens menores para mobile */
        width: calc(100% - 40px);
    }

    figure img {
        width: 100%;
        padding: 8px;
    }
}