/* css/sobre-nos.css */

/* Geral */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

main {
    padding: 20px;
}

.section-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.section-about.reverse {
    flex-direction: row-reverse;
}

.content-container {
    display: flex;
    width: 100%;
}

.text-content {
    flex: 1;
    padding: 20px;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    
}

.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #474747;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.section-background {
    position: relative;
    height: 200px; /* Ajuste conforme necessário */
    margin-top: 40px;
}

.background-image {
    background: linear-gradient(to right, #0099ff, #66ccff);
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 60, 128, 0.5); /* Camada transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 ;
}

.overlay h2 {
    font-size: 2rem;
    margin: 0;
}
