/* Quem Somos Page */

.about-hero {
    background: linear-gradient(135deg, #003294 0%, #1a6fb8 60%, #5a9fd4 100%);
    color: #fff;
    text-align: center;
    padding: 120px 20px 80px;
}

.about-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 14px;
}

.about-hero p {
    font-family: 'ABeeZee', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-main {
    background: #f7f8fc;
    padding: 72px 0 96px;
}

.about-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 50, 148, 0.08);
    padding: 42px;
    margin-bottom: 28px;
}

.about-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: #003294;
    font-size: 34px;
    margin-bottom: 18px;
}

.about-section p {
    font-family: 'ABeeZee', sans-serif;
    color: #2a2f3a;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.history-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 50, 148, 0.18);
    object-fit: cover;
}

@media (max-width: 900px) {
    .about-hero h1 {
        font-size: 40px;
    }

    .about-section {
        padding: 30px;
    }

    .about-section h2 {
        font-size: 28px;
    }

    .about-section p {
        font-size: 17px;
    }

    .history-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 98px 20px 60px;
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-main {
        padding: 42px 0 64px;
    }

    .about-section {
        border-radius: 16px;
        padding: 24px;
    }

    .about-section h2 {
        font-size: 24px;
    }

    .about-section p {
        font-size: 16px;
        line-height: 1.65;
    }
}
