/* Quem Somos - modern institutional page */

:root {
    --qs-bg: #0b0b10;
    --qs-surface: rgba(255, 255, 255, 0.05);
    --qs-surface-strong: rgba(255, 255, 255, 0.08);
    --qs-border: rgba(184, 121, 255, 0.18);
    --qs-primary: #b879ff;
    --qs-primary-strong: #8a4ed4;
    --qs-accent: #f8bf1c;
    --qs-text: #f6f6fb;
    --qs-muted: #d1d1df;
}

.quem-somos-page {
    background: var(--qs-bg);
    color: var(--qs-text);
}

.qs-wrap {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.qs-hero .qs-wrap {
    width: min(1300px, 100%);
}

.qs-kicker {
    margin: 0;
    color: var(--qs-accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    font-weight: 700;
}

.qs-hero {
    position: relative;
    overflow: hidden;
    padding: 0 0 86px;
    background:
        radial-gradient(circle at 14% 18%, rgba(184, 121, 255, 0.24), transparent 34%),
        radial-gradient(circle at 86% 20%, rgba(248, 191, 28, 0.15), transparent 32%),
        linear-gradient(140deg, #12121a 0%, #0b0b10 60%, #171726 100%);
}

.qs-hero::before,
.qs-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.qs-hero::before {
    width: 300px;
    height: 300px;
    right: -100px;
    top: -70px;
    background: radial-gradient(circle, rgba(184, 121, 255, 0.38), rgba(184, 121, 255, 0));
    animation: qsFloat 9s ease-in-out infinite;
}

.qs-hero::after {
    width: 240px;
    height: 240px;
    left: -90px;
    bottom: -90px;
    background: radial-gradient(circle, rgba(248, 191, 28, 0.22), rgba(248, 191, 28, 0));
    animation: qsFloat 11s ease-in-out infinite reverse;
}

.qs-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 28px;
}

.qs-hero-copy h1 {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(2.4rem, 5.2vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    max-width: 12ch;
}

.qs-hero-copy p {
    margin: 18px 0 0;
    max-width: 680px;
    color: var(--qs-muted);
    line-height: 1.78;
    font-size: 1.05rem;
}

.qs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.qs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.qs-btn:hover {
    transform: translateY(-2px);
}

.qs-btn-primary {
    background: linear-gradient(120deg, var(--qs-primary), var(--qs-primary-strong));
    color: #fff;
    padding: 14px 24px;
    box-shadow: 0 16px 30px rgba(138, 78, 212, 0.28);
}

.qs-btn-primary:hover {
    box-shadow: 0 20px 34px rgba(138, 78, 212, 0.38);
}

.qs-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    padding: 14px 24px;
}

.qs-hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.qs-hero-metrics span {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    min-width: 150px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--qs-muted);
    backdrop-filter: blur(14px);
}

.qs-hero-metrics strong {
    color: #fff;
    font-size: 1.3rem;
}

.qs-hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qs-hero-media img {
    width: min(620px, 100%);
    border-radius: 28px;
    
    filter: drop-shadow(0 24px 40px rgba(184, 121, 255, 0.18));
    animation: qsHeroIn 1s ease both;
}

.quem-somos-page .qs-hero.hero {
    min-height: 81vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 48px 22px 58px;
}

.quem-somos-page .hero-text.hero-text-centered {
    width: min(860px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quem-somos-page .hero-text.hero-text-centered h1 {
    font-size: clamp(2.1rem, 7vw, 4.9rem);
    line-height: 0.95;
    margin: 0 0 28px;
    color: #fff;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.quem-somos-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    justify-content: center;
}

.quem-somos-page .cta-btn {
    background: linear-gradient(180deg, #ffd24d, #f8bf1c);
    color: #5a2d00;
    max-width: none;
    min-width: 230px;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: transform .2s, box-shadow .2s, background .2s;
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 30px rgba(248, 191, 28, 0.24);
}

.quem-somos-page .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(248, 191, 28, 0.32);
}

.quem-somos-page .cta-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: none;
}

.quem-somos-page .qs-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-50%);
    text-decoration: none;
    z-index: 1;
}

.quem-somos-page .qs-scroll-indicator span {
    width: 35px;
    height: 35px;
    display: inline-block;
    border-right: 3px solid rgba(255, 255, 255, 0.78);
    border-bottom: 3px solid rgba(255, 255, 255, 0.78);
    transform: rotate(45deg);
    animation: qsScrollHint 1.8s ease-in-out infinite;
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.18);
}

.quem-somos-page .qs-scroll-indicator:hover span {
    border-color: #fff;
}

.quem-somos-page .quem-somos {
    padding: 80px 24px;
    background: linear-gradient(180deg, #14141b 0%, #101017 100%);
}

.quem-somos-page .quem-somos > div:first-child h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #fff;
    text-align: center;
}

.quem-somos-page .container-info {
    width: min(1200px, 100%);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 32px;
    padding: 48px 0 0;
}

.quem-somos-page .container-info.quem-somos-video-only {
    display: block;
    max-width: 980px;
    margin: 0 auto;
    padding-top: 24px;
}

.quem-somos-page .container-info.quem-somos-video-only .video-container {
    width: 100%;
}

.quem-somos-page .container-info.quem-somos-video-only .video-container video {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.quem-somos-page .video-container video {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.32);
}

.qs-about,
.qs-values,
.qs-story,
.qs-leadership,
.qs-closing {
    padding: 84px 0;
}

.qs-about {
    background: linear-gradient(180deg, #111118 0%, #0d0d12 100%);
}

.qs-about-grid,
.qs-story-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.qs-about-copy,
.qs-about-box,
.qs-story-copy,
.qs-story-media,
.qs-closing-box {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.qs-about-copy {
    padding: 34px;
}

.qs-about-copy h2,
.qs-story-copy h2,
.qs-section-head h2,
.qs-closing-box h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3.2vw, 2.9rem);
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.qs-about-copy p,
.qs-story-copy p,
.qs-closing-box p {
    color: var(--qs-muted);
    line-height: 1.8;
    margin: 18px 0 0;
    font-size: 1.02rem;
}

.qs-about-box {
    padding: 24px;
    display: grid;
    gap: 12px;
}

.qs-about-box div,
.qs-values-grid article,
.qs-leader-card,
.qs-story-points span {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.qs-about-box div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(184, 121, 255, 0.16);
}

.qs-about-box strong {
    display: block;
    color: #fff;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.qs-about-box span {
    color: var(--qs-muted);
    line-height: 1.6;
}

.qs-section-head {
    text-align: center;
    margin-bottom: 30px;
}

.qs-section-head p {
    margin: 10px auto 0;
    max-width: 760px;
    color: var(--qs-muted);
    line-height: 1.7;
}

.qs-values {
    background: #0f0f14;
}

.qs-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.qs-values-grid article {
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(184, 121, 255, 0.18);
}

.qs-values-grid article:hover,
.qs-about-box div:hover,
.qs-story-points span:hover,
.qs-leader-card:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 191, 28, 0.45);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.qs-values-grid h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.08rem;
}

.qs-values-grid p {
    margin: 0;
    color: var(--qs-muted);
    line-height: 1.65;
}

.qs-story {
    background: linear-gradient(180deg, #111118 0%, #0d0d12 100%);
}

.qs-story-media {
    overflow: hidden;
}

.qs-story-video {
    width: 100%;
    display: block;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 24px;
}

.qs-story-copy {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qs-story-points {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.qs-story-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.qs-story-points i {
    color: var(--qs-accent);
}

.qs-leadership {
    background: #0f0f14;
}

.qs-leaders-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.qs-leader-card {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(184, 121, 255, 0.18);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.qs-leader-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.qs-leader-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 16px;
    background: linear-gradient(180deg, rgba(10, 10, 14, 0.1), rgba(10, 10, 14, 0.92));
    min-height: 65px;
}

.qs-leader-info h3 {
    margin: 0;
    color: #fff;
    font-size: 1.04rem;
}

.qs-leader-info span {
    display: block;
    margin-top: 6px;
    color: var(--qs-accent);
    font-size: 0.92rem;
}

.qs-closing {
    background: linear-gradient(180deg, #111118 0%, #0b0b10 100%);
}

.qs-closing-box {
    text-align: center;
    padding: 38px 24px;
}

.qs-closing-box p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

@keyframes qsFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes qsHeroIn {
    from {
        opacity: 0;
        transform: translateX(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes qsScrollHint {
    0%,
    100% {
        transform: rotate(45deg) scale(0.88);
        opacity: 0.7;
    }
    50% {
        transform: rotate(45deg) scale(1.12);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .qs-hero-grid,
    .qs-about-grid,
    .qs-story-grid {
        grid-template-columns: 1fr;
    }

    .qs-leaders-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .qs-hero {
        padding-top: 100px;
    }

    .quem-somos-page .qs-scroll-indicator {
        bottom: 14px;
    }

    .quem-somos-page .hero-actions {
        justify-content: center;
    }

    .quem-somos-page .cta-btn {
        min-width: 230px;
    }

    .qs-about,
    .qs-values,
    .qs-story,
    .qs-leadership,
    .qs-closing {
        padding: 64px 12px;
    }

    .qs-hero-actions,
    .qs-hero-metrics {
        justify-content: center;
    }

    .qs-hero-copy h1 {
        max-width: none;
    }

    .qs-values-grid,
    .qs-leaders-grid {
        grid-template-columns: 1fr;
    }

    .qs-about-copy,
    .qs-about-box,
    .qs-story-copy,
    .qs-closing-box {
        padding: 24px;
    }
}

/* Quem Somos purple harmonization */
.quem-somos-page {
    background:
        radial-gradient(circle at 10% 0%, rgba(248, 191, 28, 0.05), transparent 24%),
        radial-gradient(circle at 90% 8%, rgba(154, 89, 208, 0.14), transparent 34%),
        linear-gradient(180deg, #1d0d30 0%, #190c2a 100%);
}

.qs-leadership,
.qs-about,
.qs-values,
.qs-story,
.quem-somos-page .quem-somos,
.qs-closing {
    background: linear-gradient(180deg, #25123c 0%, #1c0e30 100%);
}
