/**
 * SOS Ayahuasca — Página Projeto Âncora
 * Prefixo: .ancora-
 * Visual alinhado à página inicial
 */

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

/* =============================================
   TIPOGRAFIA
   ============================================= */
.ancora-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;
}
.ancora-label-light {
    color: var(--verde-chacrona);
}
.ancora-section-title {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--verde-mata);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.ancora-section-title-lg {
    font-size: clamp(1.8rem, 4vw, 3rem);
}
.ancora-section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    max-width: 640px;
}
.ancora-divider {
    width: 48px;
    height: 3px;
    background-color: var(--verde-cipo);
    border: none;
    margin: 1.5rem 0;
}
.ancora-divider-center {
    margin-left: auto;
    margin-right: auto;
}
.ancora-text {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.ancora-text:last-child {
    margin-bottom: 0;
}
.ancora-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;
}

/* =============================================
   HERO
   ============================================= */
.ancora-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    margin-top: -76px;
    overflow: hidden;
    background-color: #0a1c0e;
}
.ancora-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ancora-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero3.webp');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.ancora-hero.loaded .ancora-hero__bg {
    transform: scale(1);
}
.ancora-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 28, 14, 0.88) 0%,
        rgba(15, 40, 20, 0.72) 55%,
        rgba(8, 20, 12, 0.6) 100%
    );
}
.ancora-hero__content {
    position: relative;
    z-index: 2;
    padding: 150px 0 100px;
}
.ancora-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;
}
.ancora-hero__h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 0.6rem;
    max-width: 780px;
}
.ancora-hero__name {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
}
.ancora-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: 560px;
    margin-bottom: 2.5rem;
}
.ancora-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.ancora-hero__stat {
    min-width: 110px;
}
.ancora-hero__stat-num {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--verde-chacrona);
    line-height: 1;
    margin-bottom: 0.35rem;
    display: block;
}
.ancora-hero__stat-label {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

/* =============================================
   PARCERIA
   ============================================= */
.ancora-partnership {
    background-color: #fff;
    padding: 100px 0;
}
.ancora-partnership__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}
@media (max-width: 991px) {
    .ancora-partnership__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.ancora-partnership__visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 420px;
    background-color: #0a1c0e;
}
.ancora-partnership__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0.85;
}
.ancora-partnership__badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(10, 28, 14, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(156, 197, 161, 0.25);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    z-index: 2;
}
.ancora-partnership__badge-label {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--verde-chacrona);
    margin-bottom: 0.4rem;
    display: block;
}
.ancora-partnership__badge-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* =============================================
   DESTAQUES (números)
   ============================================= */
.ancora-highlights {
    background-color: var(--areia-amazonica);
    padding: 80px 0;
}
.ancora-highlights__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 991px) {
    .ancora-highlights__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .ancora-highlights__grid {
        grid-template-columns: 1fr;
    }
}
.ancora-highlights__item {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ancora-highlights__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(47, 94, 61, 0.1);
}
.ancora-highlights__num {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--verde-mata);
    line-height: 1;
    margin-bottom: 0.6rem;
    display: block;
}
.ancora-highlights__label {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* =============================================
   IMPACTO / PROBLEMA
   ============================================= */
.ancora-impact {
    background-color: #fff;
    padding: 100px 0;
}
.ancora-impact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
    .ancora-impact__grid {
        grid-template-columns: 1fr;
    }
}
.ancora-impact__card {
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.ancora-impact__card--problem {
    background-color: var(--areia-amazonica);
}
.ancora-impact__card--solution {
    background-color: var(--verde-mata);
    color: #fff;
}
.ancora-impact__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
}
.ancora-impact__card--problem .ancora-impact__card-icon {
    background-color: rgba(47, 94, 61, 0.1);
    color: var(--verde-mata);
}
.ancora-impact__card--solution .ancora-impact__card-icon {
    background-color: rgba(156, 197, 161, 0.2);
    color: var(--verde-chacrona);
}
.ancora-impact__card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.ancora-impact__card--problem .ancora-impact__card-title {
    color: var(--verde-mata);
}
.ancora-impact__card--solution .ancora-impact__card-title {
    color: #fff;
}
.ancora-impact__card-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}
.ancora-impact__card--problem .ancora-impact__card-text {
    color: #666;
}
.ancora-impact__card--solution .ancora-impact__card-text {
    color: rgba(255, 255, 255, 0.82);
}

/* =============================================
   COMO FUNCIONA / PAPÉIS
   ============================================= */
.ancora-roles {
    background-color: var(--areia-amazonica);
    padding: 100px 0;
}
.ancora-roles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
@media (max-width: 991px) {
    .ancora-roles__grid {
        grid-template-columns: 1fr;
    }
}
.ancora-roles__card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ancora-roles__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--verde-cipo);
    transition: height 0.4s ease;
}
.ancora-roles__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(47, 94, 61, 0.12);
}
.ancora-roles__card:hover::before {
    height: 100%;
}
.ancora-roles__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;
}
.ancora-roles__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--verde-mata);
    margin-bottom: 0.5rem;
}
.ancora-roles__org {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--verde-cipo);
    margin-bottom: 1rem;
    display: block;
}
.ancora-roles__desc {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   PESQUISA
   ============================================= */
.ancora-research {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #0d1f10;
}
.ancora-research__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/jagube.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}
.ancora-research__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(8, 20, 10, 0.92) 0%,
        rgba(13, 31, 16, 0.78) 100%
    );
}
.ancora-research__content {
    position: relative;
    z-index: 2;
}
.ancora-research .ancora-section-title {
    color: #fff;
}
.ancora-research .ancora-divider {
    background-color: var(--verde-chacrona);
}
.ancora-research__lead {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    margin-bottom: 1.5rem;
    max-width: 640px;
}
.ancora-research__text {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    max-width: 640px;
    margin-bottom: 2rem;
}
.ancora-research__note {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(156, 197, 161, 0.12);
    border: 1px solid rgba(156, 197, 161, 0.3);
    border-radius: 10px;
    padding: 1.15rem 1.4rem;
    max-width: 560px;
}
.ancora-research__note i {
    color: var(--verde-chacrona);
    font-size: 1.25rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}
.ancora-research__note p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   PILOTO / EXPANSÃO
   ============================================= */
.ancora-pilot {
    background-color: #fff;
    padding: 100px 0;
}
.ancora-pilot__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    counter-reset: ancora-step;
}
@media (max-width: 991px) {
    .ancora-pilot__steps {
        grid-template-columns: 1fr;
    }
}
.ancora-pilot__step {
    position: relative;
    padding-top: 1rem;
}
.ancora-pilot__step::before {
    counter-increment: ancora-step;
    content: counter(ancora-step, decimal-leading-zero);
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: rgba(47, 94, 61, 0.12);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}
.ancora-pilot__step-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--verde-mata);
    margin-bottom: 0.75rem;
}
.ancora-pilot__step-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   ESPÉCIES
   ============================================= */
.ancora-species {
    background-color: var(--areia-amazonica);
    padding: 100px 0;
}
.ancora-species__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}
@media (max-width: 767px) {
    .ancora-species__grid {
        grid-template-columns: 1fr;
    }
}
.ancora-species__card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
}
.ancora-species__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ancora-species__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 20, 10, 0.88) 0%, rgba(8, 20, 10, 0.2) 60%, transparent 100%);
}
.ancora-species__body {
    position: relative;
    z-index: 2;
    padding: 2rem;
}
.ancora-species__sci {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--verde-chacrona);
    margin-bottom: 0.4rem;
    display: block;
}
.ancora-species__name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.ancora-species__desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   CTA
   ============================================= */
.ancora-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #0d1f10;
}
.ancora-cta__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero5.webp');
    background-size: cover;
    background-position: center 60%;
    opacity: 0.22;
}
.ancora-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%);
}
.ancora-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.ancora-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;
}
.ancora-cta__sub {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}
.ancora-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.ancora-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;
}
.ancora-cta__btn:hover {
    background-color: #9a7230;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(181, 137, 58, 0.55);
}
.ancora-cta__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.ancora-cta__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 991px) {
    .ancora-hero__content {
        padding: 130px 0 80px;
    }
    .ancora-partnership,
    .ancora-impact,
    .ancora-roles,
    .ancora-research,
    .ancora-pilot,
    .ancora-species,
    .ancora-cta {
        padding: 70px 0;
    }
    .ancora-highlights {
        padding: 60px 0;
    }
    .ancora-partnership__visual {
        min-height: 320px;
    }
}

@media (max-width: 575px) {
    .ancora-hero {
        min-height: 70vh;
    }
    .ancora-hero__content {
        padding: 120px 0 70px;
    }
    .ancora-hero__stats {
        gap: 1.5rem;
    }
    .ancora-cta__actions {
        flex-direction: column;
    }
    .ancora-cta__btn,
    .ancora-cta__btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
