.main {
    width: 100%;
    background-image: linear-gradient(#ffffff, #f3e1b6);
    background-size: 100%;
    padding-bottom: 20px;
}

.conteudo {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
    padding-top: 10px;
}

.sobre {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: justify;
    margin-top: 50px;
    width: 50%;
}

p{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    justify-content: center;
}

.sobre p{
    margin-bottom: 5rem;
}

.sobre h2 {
    color: #1d5e69;
    margin-bottom: 3%;
}


.img-s {
    margin-top: 50px;
    width: 30%;
}

.localizacao {
    display: flex;
    flex-direction: column;
}

.localizacao h1 {
    padding: 10px;
    align-self: center;
    /* backdrop-filter: blur(10px); */
    background-color: #ffffff;
    color: #1d5e69;
    border-radius: 20px;
}

.localizacao h3 {
    padding: 20px;
    align-self: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    /* backdrop-filter: blur(10px); */
    background-color: #ffffff;
    margin-top: 2rem;
    border-radius: 20px;
    color: #1d5e69;
}

.img-l {
    align-self: center;
    padding: 20px;
}

@media (max-width: 768px){
    .conteudo{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: auto;
    }
    
    .sobre{
        width: 80%;    
    }

    .img-s{
        width: fit-content;
    }

    .img-l{
        width: 80%;
    }

    .img-l img{
        width: 100%;
    }
}