@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-ExtraLightItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Raleway Variable";
    src: url("../fonts/Raleway-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Raleway Variable";
    src: url("../fonts/Raleway-Italic-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --font-primary: "Nunito", Arial, sans-serif;
    --font-secondary: "Raleway Variable", "Nunito", Arial, sans-serif;

    --blue-900: #22398f;
    --blue-850: #25409a;
    --blue-800: #2444a6;
    --blue-700: #2355c5;
    --blue-button: #2144a6;
    --orange: #ff822d;
    --orange-light: #ff8a13;
    --white: #ffffff;

    --container-max: 1180px;
    --section-inline: clamp(18px, 4vw, 56px);
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    font-family: var(--font-primary);
    color: var(--white);
    background: var(--blue-900);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg {
    max-width: 100%;
}

a {
    color: inherit;
}

.motivo-container {
    width: min(100%, 1500px);
    /*
  padding-right: var(--section-inline);
  padding-left: var(--section-inline); */
}

.container-motivo {
    max-width: 1460px;
}

.font-nunito {
    font-family: var(--font-primary) !important;
}

.font-raleway {
    font-family: var(--font-secondary) !important;
}

.font-nunito-extralight,
.font-nunito-200 {
    font-family: var(--font-primary) !important;
    font-weight: 200 !important;
    font-style: normal !important;
}

.font-nunito-light,
.font-nunito-300 {
    font-family: var(--font-primary) !important;
    font-weight: 300 !important;
    font-style: normal !important;
}

.font-nunito-regular,
.font-nunito-400 {
    font-family: var(--font-primary) !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

.font-nunito-medium,
.font-nunito-500 {
    font-family: var(--font-primary) !important;
    font-weight: 500 !important;
    font-style: normal !important;
}

.font-nunito-semibold,
.font-nunito-600 {
    font-family: var(--font-primary) !important;
    font-weight: 600 !important;
    font-style: normal !important;
}

.font-nunito-bold,
.font-nunito-700 {
    font-family: var(--font-primary) !important;
    font-weight: 700 !important;
    font-style: normal !important;
}

.font-nunito-extrabold,
.font-nunito-800 {
    font-family: var(--font-primary) !important;
    font-weight: 800 !important;
    font-style: normal !important;
}

.font-nunito-black,
.font-nunito-900 {
    font-family: var(--font-primary) !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

.font-nunito-italic {
    font-family: var(--font-primary) !important;
    font-style: italic !important;
}

.font-nunito-200-italic {
    font-family: var(--font-primary) !important;
    font-weight: 200 !important;
    font-style: italic !important;
}

.font-nunito-300-italic {
    font-family: var(--font-primary) !important;
    font-weight: 300 !important;
    font-style: italic !important;
}

.font-nunito-400-italic {
    font-family: var(--font-primary) !important;
    font-weight: 400 !important;
    font-style: italic !important;
}

.font-nunito-500-italic {
    font-family: var(--font-primary) !important;
    font-weight: 500 !important;
    font-style: italic !important;
}

.font-nunito-600-italic {
    font-family: var(--font-primary) !important;
    font-weight: 600 !important;
    font-style: italic !important;
}

.font-nunito-700-italic {
    font-family: var(--font-primary) !important;
    font-weight: 700 !important;
    font-style: italic !important;
}

.font-nunito-800-italic {
    font-family: var(--font-primary) !important;
    font-weight: 800 !important;
    font-style: italic !important;
}

.font-nunito-900-italic {
    font-family: var(--font-primary) !important;
    font-weight: 900 !important;
    font-style: italic !important;
}

.font-raleway-100 {
    font-family: var(--font-secondary) !important;
    font-weight: 100 !important;
    font-style: normal !important;
}

.font-raleway-200 {
    font-family: var(--font-secondary) !important;
    font-weight: 200 !important;
    font-style: normal !important;
}

.font-raleway-300 {
    font-family: var(--font-secondary) !important;
    font-weight: 300 !important;
    font-style: normal !important;
}

.font-raleway-400 {
    font-family: var(--font-secondary) !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

.font-raleway-500 {
    font-family: var(--font-secondary) !important;
    font-weight: 500 !important;
    font-style: normal !important;
}

.font-raleway-600 {
    font-family: var(--font-secondary) !important;
    font-weight: 600 !important;
    font-style: normal !important;
}

.font-raleway-700 {
    font-family: var(--font-secondary) !important;
    font-weight: 700 !important;
    font-style: normal !important;
}

.font-raleway-800 {
    font-family: var(--font-secondary) !important;
    font-weight: 800 !important;
    font-style: normal !important;
}

.font-raleway-900 {
    font-family: var(--font-secondary) !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

.font-raleway-italic {
    font-family: var(--font-secondary) !important;
    font-style: italic !important;
}

.font-raleway-100-italic {
    font-family: var(--font-secondary) !important;
    font-weight: 100 !important;
    font-style: italic !important;
}

.font-raleway-200-italic {
    font-family: var(--font-secondary) !important;
    font-weight: 200 !important;
    font-style: italic !important;
}

.font-raleway-300-italic {
    font-family: var(--font-secondary) !important;
    font-weight: 300 !important;
    font-style: italic !important;
}

.font-raleway-400-italic {
    font-family: var(--font-secondary) !important;
    font-weight: 400 !important;
    font-style: italic !important;
}

.font-raleway-500-italic {
    font-family: var(--font-secondary) !important;
    font-weight: 500 !important;
    font-style: italic !important;
}

.font-raleway-600-italic {
    font-family: var(--font-secondary) !important;
    font-weight: 600 !important;
    font-style: italic !important;
}

.font-raleway-700-italic {
    font-family: var(--font-secondary) !important;
    font-weight: 700 !important;
    font-style: italic !important;
}

.font-raleway-800-italic {
    font-family: var(--font-secondary) !important;
    font-weight: 800 !important;
    font-style: italic !important;
}

.font-raleway-900-italic {
    font-family: var(--font-secondary) !important;
    font-weight: 900 !important;
    font-style: italic !important;
}








/* ============================================================
   HERO — estrutura principal
   ============================================================ */

.lp-hero {
    position: relative;
    height: 100svh;
    max-height: 100svh;
    min-height: 0;
    display: flex;
    align-items: center;
    overflow: clip;
    padding-block: clamp(0.75rem, 2.5vh, 2rem);
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 0;
}

.lp-hero__wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin-top: 80px;
    padding-bottom: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
}

.hero-sep {
    border-left: 3px solid;
}

.row-custom-gap {
    --bs-gutter-x: 2.5vw;
}


.hero__text {
    font-size: 2.370vw;
    letter-spacing: -1px;
    font-weight: 900;
    line-height: 1;
    margin: 0;
}

.hero__text span {
    font-weight: 600;
    font-size: 2.656vw;
}

.hero__date {
    font-size: 3.750vw;
    letter-spacing: -0.014em;
    text-align: right;
    font-weight: 900;
    line-height: 0.9;
    margin-top: 10px;
}

/* ============================================================
   FORMULÁRIO (aside)
   ============================================================ */

.lp-form {
    background: var(--color-light);
    color: var(--color-dark-text);
    width: 100%;
    max-width: 500px;
    height: 98%;
    min-height: 0;
    border-radius: var(--radius-xl);
    margin-right: clamp(2rem, 7vw, 7.111rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
}

/* Cabeçalho do formulário */
.lp-form__header {
    background-color: #2f3b6f;
    border-radius: 35px 35px 0 0;
    padding: 20px 0;
}

.lp-form__header h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 40px;
    font-size: 32px;
    margin: 0;
}

.lp-form__header span {
    color: #ff822d;
}

/* Iframe */
.lp-form__iframe-wrapper {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 10px 20px;
    border-radius: 0 0 18px 18px;
}

.lp-form__iframe-wrapper iframe {
    border: 0;
    width: 100%;
    flex: 1;
    min-height: 0;
    display: block;
}

.lp-form__legal-text {
    flex-shrink: 0;
    margin: 12px 12px 0;
    background: #fff;
}

.lp-form__legal-text p {
    color: #000;
    font-family: "Raleway Variable";
    font-weight: 600;
    line-height: 130%;
    font-size: 0.694375rem;
    margin: 0;
    text-align: justify;
}

.box-main {
    margin-left: auto;
    font-size: clamp(1.688rem, 0.763rem + 1.08vw, 2.063rem);
    font-weight: 600;
    line-height: 1.18;
}


/* ============================================================
   CONTEÚDO INSTITUCIONAL (section)
   ============================================================ */

.lp-content {
    margin-left: clamp(2rem, 8vw, 8.389rem);
    max-height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Botões de ação */
.lp-content__actions {
    display: flex;
    flex-direction: row;
    gap: 13px;
    margin-top: clamp(1rem, 0.134rem + 0.72vw, 1rem);
    margin-bottom: 20px;
}

.lp-btn {
    min-width: 176px;
    min-height: 37px;
    padding: 16px 28px;
    background: var(--orange);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 18px;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
    font-size: 30px;
    width: 48%;
}

.lp-btn-inscreva-se {
    display: table;
    width: auto;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.023em;
    text-transform: uppercase;
    border-radius: 24px;
    padding: 14px 70px;
    margin-top: clamp(28px, 4vw, 58px);
}

/* Tagline */
.lp-content__tagline {
    font-weight: 500;
    margin-top: clamp(0.7rem, 1.2vw, 1rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 632px;
    font-family: var(--font-secondary);
}

.lp-content__tagline span {
    display: block;
    text-align: left;
    font-size: clamp(1.1rem, 1.5vw, var(--fs-30));
}

.banner-mobile {
    display: none;
}

.banner-laptop {
    display: none
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-height: 690px) and (min-width: 1300px) {
    .lp-content__tagline {
        margin-top: clamp(1.5rem, 2.5vw, 1.8rem);
    }
}

@media (max-width: 1440px) {
    .lp-content .box-main {
        padding-bottom: 30px;
    }

    .banner-laptop {
        display: block
    }

    .lp-form {
        max-width: 423px
    }

    .lp-form__header h2 {
        font-size: 27px
    }

    .lp-btn {
        font-size: 18px;
        padding: 14px 28px;
    }

    .lp-form__legal-text p {
        font-size: 9px
    }

    .lp-form__header {
        padding: 20px 0;
    }

    .lp-content__tagline {
        max-width: 539px;
        font-size: 22px
    }

    .container[_ngcontent-ng-c4290306224] .campaign-register-card[_ngcontent-ng-c4290306224] {
        padding: 0 !important;
    }

    .lp-form__iframe-wrapper {
        padding: 0 11px 10px;
    }

    .lp-hero__wrapper {
        margin-top: 40px;
        gap: 30px;
    }

    /* .hero-lockup {
        width: 544px !important;
    } */

    .lp-content__actions {
        margin-bottom: 8px
    }

    .lp-hero__bg {
        object-position: right top;
    }

    .container-motivo {
        max-width: 1240px;
    }
}

@media (max-width: 1300px) {
    .banner-laptop {
        object-position: center top;
    }
}

@media (max-width: 1300px) and (max-height: 690px) {
    .banner-laptop {
        object-position: right top;
    }

    .lp-content__tagline {
        font-size: 20px;
    }

    .lp-btn {
        font-size: 16px;
        padding: 9px 28px;
        min-height: 32px;
    }

    .lp-form__header {
        padding: 13px 0;
    }
}

@media (max-width: 111.188rem) {
    .lp-content {
        margin-left: clamp(2rem, 4vw, 3.111rem);
    }

    .lp-form {
        max-width: 390px;
        margin-right: clamp(2rem, 4vw, 3.444rem);
    }
}

@media (max-width: 767px) {
    .banner-laptop {
        display: none
    }

    .lp-hero {
        height: auto;
        max-height: none;
        overflow: visible;
        padding-block: 0;
        background: url(../images/hero-mobile.webp) no-repeat;
        background-size: cover;
    }

    .lp-hero__wrapper {
        height: auto;
        flex-direction: column-reverse;
        padding: 0 30px;
        padding-bottom: 0;

        margin-top: 30px
    }

    .lp-form {
        margin: 0;
        margin-top: 0;
        height: 800px;
        max-height: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;

        height: 76vh;
    }

    .banner-mobile {
        display: block;
        height: auto;
    }

    .banner-desktop {
        display: none;
    }

    .lp-content {
        margin: 0 auto;
    }

    .lp-content__actions {
        margin: 26px auto;
        display: flex;
        justify-content: center;
    }

    .lp-content__tagline {
        width: 100%;
        margin-top: 67px;
        max-width: 500px;
        padding: 0 18px;
        padding-top: 2vw;
        margin-top: 30px;
        font-size: 2.999vw;
        text-align: center;
        margin-bottom: 1vw;
    }

    .lp-form__header {
        padding: 16px 0;
    }

    .lp-form__header h2 {
        font-size: 4.042vw;
    }

    .lp-hero__wrapper {
        gap: 16px;
    }

    .lp-hero__bg {
        position: initial;
        padding: 0 72px;
    }

    .box-main {
        margin: 0 auto;
        padding-bottom: 0 !important;
    }

    .hero-heading,
    .hero-lockup {
        display: inline-block;
        width: 600px !important;
    }

    .lp-content__actions {
        margin: 0;
        padding: 20px 0;
    }

    .lp-btn {
        font-size: 16px;
        min-width: 159px;
        border-radius: 12px;
    }

    .lp-form__header {
        border-radius: 18px 18px 0 0;
    }

    .lp-form__iframe-wrapper {
        border-radius: 0 0 12px 12px;
        padding: 0 5px 10px;
    }
}

@media (max-width: 580px) {
    .lp-form {
        max-width: 366px
    }

    .lp-content__tagline {
        font-size: 15px;
        max-width: 366px;
        margin-top: 17px;
    }

    .lp-content .box-main {
        padding-bottom: 4px;
    }
}

@media (max-width: 430px) {
    .lp-content__tagline {
        font-size: 16px
    }

    .history-heading p {
        font-size: 1rem;
    }
}

@media (max-width: 397px) {
    .lp-content__tagline {
        font-size: 14px;
    }

    .lp-content .box-main {
        padding-bottom: 4px;
    }

    .lp-form__header h2 {
        font-size: 21px;
    }

    .lp-btn {
        min-width: auto;
        font-size: 14px;
    }
}

@media (max-width: 378px) {
    .lp-content__tagline {
        font-size: 13px;
    }
}

@media (max-width: 330px) {
    .lp-content__tagline {
        font-size: 13px;
    }

    .lp-form__header h2 {
        font-size: 17px;
    }

    .lp-hero__wrapper {
        padding: 0 14px;
    }
}


/*End Form*/



.segment-label {
    font-size: clamp(13px, 1.15vw, 17px);
    font-weight: 900;
    line-height: 1.15;
}

.segment-grid {
    display: grid;
    grid-template-columns: minmax(150px, 210px);
    gap: 7px;
    width: fit-content;
    margin-top: 13px;
}

.segment-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--blue-button);
    font-family: var(--font-primary);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
}

.segment-button {
    min-height: 33px;
    padding: 6px 24px;
    font-size: 14px;
    line-height: 1;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.06);
}

.segment-button:hover,
.segment-button:focus-visible,
.cta-button:hover,
.cta-button:focus-visible {
    color: #fff;
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.segment-button:focus-visible,
.cta-button:focus-visible,
.quick-link:focus-visible,
.footer-hero a:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

.hero-people {
    position: absolute;
    z-index: 2;
    right: clamp(-16px, 2vw, 26px);
    bottom: 0;
    display: block;
    width: min(50%, 600px);
    pointer-events: none;
}

.hero-people img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: right bottom;
}

.quick-links {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    min-height: 58px;
    color: #20316e;
    background: #fff;
}

.quick-link {
    padding: 10px 3px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-underline-offset: 3px;
}

.quick-link:hover {
    color: #20316e;
}

.history-section {
    min-height: clamp(610px, 52vw, 920px);
    padding-top: clamp(42px, 5vw, 80px);
    background-color: #296cb2;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.history-heading {
    position: relative;
    z-index: 3;
}

/* .aluno-medalhista {
    position: absolute;
    left: -50%;
    max-width: 743px;
    width: 35vw;
    height: auto;
    bottom: -5vh;
    object-fit: contain;
} */

.aluno-medalhista {
    position: absolute;
    left: -50%;
    max-width: 743px;
    width: 37vw;
    height: auto;
    bottom: -8vh;
    object-fit: contain;
}

.history-heading h2,
.education-heading h2 {
    margin: 0;
    font-size: clamp(3.625rem, 1.468rem + 2.53vw, 4.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.025em;
}

.history-heading p,
.education-heading p {
    /* max-width: 1020px; */
    margin: 12px 0 0;
    font-size: clamp(1.563rem, -0.133rem + 1.99vw, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
}

.history-layout {
    min-height: clamp(470px, 42vw, 730px);
    margin-top: 12px;
}

.history-student {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: -1%;
    display: block;
    width: min(31%, 370px);
    pointer-events: none;
}

.history-student img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left bottom;
}

.metrics-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    grid-template-rows: repeat(3, auto);
    align-items: center;
    column-gap: clamp(34px, 6vw, 98px);
    row-gap: clamp(22px, 3vw, 48px);
    width: 71%;
    margin-left: auto;
    padding-top: clamp(30px, 5vw, 78px);
    padding-right: clamp(8px, 2vw, 28px);
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
    line-height: 1.02;
}

.metric strong {
    color: var(--orange);
    font-size: clamp(2.625rem, -0.919rem + 4.15vw, 4.063rem);
    letter-spacing: -0.015em;
    white-space: nowrap;
    border-radius: 8px;
    padding: 5px 12px 5px 8px;
    min-width: 228px;
    background-color: rgba(255, 255, 255, 0.1);
}

.metric span {
    margin-top: 1px;
    font-size: clamp(1.125rem, -0.57rem + 1.99vw, 1.813rem);
    font-weight: 700;
    line-height: 1.02;
    white-space: nowrap;
}

.metric-a {
    grid-column: 1;
    grid-row: 1;
}

.metric-b {
    grid-column: 3;
    grid-row: 1;
}

.metric-c {
    grid-column: 2;
    grid-row: 2;

    text-align: center;
}

.metric-c span {
    margin: 0 0 1px;
}

.metric-d {
    grid-column: 1;
    grid-row: 3;
}

.metric-e {
    grid-column: 3;
    grid-row: 3;
}

.education-section {
    min-height: clamp(610px, 50vw, 880px);
    padding-top: clamp(42px, 5vw, 74px);
    padding-bottom: clamp(50px, 6vw, 90px);
    background-color: var(--blue-900);
    background-image: url("../images/terceira-dobra.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    isolation: isolate;
    display: none;
}

.education-section::after {
    content: "25";
    position: absolute;
    z-index: -1;
    top: -0.15em;
    right: -0.05em;
    color: rgba(42, 95, 210, 0.25);
    font-family: var(--font-secondary);
    font-size: clamp(410px, 58vw, 920px);
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.education-heading {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.education-grid {
    position: relative;
    z-index: 2;
    margin-top: clamp(28px, 3.5vw, 48px);
}

.education-column-left {
    padding-right: clamp(26px, 4vw, 72px);
}

.education-column-right {
    padding-left: clamp(26px, 4vw, 72px);
}

.education-card+.education-card {
    margin-top: clamp(24px, 2.8vw, 42px);
}

.education-card h3 {
    margin: 0;
    color: var(--orange-light);
    font-size: clamp(16px, 1.35vw, 21px);
    font-weight: 800;
    line-height: 1.08;
}

.education-card p {
    max-width: 530px;
    margin: 6px 0 10px;
    font-size: clamp(13px, 1.15vw, 17px);
    font-weight: 600;
    line-height: 1.12;
}

.cta-button {
    min-width: 176px;
    min-height: 37px;
    padding: 7px 28px;
    background: var(--orange);
    font-size: 17px;
    line-height: 1;
}

.footer-hero {
    min-height: clamp(530px, 53vw, 800px);
    background-color: #34271f;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(15, 10, 7, 0.42) 0%,
            rgba(15, 10, 7, 0.18) 26%,
            rgba(15, 10, 7, 0.18) 68%,
            rgba(15, 10, 7, 0.48) 100%);
}

.footer-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    padding-top: clamp(44px, 6vw, 92px);
    padding-bottom: clamp(42px, 5vw, 76px);
    text-align: center;
}

.footer-brand {
    position: relative;
    width: clamp(155px, 18vw, 255px);
    min-height: 105px;
}

.footer-logo {
    width: 100%;
}

.footer-brand-fallback {
    width: 100%;
}

.footer-hero h2 {
    margin: clamp(20px, 2.7vw, 38px) 0 0;
    font-size: clamp(26px, 3.35vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.footer-site,
.footer-contact-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-secondary) !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

.footer-site {
    gap: 9px;
    margin-top: clamp(34px, 4vw, 60px);
    font-size: clamp(21px, 2.2vw, 32px);
    font-weight: 500;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px clamp(24px, 3vw, 50px);
    margin-top: clamp(28px, 4vw, 58px);
}

.footer-contact-row a {
    gap: 7px;
    font-size: clamp(14px, 1.25vw, 24px);
    font-weight: 500;
}

.icon-wrap {
    display: inline-flex;
    flex: 0 0 auto;
    width: 1.25em;
    height: 1.25em;
    color: var(--orange);
}

.icon-wrap svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.site-footer {
    padding: clamp(28px, 3.5vw, 46px) 0 18px;
    background: #28439c;
}

.footer-units {
    font-size: clamp(10px, 0.85vw, 15px);
    line-height: 1.18;
}

.footer-unit-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-unit {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-style: normal;
}

.footer-unit strong {
    font-weight: 900;
}

.footer-unit span {
    font-weight: 500;
}

.copyright {
    margin-top: clamp(22px, 3vw, 38px);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}


@media (min-width: 768px) and (max-width: 1399.98px) {
    :root {
        --container-max: 920px;
        --section-inline: 28px;
    }

    .hero-section {
        min-height: 540px;
    }

    .hero-copy {
        padding-top: 34px;
        padding-bottom: 24px;
    }

    .hero-brand {
        width: 150px;
    }

    .hero-event-block {
        min-height: 110px;
        padding-left: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-date {
        font-size: 51px;
    }

    .hero-description {
        max-width: 590px;
        margin-top: 24px;
        font-size: 22px;
    }

    .hero-segments {
        margin-top: 32px;
    }

    .segment-grid {
        grid-template-columns: repeat(2, 150px);
        grid-auto-flow: column;
        grid-template-rows: repeat(3, 30px);
        gap: 6px 12px;
    }

    .segment-button {
        min-height: 30px;
        padding: 5px 13px;
        font-size: 15px;
    }

    .hero-people {
        right: 1%;
        width: min(45%, 450px);
    }

    .quick-links {
        min-height: 52px;
    }

    .history-section {
        min-height: 590px;
        padding-top: 30px;
    }

    .history-heading p,
    .education-heading p {
        margin-top: 15px;
        /* font-size: 22px; */
    }

    .history-layout {
        min-height: 475px;
    }

    .history-student {
        left: 0;
        width: min(29%, 275px);
    }

    .metrics-grid {
        width: 90%;
        padding-top: 25px;
        padding-bottom: 60px;
        padding-right: 0;
        column-gap: 38px;
        row-gap: 15px;
    }

    .metric strong {
        /* font-size: 40px; */
        min-width: 120px;
    }

    /* .metric span {
        font-size: 16px;
    } */

    .education-section {
        min-height: 540px;
        padding-top: 30px;
        padding-bottom: 42px;
        background-image: url("../images/terceira-dobra.webp");
    }

    .education-grid {
        margin-top: 24px;
    }

    .education-column-left {
        padding-right: 34px;
    }

    .education-column-right {
        padding-left: 34px;
    }

    .education-card+.education-card {
        margin-top: 22px;
    }

    .education-card h3 {
        font-size: 16px;
    }

    .education-card p {
        margin: 4px 0 7px;
        font-size: 16px;
    }

    .cta-button {
        min-width: 155px;
        min-height: 29px;
        padding: 5px 22px;
        font-size: 16px;
    }

    .footer-hero {
        min-height: 510px;
    }

    .footer-brand {
        width: 180px;
    }

    .footer-hero h2 {
        margin-top: 18px;
        font-size: 29px;
    }

    .footer-site {
        margin-top: 46px;
        font-size: 22px;
    }

    .footer-contact-row {
        margin-top: 43px;
    }

    .footer-contact-row a {
        font-size: 13px;
    }

    .hero-section {
        padding-bottom: 30px;
    }

    .form__content {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-inline: 17px;
    }

    body {
        min-width: 0;
    }

    .hero-section {
        min-height: 690px;
        background-position: center top;
    }

    .hero-section::after {
        top: -22px;
        right: -120px;
        font-size: 430px;
    }

    .hero-copy {
        padding-top: 28px;
        padding-bottom: 250px;
        padding-left: 25px;
        padding-right: 25px;
        text-align: center;
    }

    .hero-heading {
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .hero-brand {
        width: 88px;
        min-height: 68px;
    }

    .brand-fallback strong {
        font-size: 52px;
    }

    .brand-fallback b {
        font-size: 26px;
    }

    .hero-event-block {
        min-height: 72px;
        padding-left: 12px;
        border-left-width: 1px;
    }

    .hero-title {
        font-size: clamp(17px, 5.35vw, 22px);
        line-height: 1.02;
    }

    .hero-date {
        margin-top: 2px;
        font-size: clamp(32px, 10vw, 41px);
    }

    .hero-section {
        padding-top: 0;
    }

    .hero-description {
        max-width: 330px;
        margin-top: 28px;
        font-size: 12.5px;
        line-height: 1.14;
    }

    .hero-register {
        margin-top: 6px;
        font-size: 15px;
    }

    .hero-segments {
        margin-top: 43px;
    }

    .segment-label {
        font-size: 11px;
    }

    .segment-grid {
        grid-template-columns: 145px;
        gap: 5px;
        margin-top: 12px;
    }

    .segment-button {
        min-height: 27px;
        padding: 5px 18px;
        font-size: 11px;
    }

    .hero-people {
        right: -4px;
        bottom: -1px;
        width: min(82%, 340px);
    }

    .quick-links {
        min-height: 48px;
    }

    .quick-links .d-flex {
        gap: 44px !important;
    }

    .quick-link {
        font-size: 13px;
    }

    .history-section {
        min-height: 740px;
        padding-top: 26px;
        background-position: center top;
    }

    .history-heading h2,
    .education-heading h2 {
        font-size: 19px;
        line-height: 1.05;
    }

    .history-heading h2 {
        font-size: 5.215vw;
    }

    .history-heading p,
    .education-heading p {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.18;
    }

    .history-heading p {
        font-size: 2.999vw;
    }

    .history-layout {
        min-height: 610px;
        margin-top: 10px;
    }

    .metrics-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        grid-template-rows: auto auto auto;
        width: 100%;
        margin: 0;
        padding: 10px 20px 10px 20px;
        column-gap: 18px;
        row-gap: 20px;
    }

    .metric {
        min-width: 0;
    }

    .metric strong {
        font-size: 6.780vw;
        min-width: 20px;
    }

    .metric span {
        font-size: 3.259vw;
        line-height: 1.03;
    }

    .metric-a {
        grid-column: 1;
        grid-row: 1;
    }

    .metric-b {
        grid-column: 2;
        grid-row: 1;
    }

    .metric-c {
        grid-column: 1 / 3;
        grid-row: 2;
        margin-top: 1px;
        justify-self: center;
        align-items: flex-start;
        text-align: left;
    }

    /* .metric-c strong {
        font-size: 28px;
    } */

    .metric-d {
        grid-column: 1;
        grid-row: 3;
    }

    .metric-e {
        grid-column: 2;
        grid-row: 3;
    }

    .history-student {
        right: 0;
        left: 0;
        width: min(58%, 225px);
        margin: 0 auto;
    }

    .education-section {
        min-height: 790px;
        padding-top: 25px;
        padding-bottom: 36px;
        background-position: center top;
    }

    .education-section::after {
        top: 85px;
        right: -170px;
        font-size: 560px;
    }

    .education-grid {
        margin-top: 22px;
    }

    .education-column-left,
    .education-column-right {
        padding: 0;
    }

    .education-column-right {
        margin-top: 27px;
    }

    .education-card+.education-card {
        margin-top: 27px;
    }

    .education-card h3 {
        font-size: 12px;
    }

    .education-card p {
        max-width: 100%;
        margin: 5px 0 9px;
        font-size: 13px;
        line-height: 1.12;
    }

    .lp-btn-inscreva-se {
        font-size: 18px
    }

    .cta-button {
        min-width: 137px;
        min-height: 27px;
        padding: 5px 21px;
        font-size: 11px;
    }

    .footer-hero {
        min-height: 480px;
        background-position: center;
    }

    .footer-overlay {
        background: rgba(22, 13, 8, 0.5);
    }

    .footer-hero-content {
        justify-content: flex-start;
        padding-top: 52px;
        padding-bottom: 34px;
    }

    .footer-brand {
        width: 150px;
        min-height: 92px;
    }

    .footer-hero h2 {
        margin-top: 20px;
        font-size: 3.911vw;
        white-space: nowrap;
    }

    .footer-site {
        margin-top: 47px;
        margin-top: 30px;
        font-size: 18px;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 18px;
        margin-top: 30px;
    }

    .footer-contact-row a {
        font-size: 14px;
        font-family: var(--font-secondary) !important;
        font-weight: 400 !important;
        font-style: normal !important;
    }

    .site-footer {
        padding: 24px 30px 15px;
    }

    .footer-units {
        font-size: 12px;
        line-height: 1.18;
    }

    .footer-unit-group {
        gap: 12px;
    }

    .copyright {
        margin-top: 25px;
        font-size: 12px;
    }
}

@media (max-width: 359.98px) {
    .hero-title {
        font-size: 16px;
    }

    .hero-date {
        font-size: 31px;
    }

    .footer-hero h2 {
        font-size: 15px;
    }
}

@media (min-width: 1400px) {
    :root {
        --container-max: 1370px;
    }

    /* 
  .hero-copy {
    padding-left: 2%;
  } */

    .history-heading,
    .education-heading,
    .education-grid {
        /* padding-right: 2%;
        padding-left: 2%; */
    }

    .footer-units {
        padding-right: 5%;
        padding-left: 5%;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

.hero-section {
    /* min-height: clamp(560px, 43vw, 825px); */
    min-height: 1157px;
    background-color: #356da1;
    background-image: url("../images/hero.webp");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.hero-section::after {
    display: none;
}

.hero-copy {
    /* padding-top: clamp(56px, 6.2vw, 112px); */
    padding-top: 0;
    padding-bottom: 45px;
}

.hero-heading {
    /* width: min(100%, 800px); */
}

.hero-lockup {
    display: block;
    /* width:800px; */
    height: auto;
    max-width: 269px;
    width: 14vw;
}

.hero-description {
    max-width: 815px;
    margin-top: clamp(34px, 3.4vw, 52px);
}

.hero-people {
    display: none;
}

.history-section {
    min-height: clamp(600px, 50vw, 900px);
    background-color: #273787;
    /* background-image: url("../images/trajetoria-bg-desktop.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; */
}

.history-student {
    width: clamp(250px, 24%, 350px);
    left: 0;
    bottom: clamp(40px, 4.5vw, 95px);
}

.history-student img {
    object-position: left top;
}

.education-section {
    background-color: #243a90;
    background-image: url("../images/terceira-dobra.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.education-section::after {
    display: none;
}

.footer-hero {
    background-color: #28180f;
    background-image: url("../images/rodape-foto-crop.webp");
    background-position: center;
    background-size: cover;
}

.footer-logo {
    display: block;
    width: 100%;
    height: auto;
}

.contact-icon {
    display: inline-block;
    flex: 0 0 auto;
    width: 1.35em;
    height: 1.35em;
    object-fit: contain;
}

.contact-icon-site {
    width: 1.3em;
    height: 1.3em;
}

@media (min-width: 768px) and (max-width: 1399.98px) {
    .hero-section {
        min-height: 545px;
        background-position: center bottom;
        background-size: cover;
    }

    .hero-copy {
        padding-top: 34px;
        padding-bottom: 25px;
    }

    /* .hero-heading,
    .hero-lockup {
        width: min(100%, 600px);

    } */

    .hero-description {
        max-width: 640px;
        margin-top: 25px;
    }

    .history-section {
        min-height: 590px;
        background-position: center center;
    }

    .history-student {
        width: min(44%, 250px);
    }

    .education-section {
        min-height: 545px;
        background-position: center center;
        background-size: cover;
    }

    .footer-hero {
        min-height: 515px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 590px;
        background-image: url("../images/hero-mobile.webp");
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: cover;
    }

    .container-motivo {
        padding: 0
    }



    .hero-copy {
        padding-top: 22px;
    }

    .hero-heading,
    .hero-lockup {
        display: inline-block;
        width: 100% !important;
    }

    .hero-lockup {
        max-width: 225px !important;
        width: 100% !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .hero-sep {
        flex: 0 0 64%;
        padding-right: 0;
    }

    .hero__text {
        font-size: 4.433vw;
    }

    .hero__text span {
        font-size: 4.563vw;
    }

    .hero__text .hero__date {
        font-size: 8.996vw;
        font-weight: 900;
        text-align: left;
        line-height: 0.7;
    }

    .hero-description {
        max-width: 100%;
        margin-top: 30px;
        font-size: 13px;
    }

    .form {
        max-width: 350px;
        margin: 0 auto 40px auto;
    }

    .box__btn {
        justify-content: center;
        padding-bottom: 30px;
    }

    .box__btn a {
        padding: 10px;
        font-size: 15px;
        width: 40%;
    }

    .form__title {
        padding: 20px 0 20px 0;
    }

    .form__title h2 {
        font-size: 18px;
    }

    .form__content {
        padding: 0;
    }

    .section__form {
        padding-right: 12px;
    }

    .form__footer {
        padding: 10px 15px;
    }

    .form__footer p {
        font-size: 12px;
        padding-bottom: 20px;
    }

    .hero-segments {
        margin-top: 44px;
    }

    .aluno-medalhista {
        position: static;
        width: 100%;
        margin-top: 30px;
    }

    .history-section {
        padding: 30px 30px 0;
        min-height: 0;
        /* background-image:
            url("../images/banner3-dobra-mobile.webp");
        background-repeat: no-repeat;
        background-position: center, 47% center;
        background-size: cover, cover; */
        display: flex;
        flex-direction: column;
    }

    .history-section .motivo-container {
        display: flex;
        flex-direction: column;
        flex: 1 0 auto;
    }

    .history-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1 0 auto;
        min-height: 0;
    }

    .metrics-grid {
        order: 1;
        padding-top: 30px;
    }

    .history-student {
        order: 2;
        position: static;
        width: min(62%, 270px);
        margin: auto auto 0;
        aspect-ratio: auto;
        overflow: visible;
    }

    .history-student img {
        margin-bottom: -25.45%;
    }

    .education-section {
        /* min-height: 660px; */
        background-image: url("../images/formacao-25-crop.webp");
        background-repeat: no-repeat;
        background-position: 70% center;
        background-size: auto 100%;
    }

    .footer-hero {
        min-height: 435px;
        background-position: 43% center;
    }
}

@media (min-width: 1400px) {
    .history-section {
        min-height: 100vh;
        padding-top: 60px;
    }

    .history-heading h2 {
        font-size: 45px;

        /* 50 -72 */
        font-size: clamp(3.125rem, -0.265rem + 3.97vw, 4.5rem)
    }

    .history-heading p {
        margin-top: 10px;
        /* font-size: 20px; */
    }

    .history-layout {
        min-height: 620px;
        margin-top: 14px;
    }

    .history-student {
        width: 350px;
        left: 0;
        bottom: 0;
    }

    .metrics-grid {
        width: 82%;
        padding-top: 4.2vh;
        padding-bottom: 60px;
        padding-right: 0;
        column-gap: 60px;
        row-gap: 28px;
    }




}

@media (min-width: 992px) {
    .align-items-lg-center {
        align-items: start !important;
    }
}

@media (min-width: 768px) {
    .history-section {
        display: flex;
        flex-direction: column;
    }

    .history-section .motivo-container {
        display: flex;
        flex-direction: column;
        flex: 1 0 auto;
    }

    .history-layout {
        flex: 1 0 auto;
    }

    .history-student {
        bottom: 0;
    }

    .history-student img {
        margin-bottom: -25.45%;
    }
}