/**
 * quem-somos.css
 * Página institucional "Quem Somos".
 *
 * Todos os seletores exclusivos usam prefixo qs-.
 * Não altera header, menu, topbar, brand ou footer.
 */

/* =========================================================
   HERO
========================================================= */
.qs-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(67,151,255,.23), transparent 30%),
        radial-gradient(circle at 15% 100%, rgba(227,33,43,.1), transparent 30%),
        linear-gradient(130deg, #03172f 0%, #062d62 51%, #0c4d9f 100%);
}

.qs-hero__mesh {
    position: absolute;
    inset: 0;
    opacity: .055;
    background-image:
        linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to right, transparent, #000 58%);
}

.qs-hero__circle {
    position: absolute;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
    pointer-events: none;
}

.qs-hero__circle--one {
    width: 420px;
    height: 420px;
    right: -160px;
    top: -190px;
    box-shadow:
        0 0 0 65px rgba(255,255,255,.016),
        0 0 0 130px rgba(255,255,255,.011);
}

.qs-hero__circle--two {
    width: 130px;
    height: 130px;
    left: 44%;
    bottom: -65px;
}

.qs-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 28px;
    padding-bottom: 82px;
}

.qs-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 46px;
    color: rgba(255,255,255,.66);
    font-size: .79rem;
}

.qs-breadcrumb a {
    color: rgba(255,255,255,.82);
    text-decoration: none;
}

.qs-breadcrumb > i {
    font-size: .6rem;
    opacity: .55;
}

.qs-hero__layout {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(290px,.8fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: center;
}

.qs-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.qs-hero__copy h1 {
    max-width: 850px;
    margin: 0 0 21px;
    color: #fff;
    font-family: "Manrope", "Inter", sans-serif;
    font-size: clamp(2.5rem,5vw,4.7rem);
    line-height: .98;
    letter-spacing: -.052em;
}

.qs-hero__copy h1 strong {
    color: #add5ff;
}

.qs-hero__copy > p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.79);
    font-size: clamp(1rem,1.5vw,1.12rem);
    line-height: 1.8;
}

.qs-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.qs-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border-radius: 11px;
    text-decoration: none;
    font-size: .89rem;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.qs-btn--light {
    color: #07356f;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.qs-btn--outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.055);
}

.qs-hero__visual {
    display: flex;
    justify-content: center;
}

.qs-emblem {
    position: relative;
    display: flex;
    width: min(100%,330px);
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: rgba(255,255,255,.035);
    box-shadow: inset 0 0 50px rgba(255,255,255,.035), 0 32px 62px rgba(0,0,0,.22);
}

.qs-emblem__ring {
    position: absolute;
    inset: 22px;
    border: 1px dashed rgba(255,255,255,.2);
    border-radius: 50%;
}

.qs-emblem__year {
    position: absolute;
    top: 62px;
    text-align: center;
}

.qs-emblem__year small,
.qs-emblem__year strong {
    display: block;
}

.qs-emblem__year small {
    color: #9dc8fb;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.qs-emblem__year strong {
    margin-top: 2px;
    color: #fff;
    font-family: "Manrope", "Inter", sans-serif;
    font-size: 2.2rem;
}

.qs-emblem__icon {
    display: grid;
    width: 102px;
    height: 102px;
    place-items: center;
    margin-top: 40px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(145deg, rgba(255,255,255,.17), rgba(255,255,255,.07));
    box-shadow: 0 20px 30px rgba(0,0,0,.18);
    font-size: 2.4rem;
}

.qs-emblem__caption {
    margin-top: 16px;
    color: #a9d1ff;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* =========================================================
   BASE
========================================================= */
.qs-about,
.qs-represent,
.qs-pillars,
.qs-territory,
.qs-timeline,
.qs-cta,
.qs-related {
    padding: clamp(66px,8vw,104px) 0;
}

.qs-section-kicker {
    display: inline-block;
    color: #0d55b7;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.qs-section-kicker--light {
    color: #9dc8fb;
}

.qs-section-line {
    display: block;
    width: 48px;
    height: 3px;
    margin: 11px 0 18px;
    border-radius: 99px;
    background: #e3212b;
}

.qs-section-heading {
    max-width: 810px;
    margin-bottom: 40px;
}

.qs-section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.qs-section-heading--center .qs-section-line {
    margin-right: auto;
    margin-left: auto;
}

.qs-section-heading h2,
.qs-about__copy h2,
.qs-territory__header h2,
.qs-cta__copy h2 {
    margin: 0;
    color: #061f45;
    font-family: "Manrope", "Inter", sans-serif;
    font-size: clamp(1.9rem,3.4vw,3rem);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.qs-section-heading p,
.qs-about__copy p {
    color: #5f6c7d;
    line-height: 1.8;
}

/* =========================================================
   ABOUT
========================================================= */
.qs-about {
    background: #fff;
}

.qs-about__grid {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr);
    gap: clamp(38px,6vw,74px);
    align-items: center;
}

.qs-about__copy p {
    margin: 15px 0 0;
    font-size: .96rem;
}

.qs-purpose-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid #dbe7f5;
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(20,99,217,.1), transparent 35%),
        linear-gradient(145deg,#f9fbfe,#f2f7fd);
    box-shadow: 0 22px 48px rgba(6,31,69,.08);
}

.qs-purpose-card__tag {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    color: #0d55b7;
    background: #e4f0ff;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.qs-purpose-card__icon {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    margin: 25px 0 20px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg,#07356f,#1463d9);
    box-shadow: 0 14px 28px rgba(20,99,217,.2);
    font-size: 1.45rem;
}

.qs-purpose-card h3 {
    margin: 0 0 10px;
    color: #061f45;
    font-family: "Manrope","Inter",sans-serif;
    font-size: 1.35rem;
}

.qs-purpose-card > p {
    margin: 0;
    color: #617084;
    font-size: .87rem;
    line-height: 1.7;
}

.qs-purpose-card__footer {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #dbe6f3;
    color: #385271;
    font-size: .78rem;
    font-weight: 800;
}

/* =========================================================
   REPRESENTAÇÃO
========================================================= */
.qs-represent {
    background: #f5f8fc;
}

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

.qs-represent-card {
    padding: 28px 24px;
    border: 1px solid #e0e9f4;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(6,31,69,.05);
    text-align: center;
}

.qs-represent-card > span {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 17px;
    color: #0d55b7;
    background: #eaf3ff;
    font-size: 1.4rem;
}

.qs-represent-card h3 {
    margin: 0 0 9px;
    color: #082b5d;
    font-family: "Manrope","Inter",sans-serif;
    font-size: 1.05rem;
}

.qs-represent-card p {
    margin: 0;
    color: #6b7888;
    font-size: .83rem;
    line-height: 1.65;
}

/* =========================================================
   PILARES
========================================================= */
.qs-pillars {
    background: #fff;
}

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

.qs-pillar-card {
    position: relative;
    min-height: 230px;
    padding: 25px 22px;
    overflow: hidden;
    border: 1px solid #e0e9f4;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(6,31,69,.045);
}

.qs-pillar-card__number {
    position: absolute;
    right: 16px;
    top: 12px;
    color: #e7eef7;
    font-family: "Manrope","Inter",sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
}

.qs-pillar-card > i {
    margin-bottom: 25px;
    color: #0d55b7;
    font-size: 1.45rem;
}

.qs-pillar-card h3 {
    margin: 0 0 9px;
    color: #082b5d;
    font-size: 1rem;
}

.qs-pillar-card p {
    margin: 0;
    color: #697788;
    font-size: .82rem;
    line-height: 1.66;
}

/* =========================================================
   TERRITÓRIO
========================================================= */
.qs-territory {
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(255,255,255,.08), transparent 28%),
        linear-gradient(135deg,#04172f,#0a438c);
}

.qs-territory__header {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 38px;
}

.qs-territory__header h2 {
    color: #fff;
}

.qs-territory__header p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.7);
}

.qs-territory__stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.qs-territory__stat strong {
    color: #fff;
    font-family: "Manrope","Inter",sans-serif;
    font-size: clamp(3rem,7vw,5.5rem);
    line-height: 1;
}

.qs-territory__stat span {
    max-width: 120px;
    color: #9dc8fb;
    font-size: .73rem;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}

.qs-territory__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 13px;
}

.qs-city-card {
    display: flex;
    gap: 11px;
    align-items: center;
    padding: 17px 18px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 15px;
    background: rgba(255,255,255,.055);
}

.qs-city-card > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    flex: 0 0 38px;
    border-radius: 11px;
    color: #fff;
    background: rgba(255,255,255,.09);
}

.qs-city-card strong {
    color: #fff;
    font-size: .88rem;
}

/* =========================================================
   TIMELINE
========================================================= */
.qs-timeline {
    background: #f5f8fc;
}

.qs-timeline__line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 22px;
}

.qs-timeline__line::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 15px;
    height: 2px;
    background: #d5e2f2;
}

.qs-timeline-card {
    position: relative;
    padding: 38px 24px 25px;
    border: 1px solid #e0e9f4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(6,31,69,.05);
}

.qs-timeline-card__dot {
    position: absolute;
    top: 8px;
    left: 24px;
    width: 16px;
    height: 16px;
    border: 4px solid #dfeeff;
    border-radius: 50%;
    background: #0d55b7;
    z-index: 2;
}

.qs-timeline-card small {
    display: block;
    color: #8491a1;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.qs-timeline-card strong {
    display: block;
    margin-top: 4px;
    color: #082b5d;
    font-family: "Manrope","Inter",sans-serif;
    font-size: 1.4rem;
}

.qs-timeline-card p {
    margin: 9px 0 0;
    color: #687688;
    font-size: .81rem;
    line-height: 1.62;
}

/* =========================================================
   CTA
========================================================= */
.qs-cta {
    background: #fff;
}

.qs-cta__box {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 31px 34px;
    border-radius: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 87% 0%, rgba(255,255,255,.11), transparent 31%),
        linear-gradient(135deg,#061f45,#0b438c);
    box-shadow: 0 24px 50px rgba(6,31,69,.15);
}

.qs-cta__icon {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border-radius: 19px;
    background: rgba(255,255,255,.1);
    font-size: 1.7rem;
}

.qs-cta__copy > span {
    display: block;
    margin-bottom: 4px;
    color: #a6cffd;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.qs-cta__copy h2 {
    color: #fff;
    font-size: clamp(1.5rem,2.5vw,2.2rem);
}

.qs-cta__copy p {
    max-width: 720px;
    margin: 7px 0 0;
    color: rgba(255,255,255,.72);
    font-size: .86rem;
    line-height: 1.6;
}

/* =========================================================
   RELACIONADOS
========================================================= */
.qs-related {
    background: #f5f8fc;
}

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

.qs-related-card {
    display: grid;
    grid-template-columns: 52px minmax(0,1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid #e1eaf5;
    border-radius: 16px;
    color: inherit;
    background: #fff;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.qs-related-card:hover {
    transform: translateY(-3px);
    border-color: #c5daf4;
    box-shadow: 0 14px 30px rgba(6,31,69,.08);
}

.qs-related-card > span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 14px;
    color: #0d55b7;
    background: #eaf3ff;
}

.qs-related-card strong,
.qs-related-card small {
    display: block;
}

.qs-related-card strong {
    color: #082b5d;
    font-size: .94rem;
}

.qs-related-card small {
    margin-top: 3px;
    color: #788493;
    font-size: .76rem;
}

.qs-related-card > i {
    color: #9aa9bb;
}

/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width: 1050px) {
    .qs-hero__layout,
    .qs-about__grid {
        grid-template-columns: 1fr;
    }

    .qs-hero__visual {
        display: none;
    }

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

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

    .qs-cta__box {
        grid-template-columns: auto minmax(0,1fr);
    }

    .qs-cta__box > .qs-btn {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .qs-represent__grid,
    .qs-timeline__line,
    .qs-related__grid {
        grid-template-columns: 1fr;
    }

    .qs-timeline__line::before {
        display: none;
    }

    .qs-territory__header {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

@media (max-width: 680px) {
    .qs-hero__content {
        padding-top: 20px;
        padding-bottom: 58px;
    }

    .qs-breadcrumb {
        margin-bottom: 31px;
        font-size: .71rem;
    }

    .qs-hero__copy h1 {
        font-size: clamp(2.15rem,12vw,3.2rem);
    }

    .qs-hero__actions,
    .qs-hero__actions .qs-btn {
        width: 100%;
    }

    .qs-pillars__grid,
    .qs-territory__grid {
        grid-template-columns: 1fr;
    }

    .qs-pillar-card {
        min-height: auto;
    }

    .qs-purpose-card {
        padding: 24px;
    }

    .qs-cta__box {
        grid-template-columns: 1fr;
        padding: 26px 22px;
    }

    .qs-cta__icon {
        width: 58px;
        height: 58px;
    }

    .qs-cta__box > .qs-btn {
        grid-column: auto;
        width: 100%;
        justify-self: stretch;
    }

    .qs-related-card {
        grid-template-columns: 46px minmax(0,1fr) auto;
        padding: 15px;
    }

    .qs-related-card > span {
        width: 46px;
        height: 46px;
    }
}
