#menu-principal {
    z-index: 2;
    width: 100%;
    background-color: #69d986
}

#menu-principal .navbar {
    display: flex;
    width: 100%;
    box-sizing: border-box
}

.navbar__wrapper {
    display: flex;
    align-items: center
}

.navbar__actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-right: 120px
}

.btn-navbar-pr {
    display: flex;
    width: 120px;
    height: 40px;
    padding: 0px 16px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 4px;
    background: #192a6b;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    line-height: 100%
}

.btn-navbar-pr:hover {
    color: #111d4a;
    background-color: #fff
}

.btn-navbar-sc {
    display: flex;
    width: 102px;
    height: 40px;
    padding: 0px 16px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 4px;
    background: #fff;
    color: #192a6b;
    text-align: center;
    text-decoration: none;
    font-style: normal;
    font-weight: 600;
    line-height: 100%
}

.btn-navbar-sc:hover {
    background-color: #111d4a;
    color: #fff
}

.navbar-nav {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-link {
    color: #111d4a;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    gap: 4px
}

.nav-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px
}

.navbar_responsivo {
    display: none
}

#menu-principal .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 74px
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center
}

.navbar-logo {
    display: block;
    width: 150px
}

.nav-item.dropdown {
    position: relative
}

.nav-item .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 10px;
    list-style: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, .1);
    margin: 0;
    top: 100%;
    left: 0;
    z-index: 1000;
    border-radius: 8px;
    cursor: pointer
}

.nav-item .dropdown-menu li {
    margin: 5px 0
}

.nav-item .dropdown-menu a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    display: block
}

.nav-item .dropdown-menu a:hover {
    background-color: #f4f4f4;
    border-radius: 4px
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block
}

.nav-item .dropdown-indicator {
    margin-left: 5px;
    font-size: 12px;
    color: #333
}

@media only screen and (max-width: 992px) {
    #menu-principal {
        display: block;
        right: 0
    }

    .navbar__actions {
        display: none
    }

    .navbar-logo {
        width: 100px;
        left: 10px;
        position: relative
    }

    .navbar-logo img {
        width: 100%
    }

    #menu-principal {
        height: auto
    }

    .navMenu {
        display: none
    }

    .navbar_responsivo {
        display: block;
        background-color: #69d986
    }

    .content_navbar-responsivo {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        padding: 0 0 0 12px;
        box-sizing: border-box
    }

    .itens-menu-responsivo {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: #69d986;
        transform: translateX(100%);
        transition: transform .3s ease-in-out;
        z-index: 1000;
        padding: 80px 0
    }

    .itens-menu-responsivo.is-open {
        transform: translateX(0);
        padding: 80px 0
    }

    .itens-menu-responsivo ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        padding: 0
    }

    .itens-menu-responsivo ul li {
        padding: 16px 12px;
        border-bottom: 1px solid rgba(0, 0, 0, .2)
    }

    .itens-menu-responsivo ul li:last-child {
        border-bottom: none
    }

    .itens-menu-responsivo ul li a {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap
    }

    .has-submenu {
        position: relative
    }

    .submenu {
        list-style: none;
        padding: 0;
        margin: 0;
        display: none;
        overflow: hidden;
        height: 0;
        opacity: 0
    }

    .arrow {
        font-size: 12px;
        transition: transform .3s ease
    }

    .has-submenu.submenu-active .arrow {
        transform: rotate(180deg)
    }

    .submenu li {
        padding-left: 15px
    }

    .submenu a {
        display: block;
        padding: 5px 10px;
        color: #333
    }

    .submenu a:hover {
        background-color: #f4f4f4
    }

    .submenu-active .submenu {
        display: block
    }
}

.btn {
    display: flex;
    width: min-content;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    min-width: 190px;
    padding: 0px 16px;
    border: 0;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    transition: .3s ease all;
    color: #111d4a;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    background-color: #fbfdf7;
    font-family: "Open Sans", sans-serif;
    text-decoration: none
}

.btn_two {
    background-color: #fff;
    color: #7d37e2;
    padding: 12px 40px;
    min-height: auto
}

.btn-three {
    min-height: 48px;
    padding: 0px 20px 0px 16px;
    gap: 4px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff
}

.btn_text-laranja {
    color: #ffa273
}

.btn-three:hover {
    background-color: #fff;
    color: #7d37e2
}

.btn-three:hover svg path {
    stroke: #7d37e2
}

.btn svg {
    display: block;
    width: 24px;
    height: 24px;
    transition: .3s ease all
}

.btn svg path {
    transition: .3s ease all
}

.btn-flutuante {
    position: fixed;
    right: 5vw;
    bottom: 20vh;
    z-index: 9
}

.btn-flutuante__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: .3s ease all;
    overflow: hidden;
    text-decoration: none;
    border-radius: 4px 32px 32px 4px;
    padding: 15px 0
}

.btn-flutuante__overflow {
    transform: translateX(110%);
    transition: .5s ease all
}

.btn-flutuante__content:hover .btn-flutuante__overflow {
    transform: translateX(0%)
}

.btn-flutuante__text {
    border-radius: 4px 32px 32px 4px;
    background: #f9fafb;
    box-shadow: 0px 2px 7px -1px rgba(0, 0, 0, .2);
    padding: 8px 70px 6px 12px;
    max-width: 150px
}

.btn-flutuante__text p {
    margin: 0
}

.btn-flutuante__title {
    color: #00ab5f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1em
}

.btn-flutuante__lead {
    color: #4f587e;
    font-size: 11px;
    font-weight: 400;
    line-height: 1em
}

.btn-flutuante__icon {
    display: flex;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    background: #00ab5f;
    position: absolute;
    right: 0
}

.btn-flutuante__icon svg {
    display: block;
    width: 40px;
    height: 40px
}

@media only screen and (max-width: 992px) {
    .btn-flutuante {
        bottom: 5vh
    }
}

.section__hero {
    width: 100%;
    position: relative;
    height: 400px
}

.hero-banner-fundo {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.hero-banner-fundo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center
}

.hero__actions {
    display: none
}

.hero-banner-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.hero-banner-ilustracao-desktop {
    position: relative;
    transform: translateY(-20px)
}

.hero-banner-logo-desktop,
.hero-banner-ilustracao-desktop {
    display: block
}

.hero-banner-logo-mobile,
.hero-banner-ilustracao-mobile {
    display: none
}

@media screen and (max-width: 768px) {
    .hero-banner-content {
        top: 50%;
        display: flex;
        flex-direction: column
    }

    .hero__actions {
        display: flex;
        gap: 12px;
        padding: 16px
    }

    .hero-banner-logo {
        margin-top: 16px
    }

    .hero-banner-logo-mobile,
    .hero-banner-ilustracao-mobile {
        display: block
    }

    .hero-banner-logo-desktop,
    .hero-banner-ilustracao-desktop {
        display: none
    }
}

.section__sobre {
    position: relative;
    width: 100%
}

.sobre__banner-fundo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.sobre__banner-fundo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center
}

.sobre-ilustracao-desktop,
.sobre-fundo-desktop {
    display: block
}

.sobre-ilustracao-mobile,
.sobre-fundo-mobile {
    display: none
}

.sobre__container {
    width: 100%;
    position: relative;
    padding-top: 12px
}

.sobre__body {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px
}

.sobre-line-separator {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 4px;
    height: 100%;
    background-color: #6ead00
}

.container__text {
    position: relative;
    max-width: 552px;
    padding-left: 12px;
    display: flex;
    gap: 12px;
    align-items: center
}

.container__text p {
    margin-block-start: 0;
    color: #111d4a;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%
}

.container__text p:last-child {
    margin-block-end: 0
}

@media screen and (max-width: 768px) {

    .sobre-ilustracao-desktop,
    .sobre-fundo-desktop {
        display: none
    }

    .sobre-ilustracao-mobile,
    .sobre-fundo-mobile {
        display: block
    }

    .sobre__body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding: 16px
    }

    .sobre-line-separator {
        height: 650px
    }
}

.section--ctas {
    position: relative;
    width: 100%
}

.ctas-fundo {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 8px;
    overflow: hidden
}

.ctas-fundo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center
}

.btn-cta:hover {
    background-color: #111d4a;
    color: #fff
}

.ctas-content {
    padding: 40px 64px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.ctas-content p {
    color: #111d4a;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%
}

@media screen and (max-width: 768px) {
    .mobile-wrapper {
        padding: 40px
    }

    .ctas-content {
        flex-direction: column;
        padding: 40px 0
    }

    .ctas-content p {
        text-align: center
    }
}

.pparticipar-content {
    display: flex;
    align-items: center;
    gap: 20px
}

.pparticipar-title {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.pparticipar-title h2 {
    color: #111d4a;
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    line-height: 120%;
    text-transform: uppercase;
    margin: 0
}

.pparticipar-cards {
    display: flex;
    gap: 24px;
    align-items: center
}

.pparticipar-card {
    width: 220px;
    height: 110px;
    padding: 12px 24px;
    border-radius: 8px;
    background: #fff;
    border-left: 8px solid #69d986;
    box-shadow: 0px 5px 14px -1px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center
}

.pparticipar-card p {
    color: #111d4a;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%
}

@media screen and (max-width: 768px) {
    .pparticipar-content {
        flex-direction: column
    }

    .pparticipar-cards {
        flex-direction: column
    }

    .pparticipar-card {
        width: 88%
    }

    .pparticipar-title h2 {
        text-align: center
    }

    .pparticipar-title svg {
        width: 100%
    }
}

.premiacoes-anteriores {
    position: relative;
    width: 100%
}

.premiacoes__banner-fundo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.premiacoes__banner-fundo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center
}

.premiacoes__container {
    width: 100%;
    position: relative
}

.title-premiacao {
    gap: 12px
}

.title-premiacao h2 {
    margin: 0
}

.title-premiacao h3 {
    margin: 0;
    color: #111d4a;
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    line-height: 120%;
    text-transform: uppercase
}

.etapa-ensino-title {
    gap: 12px
}

.etapa-ensino-title h3 {
    margin: 0
}

.title-premiacao-texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px
}

.premiacao-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: center
}

.card-etapa-ensino {
    width: 480px;
    height: 180px;
    padding: 24px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 5px 14px -1px rgba(0, 0, 0, .12);
    border-left: 8px solid #69d986
}

.etapa-ensino-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 16px
}

.etapa-ensino-card {
    cursor: pointer;
    width: 130px;
    height: 90px;
    padding: 16px;
    border-radius: 8px;
    background: #b9e06a;
    gap: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.etapa-ensino-card img {
    width: 39px;
    height: 50px
}

.etapa-ensino-card p {
    margin: 0;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%
}

.etapa-ensino-card:nth-child(1) {
    background: #b9e06a;
    color: #277800
}

.etapa-ensino-card:nth-child(2) {
    background: #96d200;
    color: #277800
}

.etapa-ensino-card:nth-child(3) {
    background: #6ead00;
    color: #fff
}

.etapa-conhecimento-title {
    gap: 12px
}

.etapa-conhecimento-title h3 {
    margin: 0
}

.card-etapa-conhecimento {
    width: 480px;
    height: 180px;
    padding: 24px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 5px 14px -1px rgba(0, 0, 0, .12);
    border-left: 8px solid #69d986
}

.etapa-conhecimento-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 16px
}

.etapa-conhecimento-card {
    cursor: pointer;
    width: 130px;
    height: 90px;
    padding: 12px;
    border-radius: 8px;
    gap: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.etapa-conhecimento-card img {
    width: 39px;
    height: 50px
}

.etapa-conhecimento-card p {
    margin: 0;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%
}

.etapa-conhecimento-card:nth-child(1) {
    background: #97e7e9;
    color: #037a85
}

.etapa-conhecimento-card:nth-child(2) {
    background: #42d3d9;
    color: #037a85
}

.etapa-conhecimento-card:nth-child(3) {
    background: #009ead;
    color: #fff
}

.content-modal-text {
    display: none;
    text-align: left
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    z-index: -1;
    transition: opacity .3s ease, visibility .3s ease
}

.modal.active {
    opacity: 1;
    visibility: visible;
    z-index: 999
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    max-width: 600px;
    width: 80%;
    padding: 20px;
    text-align: center;
    position: relative
}

.modal-close {
    background: none;
    border: none;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer
}

.modal-close svg {
    width: 24px;
    height: 24px
}

.modal-body {
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-align: left;
    gap: 8px
}

.modal-body h3,
.modal-body h4,
.modal-body p {
    margin: 0
}

.modal-body.etapa-ensino h4 {
    overflow: hidden;
    color: #277800;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%
}

.modal-body.etapa-ensino h3 {
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: #277800;
    text-overflow: ellipsis;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%
}

.modal-body.etapa-ensino p {
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    color: #5d677d;
    text-overflow: ellipsis;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%
}

.modal-body.etapa-conhecimento h4 {
    overflow: hidden;
    color: #037a85;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%
}

.modal-body.etapa-conhecimento h3 {
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: #037a85;
    text-overflow: ellipsis;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%
}

.modal-body.etapa-conhecimento p {
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    color: #5d677d;
    text-overflow: ellipsis;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%
}

@media screen and (max-width: 768px) {
    .premiacoes-fundo-desktop {
        display: none
    }

    .premiacoes-anteriores {
        background-color: #f5f5f5
    }

    .premiacao-cards {
        flex-direction: column
    }

    .card-etapa-ensino {
        width: 300px;
        height: auto
    }

    .etapa-ensino-cards {
        flex-direction: column
    }

    .etapa-ensino-card {
        width: 280px
    }

    .card-etapa-conhecimento {
        width: 300px;
        height: auto
    }

    .etapa-conhecimento-cards {
        flex-direction: column
    }

    .etapa-conhecimento-card {
        width: 280px
    }
}

.cronograma-content__grid {
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 5px 14px -1px rgba(0, 0, 0, .12);
    border-left: 10px solid #69d986;
    display: flex;
    justify-content: center;
    gap: 16px
}

.cronograma-card {
    width: 180px;
    border-radius: 8px;
    border: 1px solid #69d986
}

.card-header {
    height: 45px;
    border-radius: 8px 8px 0px 0px;
    background: #69d986;
    display: flex;
    justify-content: center;
    align-items: center
}

.card-header h2 {
    margin: 0;
    color: #111d4a;
    text-align: center;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%
}

.card-content {
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center
}

.card-content p {
    color: #111d4a;
    margin: 0;
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%
}

@media screen and (max-width: 768px) {
    .cronograma-content__grid {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }

    .card-content p {
        font-size: 14px;
        padding: 4px;
    }

    .cronograma-card {
        width: auto
    }

    .card-header h2 {
        font-size: 16px
    }
}

.section-galeria {
    position: relative;
    height: auto
}

.bg-galeria {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.bg-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.galeria-header {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.galeria-title {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.galeria-title h2 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-style: italic;
    font-weight: 800;
    line-height: 103%;
    text-transform: uppercase;
    text-align: center
}

.galeria-content {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.galeria-slider {
    display: flex;
    justify-content: flex-end;
    gap: 12px
}

.galeria-img {
    width: 256px;
    height: 256px;
    border-radius: 8px;

    margin-right:16px; 
    
    img{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center;
        
    }
}

.galeria-carousel__controls {
    display: flex;
    justify-content: space-between;
    width: 100%
}

.galeria-carousel__arrow {
    height: 32px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #111d4a;
    background: #fff;
    cursor: pointer
}

.galeria-carousel__arrow:hover {
    scale: 1.1
}

@media(max-width: 768px) {
    .galeria-header {
        justify-content: center;
        margin-bottom: 12px
    }

    .galeria-title svg {
        width: 100%
    }
}

.section-faq {
    position: relative;
    height: auto
}

.bg-faq {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1
}

.bg-faq img {
    width: 100%;
    height: 100%;
    object-position: center
}

.ilustracao-faq-mobile {
    display: none
}

.ilustracao-faq-desktop {
    display: block
}

.faq-title {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-title h2 {
    margin: 0;
    color: #111d4a;
    margin: 0;
    font-size: 24px;
    font-style: italic;
    font-weight: 800;
    line-height: 103%;
    text-transform: uppercase
}

.faq-title h3 {
    margin: 0;
    color: #111d4a;
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    line-height: 120%;
    text-transform: uppercase
}

.faq-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px
}

.accordion {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 2px 7px -1px rgba(0, 0, 0, .2)
}

.accordion__header:hover {
    background-color: rgba(17, 29, 74, .1)
}

.accordion-item {
    width: 100%;
    transition: margin .3s ease
}

.accordion__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 4px;
    color: #111d4a;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    border-radius: 4px;
    cursor: pointer;
    background-color: #fff;
    outline: none
}

.accordion__icon {
    transition: transform .3s ease
}

.accordion__content {
    overflow: hidden;
    height: 0;
    padding: 0;
    transition: height .3s ease, padding .3s ease;
    border-bottom: 1px solid #000
}

.accordion.open .accordion__content {
    height: auto;
    padding: 16px
}

.accordion__content>div {
    margin: 0;
    padding: 20px
}

.accordion.open .accordion__icon {
    transform: rotate(180deg)
}

.ilustracao-faq {
    margin-bottom: 32px
}

@media screen and (max-width: 768px) {
    .ilustracao-faq-mobile {
        display: block
    }

    .ilustracao-faq-mobile img {
        width: 100%
    }

    .ilustracao-faq-desktop {
        display: none
    }

    .faq-title h3 {
        text-align: center
    }

    .faq-title h2 {
        text-align: center
    }

    .faq-title svg {
        width: 100%
    }
}

.section-contato {
    background-color: #f5f5f5
}

.contato-text {
    color: #111d4a;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 32px
}

.contatos-emails {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.contatos-itens {
    display: flex;
    gap: 8px;
    align-items: center
}

.contato-info {
    display: flex;
    flex-direction: column
}

.contato-nome {
    color: #111d4a;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%
}

.contato-email {
    color: #111d4a;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%
}

@media screen and (max-width: 768px) {
    .contatos-emails {
        align-items: normal;
        flex-direction: column;
        gap: 24px
    }

    .contato-text {
        text-align: center
    }
}

.noticias__title {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.noticias__title h2 {
    color: #111d4a;
    margin: 0;
    font-size: 24px;
    font-style: italic;
    font-weight: 800;
    line-height: 103%;
    text-transform: uppercase
}

.section {
    position: relative
}

.section__wrapper {
    display: block;
    position: relative;
    width: calc(100% - 40px);
    max-width: 1173px;
    margin: 0 auto;
    z-index: 1
}

.card {
    border: 1px solid #ecebeb;
    border-radius: 8px;
    overflow: hidden;
    width: 250px;
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    margin-top: 10px;
    margin-bottom: 30px;
    box-shadow: 1px 4px 6px rgba(0, 0, 0, .1)
}

.card__title {
    height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: bold
}

.card__image img {
    width: 100%;
    height: 156px;
    object-fit: cover
}

.card__content {
    padding: 16px;
    height: 164px;
    flex-direction: column
}

.card__content p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left
}

.card__footer {
    height: 48px;
    display: flex;
    align-items: center;
    border-top: 1px solid #ddd
}

.card__footer a {
    text-decoration: none;
    color: #007bff;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    gap: 8px
}

.card__footer a img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(33%) sepia(100%) saturate(746%) hue-rotate(202deg) brightness(95%) contrast(101%)
}

.section__top {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

.noticias-carousel {
    display: flex;
    justify-content: flex-end;
    gap: 12px
}

.noticias-carousel__controls {
    display: flex;
    justify-content: space-between;
    width: 100%
}

.noticias-carousel__arrow {
    height: 32px;
    padding: 0px 4px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    border: 1px solid #111d4a;
    background: #fff
}

.noticias-carousel__arrow:hover {
    scale: 1.1
}

.noticias-carousel__arrow svg {
    width: 24px;
    height: 24px
}

@media only screen and (max-width: 768px) {
    .sectioncontent {
        width: 100px
    }

    .section__top {
        justify-content: center;
        margin-bottom: 12px
    }

    .noticias__title svg {
        width: 100%
    }
}

.section__informativos {
    position: relative;
    width: 100%
}

.informativos__banner-fundo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.informativos__banner-fundo img {
    object-fit: cover;
    object-position: left center
}

.container__ilustracao-mobile {
    display: none
}

.container__ilustracao-desktop {
    display: block
}

.informativos__container {
    width: 100%;
    position: relative
}

.informativos__body {
    display: flex;
    justify-content: center;
    align-items: center
}

.informativos_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px
}

.informativos__text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.informativos__text-block {
    display: flex;
    gap: 16px
}

.informativos-line-separator {
    width: 4px;
    background-color: #6ead00;
    flex-shrink: 0;
    height: auto
}

.informativos__text-body {
    margin: 0;
    line-height: 180%
}

.informativos__title {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.informativos__title h2 {
    color: #111d4a;
    margin: 0;
    font-size: 24px;
    font-style: italic;
    font-weight: 800;
    line-height: 103%;
    text-transform: uppercase
}

@media screen and (max-width: 768px) {
    .container__ilustracao-mobile {
        display: block
    }

    .container__ilustracao-mobile img {
        width: 100%
    }

    .container__ilustracao-desktop {
        display: none
    }

    .informativos__body {
        flex-direction: column
    }

    .informativos__title h2 {
        text-align: center
    }

    .informativos__title svg {
        width: 100%;
        display: flex;
        justify-content: center
    }
}

.section-termos {
    position: relative;
    height: auto
}

.bg-termos {
    background-color: #111d4a;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.bg-termos img {
    object-fit: cover;
    object-position: center
}

.termos-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 118px
}

.termos-title h2 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    line-height: 103%;
    text-transform: uppercase
}

.termos-content {
    margin-top: 24px;
    display: grid;
    column-gap: 16px;
    row-gap: 16px;
    grid-template-columns: repeat(2, 1fr)
}

.btn-download {
    display: flex;
    width: 480px;
    padding: 8px 14px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400
}

.btn-download:hover {
    background-color: #fff;
    color: #111d4a
}

.btn-download:hover path {
    stroke: #111d4a
}

@media screen and (max-width: 768px) {
    .termos-title {
        width: 100%
    }

    .termos-content {
        display: flex;
        flex-direction: column
    }

    .btn-download {
        width: auto
    }

    .termos-title h2 {
        text-align: center
    }

    .termos-title svg {
        width: 100%
    }
}

.footer {
    background-color: #69d986
}

.footer-grid {
    padding: 34px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

.footer-logo img {
    display: block;
    object-fit: contain;
    object-position: center
}

.footer-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 50px
}

.footer-social__link img {
    display: block;
    width: 24px;
    height: 24px
}

@media only screen and (max-width: 992px) {
    .footer-grid {
        align-items: center;
        justify-content: space-between
    }
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin: 0;
    box-sizing: border-box
}

body {
    position: relative;
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden
}

img,
svg {
    display: block
}

.hidden {
    display: none !important
}

.svg {
    display: block
}

.svg svg {
    display: block;
    position: relative
}

.svg--width svg {
    width: 100%
}

.svg--height svg {
    height: 100%
}

.section__wrapper {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1048px;
    margin: 0 auto;
    box-sizing: border-box
}

.section {
    position: relative;
    padding: 50px 0;
    width: 100%
}

.containter__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.containter__title h2 {
    margin: 0;
    color: #111d4a;
    text-align: center;
    font-size: 24px;
    font-style: italic;
    font-weight: 800;
    line-height: 103%;
    text-transform: uppercase
}

@media only screen and (max-width: 1200px) {
    .section__wrapper {
        padding: 0 20px;
        width: 100%
    }

    .section {
        position: relative;
        padding: 30px 0;
        width: 100%
    }
}

.modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(12, 39, 64, .7);
    z-index: -1;
    opacity: 0
}

.modal__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 15px
}

.modal__group {
    position: relative;
    max-height: 100vh
}

.modal__content {
    max-height: calc(100vh - 80px);
    background: #f2f2f2;
    position: relative;
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    scale: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    overflow: hidden
}

.modal__action {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    max-width: 100%;
    right: 0;
    padding: 0;
    margin: 0;
    z-index: 2;
    box-sizing: border-box
}

.modal-close {
    border: 0;
    background-color: rgba(0, 0, 0, 0);
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: .3s ease all;
    padding: 0
}

.modal-close:hover {
    transform: scale(1.1)
}

.etapa-modal {
    align-items: start;
    gap: 28px;
    display: none
}

.etapa-modal__image {
    min-width: 245px;
    width: 245px;
    height: 100%;
    max-height: 612px;
    overflow: hidden
}

.etapa-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right
}

.etapa-modal__text {
    padding: 40px 28px 40px 0
}

.modal-icone {
    margin-bottom: 24px;
    width: 56px;
    height: 56px
}

.modal-icone img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center
}

.modal-title {
    margin: 0 0 8px 0;
    color: #111d4a;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px
}

.etapa-modal[label="Atuação Transversal"] ul {
    padding: 0
}

.etapa-modal[label="Atuação Transversal"] li {
    list-style: none;
    padding-left: 30px;
    background-image: url("http://localhost:3000/resources/img/modal/check-li.svg");
    background-position: left;
    background-size: 24px;
    background-repeat: no-repeat
}

.modal-text div,
.modal-text p,
.modal-text li {
    margin-top: 0;
    color: #111d4a;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px
}

.modal-text h3,
.modal-text h4 {
    color: #111d4a;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    margin: 0
}

.modal-text ul {
    padding-left: 25px
}

.modal-text hr {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #111d4a;
    margin: 20px 0 24px 0;
    border: 0
}

.grid {
    display: grid;
    grid: auto/1fr 1fr;
    align-items: start;
    grid-gap: 24px
}

.etapa-modal[label="Atuação Transversal"] .etapa-modal__image .mobile {
    display: none
}

@media only screen and (max-width: 768px) {
    .modal__content {
        padding: 20px;
        align-items: start;
        overflow-y: auto;
        overflow-x: hidden;
        -ms-overflow-style: none;
        scrollbar-width: none
    }

    .modal__content::-webkit-scrollbar {
        display: none
    }

    .etapa-modal__text {
        padding: 0
    }

    .etapa-modal__image {
        display: none
    }

    .modal-title {
        font-size: 20px;
        list-style: 24px
    }

    .etapa-modal[label="Atuação Transversal"] {
        flex-direction: column
    }

    .etapa-modal[label="Atuação Transversal"] .etapa-modal__image {
        display: block;
        height: 192px;
        width: calc(100% + 40px);
        left: -20px;
        margin-top: -20px;
        position: relative;
        border-radius: 0
    }

    .etapa-modal[label="Atuação Transversal"] .etapa-modal__image .desktop {
        display: none
    }

    .etapa-modal[label="Atuação Transversal"] .etapa-modal__image .mobile {
        display: block
    }
}

@media only screen and (max-width: 575px) {
    .grid {
        display: block
    }
}