.sobre-nos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 10%;
    padding-bottom: 50px;
    background-size: cover;
    background-position: center;   
}

.containerSobre {
    display: flex;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    gap: 40px;
}

.imagem-historia{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 50%;
    overflow: hidden;
}

.imagem-historia img{
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.texto-historia {
    width: 50%;
    padding: 20px 40px;
}

.extensao {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    padding: 0 1rem;
    text-align: justify;
}

.texto-historia h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: var(--red-velvet);
    font-weight: 500;
}

.texto-historia h2 {
    color: black;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

.texto-historia p{
    font-family: "League Spartan", sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: black;
    text-align: justify;
}


.fazendas {
    padding: 10px 20px;
    background-color: #fffaf7;
 
}

.titulo-decorado {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.titulo-decorado h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #551a1c;
    margin: 0 20px;
    white-space: nowrap;
}

.linha {
    height: 6px;
    background: none;
    border: none;
    position: relative;
    flex: 1;
    margin: 0 20px;
}

.linha::before,
.linha::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #aaa;
}

.linha::before {
    top: 0;
}

.linha::after {
    bottom: 0;
}

.galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.galeria figure {
    width: 240px;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.galeria img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.galeria figcaption {
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    background-color: #f9f7f6;
}
  


@media (max-width: 768px) {

    .sobre-nos{
        padding-bottom: 0;
    }

    .containerSobre {
        flex-direction: column; /* Muda para coluna */
        text-align: center; /* Centraliza o texto */
        gap: 10px;
    }

    .imagem-historia {
        width: 100%; /* Imagem ocupa toda a largura */
    }

    .imagem-historia img {
        width: 100%;
        height: 300px; /* Altura fixa para cortar a imagem */
        object-fit: cover; /* Garante que a imagem ocupe toda a área sem distorcer */
        border-radius: 0; /* Remove bordas arredondadas para tela cheia */
    }

    .texto-historia {
        width: 100%;
        padding: 20px;
    }

    .texto-historia h1 {
        font-size: 35px;
    }

    .texto-historia h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .texto-historia p {
        font-size: 16px;
    }

    .extensao{
        margin-top: 0;
        padding-top: 0;
    }
}

