/* ==========================================================================
   SOBRE A AARCA — PÁGINA INSTITUCIONAL PREMIUM
   ========================================================================== */

.page-about {
    padding: 0;
    background: var(--white);
}


/* ==========================================================================
   HERO
   ========================================================================== */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 82px;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(129, 199, 132, .16),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #f4faf4,
            #ffffff
        );
    text-align: center;
}

.about-hero::before,
.about-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-hero::before {
    top: -130px;
    right: -90px;
    width: 300px;
    height: 300px;
    background: rgba(46, 125, 50, .07);
}

.about-hero::after {
    bottom: -110px;
    left: -70px;
    width: 220px;
    height: 220px;
    background: rgba(249, 168, 37, .08);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: var(--space-sm);
    padding: 7px 14px;
    border: 1px solid rgba(46, 125, 50, .14);
    border-radius: var(--radius-pill);
    background: var(--primary-soft);
    color: var(--primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-hero h1 {
    margin: 0;
    color: var(--heading);
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.about-hero p {
    max-width: 760px;
    margin: var(--space-md) auto 0;
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: var(--line-height-relaxed);
}


/* ==========================================================================
   HISTÓRIA
   ========================================================================== */

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(var(--space-lg), 6vw, var(--space-xl));
    align-items: center;
}

.about-story-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-story-image img {
    display: block;
    width: 100%;
    min-height: 480px;
    max-height: 620px;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.about-story-image:hover img {
    transform: scale(1.025);
}

.about-image-label {
    position: absolute;
    right: var(--space-sm);
    bottom: var(--space-sm);
    left: var(--space-sm);
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: var(--radius-md);
    background: rgba(18, 54, 32, .78);
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-story-content h2 {
    margin: 0 0 var(--space-md);
    color: var(--heading);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: var(--line-height-tight);
    letter-spacing: -.035em;
}

.about-entry-content {
    color: var(--text-muted);
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
}

.about-entry-content > *:last-child {
    margin-bottom: 0;
}

.about-entry-content p {
    margin-bottom: var(--space-sm);
}

.about-entry-content h2,
.about-entry-content h3 {
    margin: var(--space-lg) 0 var(--space-sm);
    color: var(--heading);
}


/* ==========================================================================
   MISSÃO, VISÃO E VALORES
   ========================================================================== */

.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
}

.about-principle-card {
    height: 100%;
    padding: var(--space-lg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base);
}

.about-principle-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-color-strong);
    box-shadow: var(--shadow-lg);
}

.about-principle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: var(--space-md);
    border-radius: 18px;
    background: var(--primary-soft);
    font-size: 27px;
}

.about-principle-card h3 {
    margin: 0 0 var(--space-sm);
    color: var(--heading);
    font-size: var(--font-size-xl);
}

.about-principle-card p,
.about-principle-card li {
    color: var(--text-muted);
    line-height: var(--line-height-base);
}

.about-principle-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-principle-card li {
    position: relative;
    padding-left: 22px;
}

.about-principle-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: var(--font-weight-bold);
}


/* ==========================================================================
   ÁREAS DE ATUAÇÃO
   ========================================================================== */

.about-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-md);
}

.about-area-card {
    padding: var(--space-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--surface);
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base);
}

.about-area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-area-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: var(--space-sm);
    border-radius: 16px;
    background: var(--primary-soft);
    font-size: 24px;
}

.about-area-card h3 {
    margin: 0 0 10px;
    color: var(--heading);
    font-size: var(--font-size-lg);
}

.about-area-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-base);
}


/* ==========================================================================
   CTA
   ========================================================================== */

.about-cta {
    padding-top: 0;
}

.about-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding: clamp(32px, 6vw, 58px);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(
            circle at 95% 10%,
            rgba(255, 255, 255, .10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.about-cta-box > div:first-child {
    max-width: 720px;
}

.about-cta-box span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-cta-box h2 {
    margin: 0 0 var(--space-sm);
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: var(--line-height-tight);
}

.about-cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    line-height: var(--line-height-base);
}

.about-cta-actions {
    display: grid;
    gap: var(--space-sm);
    justify-items: center;
    flex: 0 0 auto;
}

.about-cta-link {
    color: var(--white);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
}

.about-cta-link:hover {
    text-decoration: underline;
}


/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 1000px) {

    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-story-image {
        max-width: 760px;
        margin: 0 auto;
    }

    .about-principles-grid {
        grid-template-columns: 1fr;
    }

    .about-areas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-cta-actions {
        justify-items: start;
    }

}

@media (max-width: 640px) {

    .about-hero {
        padding: 118px 0 58px;
    }

    .about-story-image img {
        min-height: 320px;
        max-height: 420px;
    }

    .about-image-label {
        font-size: 12px;
    }

    .about-entry-content {
        font-size: var(--font-size-base);
    }

    .about-principle-card {
        padding: var(--space-md);
    }

    .about-areas-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-actions,
    .about-cta-actions .btn {
        width: 100%;
    }

    .about-cta-link {
        text-align: center;
    }

}


/* ==========================================================================
   ACESSIBILIDADE
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .about-story-image img,
    .about-principle-card,
    .about-area-card {
        transition: none;
    }

}