/* ==========================================================================
   7X Patrimonial — Sobre Nós  ·  Redesign Premium
   ========================================================================== */

/* ══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════════════════ */

.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ── Background ─────────────────────────────────────────────────────────── */
.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.45) contrast(1.1);
    transform: scale(1.04);
    animation: aboutHeroZoom 18s ease-out forwards;
}

@keyframes aboutHeroZoom {
    to { transform: scale(1); }
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(11, 15, 25, 0.3)  0%,
        rgba(11, 15, 25, 0.05) 40%,
        rgba(11, 15, 25, 0.7)  80%,
        rgba(11, 15, 25, 0.96) 100%
    );
}

/* ── Content ─────────────────────────────────────────────────────────────── */
.about-hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12rem 0 10rem;
}

.about-hero-inner {
    max-width: 720px;
}

/* ── Eyebrow ─────────────────────────────────────────────────────────────── */
.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: aboutFadeUp 0.8s 0.3s ease forwards;
}

.about-eyebrow span:not(.about-eyebrow-line) {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--primary);
    text-transform: uppercase;
}

.about-eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--primary);
    opacity: 0.6;
}

/* ── Title ───────────────────────────────────────────────────────────────── */
.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: aboutFadeUp 0.9s 0.5s ease forwards;
}

.about-hero-title em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(105deg, var(--primary-hover) 0%, #f0d98a 45%, var(--primary) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: aboutShimmer 5s linear infinite;
}

@keyframes aboutShimmer {
    to { background-position: 200% center; }
}

/* ── Subtitle ─────────────────────────────────────────────────────────────── */
.about-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    max-width: 560px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: aboutFadeUp 0.9s 0.7s ease forwards;
}

/* ── Scroll hint ──────────────────────────────────────────────────────────── */
.about-hero-scroll {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: aboutFadeUp 0.9s 0.9s ease forwards;
}

.about-scroll-line {
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4));
    animation: aboutScrollGrow 2s ease-in-out infinite;
}

@keyframes aboutScrollGrow {
    0%   { transform: scaleX(0); transform-origin: left; opacity: 1; }
    100% { transform: scaleX(1); transform-origin: left; opacity: 0.3; }
}

.about-hero-scroll span:last-child {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

@keyframes aboutFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Metrics Strip ──────────────────────────────────────────────────────── */
.about-hero-metrics {
    position: relative;
    z-index: 2;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem 0;
}

.about-metrics-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-metric {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.5rem 1rem;
    text-align: center;
}

.about-metric-n {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.about-metric-suffix {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.about-metric-label {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.about-metric-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   MANIFESTO
   ══════════════════════════════════════════════════════════════════════════ */

.about-manifesto-section {
    background: var(--bg-main);
}

.about-manifesto {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-manifesto-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.about-manifesto-label span:not(.eyebrow-line) {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--primary);
    text-transform: uppercase;
}

.about-manifesto-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.45;
    color: var(--text-primary);
    font-style: normal;
    letter-spacing: -0.01em;
    margin: 0 0 3rem;
}

.about-manifesto-quote em {
    font-style: italic;
    color: var(--primary);
    display: block;
    margin-top: 0.4rem;
}

.about-manifesto-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin: 0 auto 2.5rem;
}

.about-manifesto-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 680px;
    margin: 0 auto;
}

.about-manifesto-body strong {
    color: var(--text-primary);
}

/* ══════════════════════════════════════════════════════════════════════════
   NOSSA REGIÃO — RIO DE JANEIRO
   ══════════════════════════════════════════════════════════════════════════ */

.about-region-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-region-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ── Visual (esquerda) ────────────────────────────────────────────────── */
.about-region-visual {
    position: relative;
}

.about-region-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.about-region-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 0.8s ease;
    filter: brightness(0.85) contrast(1.05);
}

.about-region-img-wrap:hover img {
    transform: scale(1.04);
}

.about-region-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(11, 15, 25, 0.6) 100%
    );
    pointer-events: none;
}

.about-region-img-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 172, 119, 0.25);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--primary);
    text-transform: uppercase;
}

.about-region-img-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ── Float card ──────────────────────────────────────────────────────── */
.about-region-float-card {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--bg-main);
    border: 1px solid rgba(201, 172, 119, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    min-width: 200px;
    z-index: 3;
}

.about-region-float-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-region-tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.about-region-tags li {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 0.25rem 0.65rem;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.about-region-tags li:hover {
    border-color: rgba(201, 172, 119, 0.4);
    color: var(--primary);
}

/* ── Text (direita) ───────────────────────────────────────────────────── */
.about-region-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.15;
    margin: 0.75rem 0 1.5rem;
}

.about-region-title em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(105deg, var(--primary-hover) 0%, #f0d98a 45%, var(--primary) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: aboutShimmer 5s linear infinite;
}

.about-region-desc {
    font-size: 0.97rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.about-region-feats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.about-region-feat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.about-region-feat svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-region-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-region-float-card {
        position: static;
        margin-top: 1.5rem;
    }
    .about-region-img-wrap {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .about-region-float-card {
        min-width: unset;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   MISSÃO / VISÃO / VALORES CARDS
   ══════════════════════════════════════════════════════════════════════════ */

.about-mvv-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-mvv-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-mvv-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-top: 0.75rem;
}

.about-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── MVV Card ────────────────────────────────────────────────────────────── */
.mvv-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mvv-card:hover {
    border-color: rgba(201, 172, 119, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.mvv-card:hover::before {
    opacity: 1;
}

.mvv-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 172, 119, 0.08);
    border: 1px solid rgba(201, 172, 119, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.75rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.mvv-card:hover .mvv-card-icon {
    background: rgba(201, 172, 119, 0.15);
    border-color: rgba(201, 172, 119, 0.4);
}

.mvv-card-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 0.6rem;
}

.mvv-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.mvv-card-desc {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════════════════
   PILARES / DIFERENCIAIS
   ══════════════════════════════════════════════════════════════════════════ */

.about-pillars-section {
    background: var(--bg-main);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.about-pillars-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(201,172,119,0.05), transparent);
    pointer-events: none;
}

.about-pillars-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-pillars-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-top: 0.75rem;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pillar-item {
    padding: 3rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: background 0.3s ease;
}

.pillar-item:nth-child(even) {
    border-right: none;
}

.pillar-item:nth-child(3),
.pillar-item:nth-child(4) {
    border-bottom: none;
}

.pillar-item:hover {
    background: var(--bg-surface);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(201, 172, 119, 0.12);
    line-height: 1;
    letter-spacing: -0.04em;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.pillar-item:hover .pillar-number {
    color: rgba(201, 172, 119, 0.3);
}

.pillar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.pillar-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════════════════════════════════════════ */

.about-timeline-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-timeline-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-timeline-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-top: 0.75rem;
}

.about-timeline {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    padding-left: 2rem;
}

.about-timeline-spine {
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(to bottom,
        var(--primary) 0%,
        rgba(201, 172, 119, 0.2) 100%
    );
}

.atl-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.atl-item:last-child {
    margin-bottom: 0;
}

.atl-dot {
    position: absolute;
    left: -2.4rem;
    top: 22px;
    width: 13px;
    height: 13px;
    background: var(--bg-surface);
    border: 2px solid var(--primary);
    border-radius: 0;
    transform: rotate(45deg);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.atl-dot--active {
    background: var(--primary);
    box-shadow: 0 0 18px rgba(201, 172, 119, 0.5);
}

.atl-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.atl-card:hover {
    border-color: rgba(201, 172, 119, 0.2);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.atl-card--active {
    border-color: rgba(201, 172, 119, 0.25);
    background: linear-gradient(135deg, var(--bg-main), rgba(201, 172, 119, 0.04));
}

.atl-year {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.atl-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.atl-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════════════════════════════════════ */

.about-cta-section {
    position: relative;
    padding: 8rem 0;
    background: var(--bg-main);
    overflow: hidden;
}

.about-cta-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201, 172, 119, 0.07), transparent),
        radial-gradient(ellipse 40% 40% at 20% 50%, rgba(201, 172, 119, 0.04), transparent),
        radial-gradient(ellipse 40% 40% at 80% 50%, rgba(201, 172, 119, 0.04), transparent);
    pointer-events: none;
}

.about-cta-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-cta-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.about-cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.about-cta-title em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(105deg, var(--primary-hover) 0%, #f0d98a 45%, var(--primary) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: aboutShimmer 5s linear infinite;
}

.about-cta-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .about-mvv-grid {
        grid-template-columns: 1fr;
    }
    .about-pillars-grid {
        grid-template-columns: 1fr;
    }
    .pillar-item {
        border-right: none;
    }
    .pillar-item:nth-child(3) {
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .about-hero-content {
        padding: 10rem 0 6rem;
    }

    .about-metrics-row {
        flex-wrap: wrap;
    }

    .about-metric {
        width: 50%;
        padding: 1rem;
    }

    .about-metric-sep:nth-child(4),
    .about-metric-sep:nth-child(6) {
        display: none;
    }

    .about-manifesto-quote {
        font-size: 1.5rem;
    }

    .pillar-item {
        padding: 2rem;
    }

    .about-pillars-section {
        padding: 5rem 0;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2.8rem;
    }

    .about-metrics-row {
        flex-direction: column;
    }

    .about-metric {
        width: 100%;
    }

    .about-metric-sep {
        display: none;
    }

    .about-cta-btns {
        flex-direction: column;
    }

    .about-cta-btns .btn {
        width: 100%;
        justify-content: center;
    }
}
