.header {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    background: #0a0b0d url("../img/video-posters/hero.webp") center / cover no-repeat;
}

.video-bg,
.experience-video {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(7, 8, 10, 0.34), rgba(7, 8, 10, 0.83)),
        radial-gradient(circle at 50% 38%, transparent 0, rgba(7, 8, 10, 0.48) 70%);
}

.header::after {
    position: absolute;
    z-index: -1;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    content: "";
    pointer-events: none;
}

.content-header {
    min-height: 100vh;
    min-height: 100svh;
    padding: 72px 24px;
    text-align: center;
}

.hero-content {
    width: min(100%, 920px);
}

.hero-content > img {
    width: clamp(170px, 23vw, 260px);
    height: auto;
    margin-inline: auto;
}

.hero-content h1 {
    max-width: 820px;
    margin: clamp(34px, 6vh, 64px) auto;
    color: var(--silver-50);
    font-size: clamp(1.6rem, 3.8vw, 3.25rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.btn-slice,
.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    color: var(--silver-50);
    background: rgba(12, 13, 16, 0.32);
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-slice { gap: 12px; }

.btn-slice svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    transition: transform 0.25s ease;
}

.btn-slice:hover,
.footer-cta:hover {
    color: var(--ink-950);
    border-color: var(--accent-bright);
    background: var(--accent-bright);
    transform: translateY(-2px);
}

.btn-slice:hover svg { transform: translateY(3px); }

.quem-somos {
    position: relative;
    background: radial-gradient(circle at 88% 16%, rgba(201, 188, 167, 0.1), transparent 28%), var(--ink-900);
}

.quem-somos-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(52px, 8vw, 120px);
}

.section-copy h2,
.section-title,
.fundadores-aaa h2,
.experience-content h2 { color: var(--silver-50); }

.section-copy h2 {
    position: relative;
    margin-bottom: 42px;
    padding-top: 24px;
}

.section-copy h2::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 2px;
    background: var(--accent);
    content: "";
}

.section-copy p { color: var(--silver-300); }
.section-copy p + p { margin-top: 22px; }

.fremes-photos {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    padding: 10px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: var(--shadow-lg);
}

.freme-photos-imgs {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 10px);
    background: var(--ink-800);
}

.freme-photos-imgs img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1s ease, transform 4s ease;
}

.freme-photos-imgs img.active { opacity: 1; transform: scale(1); }

.fp-one,
.fp-two,
.fp-three {
    position: absolute;
    z-index: 2;
    color: var(--accent-bright);
    font-family: "GlacialIndifference", sans-serif;
    line-height: 1;
    pointer-events: none;
}

.fp-one { top: -30px; left: 26px; font-size: 5rem; }
.fp-two,
.fp-three { right: -18px; bottom: -8px; font-size: 3rem; }
.fp-three { bottom: -22px; }

.nossos-pilares {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 22%), var(--ink-850);
}

.section-title {
    margin-bottom: clamp(48px, 7vw, 88px);
    text-align: center;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.pilar-card {
    min-height: 260px;
    padding: 34px 24px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease);
}

.pilar-card:hover {
    border-color: rgba(201, 188, 167, 0.42);
    background: linear-gradient(145deg, rgba(201, 188, 167, 0.12), rgba(255, 255, 255, 0.025));
    transform: translateY(-7px);
}

.pilar-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 44px;
    place-items: center;
    border: 1px solid rgba(201, 188, 167, 0.3);
    border-radius: 50%;
    color: var(--accent-bright);
    background: var(--accent-muted);
}

.pilar-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.pilar-card h3 {
    min-height: 2.2em;
    margin-bottom: 18px;
    color: var(--silver-50);
    font-size: 1.15rem;
}

.pilar-card p { color: var(--silver-300); font-size: 0.72rem; line-height: 1.55; }

.pilares-extra {
    margin-top: clamp(72px, 10vw, 140px);
    padding-top: clamp(52px, 6vw, 82px);
    border-top: 1px solid var(--line-dark);
}

.pilares-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pilar-extra { text-align: center; }
.pilar-extra h3 { margin-bottom: 12px; color: var(--accent-bright); }
.pilar-extra b { font-family: "GlacialIndifference", sans-serif; font-size: 0.78rem; letter-spacing: 0.14em; }
.pilar-extra p { margin-top: 8px; color: var(--silver-500); }

.pilares-extra-text {
    max-width: 900px;
    margin: clamp(72px, 9vw, 120px) auto 0;
    text-align: center;
}

.pilares-extra-text h3 { margin-bottom: 20px; color: var(--silver-50); }
.pilares-extra-text p { color: var(--silver-300); }

.experience-aaa {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: var(--ink-900);
    background: var(--silver-200) url("../img/video-posters/experience.webp") center / cover no-repeat;
}

.experience-overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: linear-gradient(180deg, rgba(232, 226, 216, 0.87), rgba(207, 197, 181, 0.91)), radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.5), transparent 45%);
}

.experience-content { text-align: center; }
.experience-content h2 { color: var(--ink-900); }

.experience-content .highlight {
    max-width: 950px;
    margin: clamp(36px, 5vw, 64px) auto;
    font-family: "GlacialIndifference", sans-serif;
    font-weight: 700;
    line-height: 1.35;
}

.text-complementary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: clamp(64px, 8vw, 100px);
}

.text-complementary-grid p {
    position: relative;
    padding: 34px 18px 0;
    color: rgba(15, 17, 21, 0.8);
    font-size: 0.88rem;
}

.text-complementary-grid p::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 48px;
    height: 2px;
    background: rgba(15, 17, 21, 0.35);
    content: "";
    transform: translateX(-50%);
}

.members-videos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 34px);
    width: min(100%, 980px);
    margin-inline: auto;
}

.members-videos video {
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius-md);
    object-fit: cover;
    background: var(--ink-900);
    box-shadow: 0 28px 60px rgba(41, 36, 30, 0.22);
}

.fundadores-aaa {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--ink-900);
}

#networkFundadores,
.fundadores-overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
}

.fundadores-overlay {
    z-index: -1;
    background: linear-gradient(180deg, rgba(15, 17, 21, 0.88), rgba(15, 17, 21, 0.98)), radial-gradient(circle at 50% 12%, rgba(201, 188, 167, 0.12), transparent 42%);
}

.fundadores-aaa h2,
.section-highlight { text-align: center; }

.section-highlight {
    max-width: 820px;
    margin: 36px auto clamp(56px, 7vw, 88px);
    color: var(--silver-300);
    font-family: "GlacialIndifference", sans-serif;
}

.fundadores-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.fundador-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 12px 12px 30px;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.fundador-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: calc(var(--radius-md) - 8px);
    object-fit: cover;
    filter: saturate(0.78) contrast(1.04);
}

.fundador-card .legenda { margin: 20px 12px 14px; color: var(--accent-bright); font-style: italic; }
.fundador-card h3 { margin: 0 12px 22px; color: var(--silver-50); font-size: 1.35rem; }
.fundador-card > p:not(.legenda) { margin-inline: 12px; color: var(--silver-300); line-height: 1.65; }
.fundador-card > p + p { margin-top: 14px; }

.footer-aaa {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    background: var(--ink-950);
}

.footer-overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: radial-gradient(circle at 50% 0, rgba(201, 188, 167, 0.13), transparent 48%), linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.footer-content { max-width: 980px; }

.footer-phrase {
    color: var(--silver-50);
    font-family: "GlacialIndifference", sans-serif;
    font-size: clamp(1.65rem, 3.8vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
}

.footer-info { max-width: 820px; margin: 38px auto 48px; color: var(--silver-300); font-size: 0.82rem; }

.footer {
    padding-block: 24px;
    border-top: 1px solid var(--line-dark);
    color: var(--silver-500);
    background: #07080a;
    text-align: center;
}

.footer .container-small { display: flex; justify-content: space-between; gap: 18px; }

.footer a {
    color: var(--accent-bright);
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--silver-50);
    text-decoration: underline;
}
