/**
 * SOS Ayahuasca — Estilos da página Quem Somos
 * Prefixo: .about-
 * Visual alinhado à página inicial (home.css)
 */

/* =============================================
   ANIMAÇÕES DE ENTRADA
   ============================================= */
.about-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.about-fade-in-delay-1 { transition-delay: 0.1s; }
.about-fade-in-delay-2 { transition-delay: 0.2s; }
.about-fade-in-delay-3 { transition-delay: 0.3s; }
.about-fade-in-delay-4 { transition-delay: 0.4s; }

/* =============================================
   UTILITÁRIOS TIPOGRÁFICOS
   ============================================= */
.about-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--verde-cipo);
    display: inline-block;
    margin-bottom: 1rem;
}
.about-label-light {
    color: var(--verde-chacrona);
}
.about-section-title {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--verde-mata);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.about-section-title-lg {
    font-size: clamp(1.8rem, 4vw, 3rem);
}
.about-section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    max-width: 640px;
}
.about-divider {
    width: 48px;
    height: 3px;
    background-color: var(--verde-cipo);
    border: none;
    margin: 1.5rem 0;
}
.about-divider-center {
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   HERO
   ============================================= */
.about-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    margin-top: -76px;
    overflow: hidden;
    background-color: #0a1c0e;
}
.about-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.about-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.about-hero.loaded .about-hero__bg {
    transform: scale(1);
}
.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 30, 18, 0.82) 0%,
        rgba(20, 45, 25, 0.65) 60%,
        rgba(10, 20, 12, 0.55) 100%
    );
}
.about-hero__content {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
}
.about-hero__tag {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--verde-chacrona);
    margin-bottom: 1.5rem;
}
.about-hero__h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    max-width: 720px;
}
.about-hero__sub {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 0;
}

/* =============================================
   HISTÓRIA
   ============================================= */
.about-history {
    background-color: #fff;
    padding: 100px 0;
}
.about-history__lead {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    color: var(--verde-mata);
    line-height: 1.55;
    margin-bottom: 1.75rem;
    font-weight: 500;
}
.about-history__text {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.about-history__text:last-child {
    margin-bottom: 0;
}

/* =============================================
   VISÃO / MISSÃO / VALORES
   ============================================= */
.about-pillars {
    background-color: var(--areia-amazonica);
    padding: 100px 0;
}
.about-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
@media (max-width: 991px) {
    .about-pillars__grid {
        grid-template-columns: 1fr;
    }
}
.about-pillars__card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.about-pillars__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--verde-cipo);
    transition: height 0.4s ease;
}
.about-pillars__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(47, 94, 61, 0.12);
}
.about-pillars__card:hover::before {
    height: 100%;
}
.about-pillars__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: rgba(47, 94, 61, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--verde-mata);
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}
.about-pillars__card:hover .about-pillars__icon {
    background-color: rgba(47, 94, 61, 0.15);
}
.about-pillars__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--verde-mata);
    margin-bottom: 1rem;
}
.about-pillars__desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 0;
}

/* =============================================
   O QUE FAZEMOS
   ============================================= */
.about-what {
    background-color: #fff;
    padding: 100px 0;
}
.about-what__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
@media (max-width: 991px) {
    .about-what__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .about-what__grid {
        grid-template-columns: 1fr;
    }
}
.about-what__card {
    background-color: var(--areia-amazonica);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.about-what__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--verde-cipo);
    transition: height 0.4s ease;
}
.about-what__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(47, 94, 61, 0.12);
}
.about-what__card:hover::before {
    height: 100%;
}
.about-what__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: rgba(47, 94, 61, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--verde-mata);
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}
.about-what__card:hover .about-what__icon {
    background-color: rgba(47, 94, 61, 0.15);
}
.about-what__title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--verde-mata);
    margin-bottom: 0.8rem;
}
.about-what__desc {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.about-what__link {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--verde-cipo);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: 0.04em;
    transition: gap 0.2s ease, color 0.2s ease;
}
.about-what__link:hover {
    color: var(--verde-mata);
    gap: 0.6rem;
}

/* =============================================
   VOLUNTÁRIOS
   ============================================= */
.about-team {
    background-color: var(--areia-amazonica);
    padding: 100px 0;
}
.about-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
@media (max-width: 991px) {
    .about-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .about-team__grid {
        grid-template-columns: 1fr;
    }
}
.about-team__card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.about-team__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(47, 94, 61, 0.12);
}
.about-team__photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--verde-chacrona);
    margin: 0 auto 1.25rem;
    display: block;
    transition: transform 0.3s ease;
}
.about-team__card:hover .about-team__photo {
    transform: scale(1.04);
}
.about-team__name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--verde-mata);
    margin-bottom: 0.4rem;
}
.about-team__role {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--verde-cipo);
    margin-bottom: 0.75rem;
}
.about-team__bio {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: #777;
    line-height: 1.65;
    margin-bottom: 0;
}
.about-team__empty {
    font-family: var(--font-sans);
    color: #888;
    text-align: center;
    padding: 2rem 0;
    margin: 0;
}

/* =============================================
   INICIATIVAS
   ============================================= */
.about-initiatives {
    background-color: #fff;
    padding: 100px 0;
}
.about-initiatives__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
@media (max-width: 991px) {
    .about-initiatives__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .about-initiatives__grid {
        grid-template-columns: 1fr;
    }
}
.about-initiatives__card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
}
.about-initiatives__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.about-initiatives__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.about-initiatives__body {
    padding: 1.75rem;
}
.about-initiatives__title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--verde-mata);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
.about-initiatives__text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #777;
    line-height: 1.65;
    margin-bottom: 0;
}

/* =============================================
   INFORMAÇÕES INSTITUCIONAIS
   ============================================= */
.about-info {
    background-color: var(--areia-amazonica);
    padding: 100px 0;
}
.about-info__card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    margin-top: 2.5rem;
}
.about-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid rgba(47, 94, 61, 0.12);
}
.about-info__item:first-child {
    padding-top: 0;
}
.about-info__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.about-info__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(47, 94, 61, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-mata);
    font-size: 1.25rem;
    flex-shrink: 0;
}
.about-info__label {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--verde-mata);
    margin-bottom: 0.35rem;
}
.about-info__value {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}
.about-info__value a {
    color: var(--verde-cipo);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.about-info__value a:hover {
    color: var(--verde-mata);
    text-decoration: underline;
}
.about-info__value ul {
    list-style-type: disc;
    padding-left: 1.15rem;
    margin: 0.35rem 0 0;
}
.about-info__value li {
    margin-bottom: 0.35rem;
}

/* =============================================
   CTA FINAL
   ============================================= */
.about-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #0d1f10;
}
.about-cta__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero5.webp');
    background-size: cover;
    background-position: center 60%;
    opacity: 0.22;
}
.about-cta__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(15, 40, 20, 0.3) 0%, rgba(8, 20, 10, 0.8) 100%);
}
.about-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.about-cta__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: #fff;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.about-cta__sub {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}
.about-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #b5893a;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.1rem 2.8rem;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(181, 137, 58, 0.45);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.about-cta__btn:hover {
    background-color: #9a7230;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(181, 137, 58, 0.55);
}

/* =============================================
   RESPONSIVIDADE
   ============================================= */
@media (max-width: 991px) {
    .about-hero__content {
        padding: 120px 0 70px;
    }
    .about-history,
    .about-pillars,
    .about-what,
    .about-team,
    .about-initiatives,
    .about-info,
    .about-cta {
        padding: 70px 0;
    }
    .about-info__card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .about-hero {
        min-height: 48vh;
    }
    .about-hero__content {
        padding: 110px 0 60px;
    }
    .about-team__photo {
        width: 100px;
        height: 100px;
    }
    .about-cta__btn {
        width: 100%;
        justify-content: center;
    }
}
