/* SECAO INTRO */
.secao-sobre {
    padding: 80px 0 100px;
    position: relative;
}

.sobre-titulo {
    grid-column: 1/13;
    text-align: center;
    margin-bottom: 50px;
}

.sobre-titulo h2 {
    font-size: 34px;
    color: #0E3A5A;
    font-weight: bold;
}

.sobre-texto {
    grid-column: 2/7;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: center;
}

.sobre-texto p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.sobre-foto {
    grid-column: 7/12;
}

.sobre-foto img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* HISTORIA */
.sobre-historia {
    background: #123c5a;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.historia-titulo {
    grid-column: 1/13;
    margin-bottom: 60px;
}

.historia-titulo h2 {
    font-size: 34px;
    font-weight: bold;
}

.historia-blocos {
    grid-column: 1/13;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.historia-item {
    flex: 1;
    min-width: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: left;
}

.historia-ano {
    font-size: 13px;
    font-weight: bold;
    color: #FFD012;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.historia-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

.historia-item p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

/* NUMEROS */
.sobre-numeros {
    background: #ECEBDD;
    padding: 100px 0;
    text-align: center;
}

.numeros-titulo {
    grid-column: 1/13;
    margin-bottom: 60px;
}

.numeros-titulo h2 {
    font-size: 34px;
    color: #0E3A5A;
    font-weight: bold;
}

.numeros-grid {
    grid-column: 1/13;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.numero-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.numero-valor {
    font-size: 56px;
    font-weight: bold;
    color: #E8538C;
    line-height: 1;
}

.numero-label {
    font-size: 16px;
    color: #0E3A5A;
    font-weight: bold;
}
