.banner-sobre {
    background: linear-gradient(rgba(31,47,92,0.85), rgba(31,47,92,0.85)),
    url('img/urdideira.jpeg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px 60px;
}

.titulo {
    margin-bottom: 30px;
    color: var(--primary);
    border-left: 5px solid var(--accent);
    padding-left: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
}

.sobre-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 60px 0;
}

.mvv {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    border-radius: 10px;
    color: white;
    text-align: center;
    line-height: 1.6;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.missao {
    background: #c4161c; 
}

.visao {
    background: #ffffff;
    color: #1f2f5c;
    border: 2px solid #1f2f5c;
}

.valores {
    background: #1f2f5c;
}

.bloco {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.bloco img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}

.imagem, .texto {
    flex: 1;
}

.titulo h2   {
    margin-bottom: 30px;
    color: var(--primary);
    border-left: 5px solid var(--accent);
    padding-left: 15px;
}

.texto p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.reverso {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {

    .bloco {
        flex-direction: column;
        text-align: center;
    }

    .reverso {
        flex-direction: column;
    }

    .mvv {
        flex-direction: column;
    }

    .banner-sobre h1 {
        margin-top: 40px;
        font-size: 28px;
    }
}