/* ════════════════════════════════════════════════════════════
   SOBRE NÓS — about.css
   Prefixo: ab-
   ════════════════════════════════════════════════════════════ */

/* ── HERO ── */
.ab-hero {
    background: #30493a;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}
.ab-hero::before {
    content: '';
    position: absolute; top: -180px; right: -180px;
    width: 560px; height: 560px; border-radius: 50%;
    background: rgba(74,155,111,0.08);
    pointer-events: none;
}
.ab-hero::after {
    content: '';
    position: absolute; bottom: -120px; left: -80px;
    width: 360px; height: 360px; border-radius: 50%;
    background: rgba(74,155,111,0.05);
    pointer-events: none;
}
.ab-hero__inner {
    max-width: 860px; margin: 0 auto;
    position: relative; z-index: 1;
}
.ab-hero__label {
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #e1e4cb; margin-bottom: 16px;
}
.ab-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff; font-weight: 700; line-height: 1.15;
    max-width: 720px;
}

/* ── LAYOUT BASE ── */
.ab-section { padding: 80px 5%; }
.ab-inner    { max-width: 1000px; margin: 0 auto; }

/* ── HISTÓRIA ── */
.ab-section--history { background: var(--cream); }

.ab-block {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px 60px;
    margin-bottom: 64px;
    align-items: start;
}
.ab-block__label {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--green-fresh);
    padding-top: 6px;
}
.ab-block__body p {
    margin-bottom: 1.2em;
    color: var(--ink-mid);
    font-size: 1.05rem;
    line-height: 1.8;
}
.ab-block__body p:last-child { margin-bottom: 0; }

/* ── TIMELINE ── */
.ab-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 280px;
    position: relative;
}
.ab-timeline::before {
    content: '';
    position: absolute;
    left: 280px; top: 12px; bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--green-light), var(--border));
}
.ab-timeline__item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding-bottom: 40px;
    position: relative;
}
.ab-timeline__item:last-child { padding-bottom: 0; }

.ab-timeline__dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--green-fresh);
    flex-shrink: 0;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}
.ab-timeline__item--current .ab-timeline__dot {
    background: var(--green-fresh);
    border-color: var(--green-fresh);
    box-shadow: 0 0 0 4px rgba(74,155,111,0.2);
}

.ab-timeline__year {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-mid);
    margin-bottom: 4px;
}
.ab-timeline__item--current .ab-timeline__year {
    color: var(--green-fresh);
}
.ab-timeline__text {
    font-size: 0.95rem;
    color: var(--ink-light);
    line-height: 1.65;
    margin: 0;
}

/* ── EQUIPA ── */
.ab-section--team { background: #fff; }

.ab-section__header {
    text-align: center;
    margin-bottom: 56px;
}
.ab-section__label {
    display: block;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--green-fresh); margin-bottom: 12px;
}
.ab-section__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--ink); font-weight: 700;
}

.ab-team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ab-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 24px 32px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.ab-member:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.ab-member__avatar {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: var(--green-mid);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    letter-spacing: 0.04em;
    overflow: hidden;
}
.ab-member__photo {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.ab-member__name {
    font-size: 1.05rem; font-weight: 700;
    color: var(--ink); margin-bottom: 4px;
    font-family: var(--font-display);
}
.ab-member__role {
    display: block;
    font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.07em;
    color: var(--green-fresh);
    margin-bottom: 14px;
}
.ab-member__bio {
    font-size: 0.9rem; line-height: 1.65;
    color: var(--ink-light); margin: 0;
}

/* ── MISSÃO ── */
.ab-section--mission {
    background: #32493c;
    position: relative;
    overflow: hidden;
}
.ab-section--mission::before {
    content: '';
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px; border-radius: 50%;
    background: rgba(74,155,111,0.06);
    pointer-events: none;
}

.ab-mission {
    max-width: 720px; margin: 0 auto;
    text-align: center;
    position: relative; z-index: 1;
}
.ab-mission__icon {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(74,155,111,0.15);
    color: var(--green-fresh);
    margin-bottom: 20px;
}
.ab-mission__label {
    display: block;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #ffffff; margin-bottom: 24px;
}
.ab-mission__quote {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255,255,255,0.9);
    border: none; padding: 0; margin: 0;
    font-style: normal;
    quotes: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .ab-timeline { padding-left: 200px; }
    .ab-timeline::before { left: 200px; }
    .ab-team { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ab-hero { padding: 100px 5% 64px; }
    .ab-section { padding: 56px 5%; }

    .ab-block {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 48px;
    }

    .ab-timeline { padding-left: 0; }
    .ab-timeline::before { left: 6px; top: 14px; bottom: 14px; }
    .ab-timeline__item { gap: 20px; }

    .ab-mission__quote { font-size: 1.15rem; }
    .ab-team { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .ab-hero__title { font-size: 1.75rem; }
    .ab-block__body p { font-size: 1rem; }
    .ab-team { grid-template-columns: 1fr; }
}
