* {box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;}

:root{
    --zenite:       #025b93;
    --zenite-star:  #9f7f3f;
    --primary:      #151f24;
    --second:       #182835;
        --third:        #8c7e48;
    --contrast:     #fb7236;
    --contrast2:   #a18339;
    --contrast2b:   90, 47, 14, .7;
    --contrast3:   #f1b973;
    --contrast4:   #e6cd43;
        --background:   #e9e5d8;
        --bg2:          #e6f4f9;
    --text:         #000000;

    --white:        #ffffff;
    --white2:       #f6f7f7;
    --gray:         #b8b8b8;
    --gray2:        #d8d8d8;
    --gray3:        #eeeeee;
    --dark:         #383838;
    --black:        #000000;

    --blu:          #5f84a6;
    --blu2:         #03a9db;
        --blu3:         #1462a4;

        --btn-01:       #8c7e48;
        --btn-02:       #1c3b5e;

    --darker:       0, 0, 0, .3;
        --color-01:     #f59f25;
        --color-02:     #015958;
        --color-03:     06, 37, 64, .9;
    
    --yellow:       #8d7927;
    --yellow2:      #c4a575;
    --yellow3:      #fee592;
    --blue:         #11374e;
    --blue2:        #294665;
    --blue3:        #132d41;
    --blue4:        #3e5b74;
    --blue5:        #475969;
    --blue6:        #030913;
}
html{
    margin: 0px;
}
body{
    height: 100%;
    width: 100%;
    max-width: 100vw;
    padding: 0px;
    margin: 0px;
    color: #000000;
    font-display: auto;
    font-family: Myriad Pro, roboto, arial, helvetica, sans-serif;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

  .responsive-iframe-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* Proporção 16:9 */
        height: 0;
        overflow: hidden;
        margin-bottom: -150px
    }

    .responsive-iframe-container iframe {
        position: absolute;
        top: 0px;
        left: 10%;
       
        width: 80%;
        height: 80%;
        border: 0;
    }


h1, h2, h3, h4 {font-family: Indivisible, roboto, arial, helvetica, sans-serif;margin: 0;color: var(--white);font-size: 2.5rem;font-weight: 700;width: 100%;text-align: center;}
h1{float: left;margin: 0 5%;width: 90%;text-transform: uppercase;text-align: center;font-size: 2.5rem;}
h2{display: inline-block; padding-bottom: 10px;}
h3{font-size: 1.5rem;}
h4{color: var(--contrast); font-size: 1.688rem; line-height: 4rem;}
p {margin: 0; color: var(--text);}
a {cursor: pointer; text-decoration: none; transition: .3s all;}
figure {margin: 0; float: left; text-align: center;}
picture>img{width: 100%; object-fit: cover;}

.clear  {clear: both;}
.m-show {display: none;}
.bloc   {display: block;}
.disable{opacity: .5;}

.hover{display: none;}

.show-popup, .show-popup1, .show-popup2, .show-popup3{display: block !important;}

.fundoblue {
    background-color: #001760;
}

.margins {
    margin-bottom: 60px
   
}

/*MODAL*/

    .novadiv {
        position: relative;
        width: 100%; /* Garante que o contêiner ocupe toda a largura disponível */
        height: 80vh; /* Define a altura como 50% da altura da janela */
        overflow: hidden; /* Oculta as partes do vídeo que ultrapassam o contêiner */
    }

    .novadiv .video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%; /* Garante que o vídeo ocupe 100% da largura */
        height: 130%; /* Garante que o vídeo ocupe 100% da altura do contêiner */
        object-fit: cover; /* Corta o vídeo para cobrir totalmente o contêiner */
    }

        .video {
            cursor: pointer;
            display: inline-block;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
             z-index: 99;
        }
        .modal-content {
            position: relative;
            width: 100%;
            max-width: 1200px;
           
        }
        .modal-content iframe {
            width: 100%;
            height: 600px;
        }
        .close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            color: white;
            cursor: pointer;
        }

/*MENU*/




/* Estiliza a section para alinhar o botão no centro */
.mask {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.mask::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Para não bloquear interações com o vídeo */

  
     z-index: 1;
    
       /* Fundo azul translúcido */
    background: rgba(120, 104, 193, 0.4); /* Ajuste a opacidade conforme necessário */

    /* Adiciona a textura de bolinhas brancas */
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 25%, transparent 10%);
    background-size: 10px 10px; /* Ajuste o tamanho das bolinhas */
}


/* Botão de play estilizado */
.play-button {
    position: absolute;
    top: 35%;
    left: 45%;
    transform: translate(-50%, -50%); /* Move o botão exatamente para o centro */
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
   cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    animation: pulse 2s infinite ease-in-out;
    z-index: 2;
}

/* Ícone de play em forma de triângulo */
.play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 40px solid black;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    transition: transform 0.3s ease-in-out;
}

/* Efeito ao passar o mouse */
.play-button:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
}


/* Animação de pulsação */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
}

/* Efeito de clique */
.play-button:active {
    transform: scale(0.9);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}



.myMenu{
    position: fixed;
    z-index: 9;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.2) 100%);
    top: 0px;
    width: 100vw;
    height: 110px;
    left: 0;
    /* transition: .8s all; */
}
.menu-container{
    width: 1200px;
    max-width: 100%;
    margin: 0 calc(50% - 600px);
}

.color-darkyew {
    color: #937443
}

.myMenu ul{
    float: left;
    list-style-type: none;
    padding: 0;
    width: 820px;
    margin: 44px 0 10px 30px;
    text-align: center;
}
    .myMenu ul>li{
        float: left;
        line-height: 35px;
        text-transform: uppercase;
        display: block;
        color: var(--white);
    }
        .myMenu ul>li>a {
            transition: .2s all;
            color: var(--text);
            color: var(--dark);
            font-size: 16px;
            padding: 25px 10px;
        }
            .myMenu ul>li>a:hover {opacity: .3;}

    .menu-social{
        float: right;
        padding-top: 25px;
    }
        .menu-social>a{
            float: left;
            margin: 10px 7px;
        }
        .menu-social>a:hover{
            opacity: .3;
        }
            .menu-social>a>img{
                height: 18px;
            }
        .menu-social>a:last-child{
            margin: 0 0 0 20px;
            float: right;
        }
            .menu-social>a:last-child>img{
                height: 60px;
            }

.despair {
     background: url('../images/despair2.png') ;
    background-size: cover;
    width: 100%;
   
}

.fontpad {
    padding-left: 80px
}

.padpad {
    padding-top: 30px;
}


/* Menu Fix top */
.menu{
    max-width: 100%;
    border-radius: 0px;
    z-index: 20;
    background-color: rgba(0,0,0,.65);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    backdrop-filter: blur(30px) saturate(180%);
}

.anchor{
    float: left;
    width: 0px;
    height: 0;
    position: relative;
    top: -110px;
}

/* Menu Mobile */
.menuMobile{
    display: none;
    top: 0;
    position: fixed;
    width: 100vw;
    background-color: var(--white);
    z-index: 999;
}
#menu-mobile .menu-logo{
    width: 100%;
    margin: 20px 0;
}

/*FOOTER*/
footer {
    width: 100%;
    background-color: var(--blue6);
    overflow: hidden;
    padding-bottom: 40px;
}
footer .grid>a {display: block;}
    footer a:hover {text-decoration: underline;}

footer .color-dark a{color: var(--white);}
footer .border-05{border-top: 1px solid rgba(200, 200, 200, .5);}

.footer-social{
    width: 100%;
    text-align: center;
}
    .footer-social>a{
        margin: 0 32.5px;
        height: 65px;
    }
    .footer-social>a:hover{
        opacity: .3;
    }
    .footer-social>a>img{
        height: 65px;
    }

/* Logos & images */

.menu-logo{
    width: 96px;
    height: 35px;
    margin: 35px 0 5px;
}
    .menu-logo img{
        text-align: center;
        width: 92px;
    }
.star{
    width: 100%;
    margin: 80px 0 10px;
}
    .star img{
        width: 24px;
        margin: 0 auto;
    }
.video{
    float: left;
   
    width: 100%;
 
    text-align: center;
}
    .video img{
        max-width: 700px;
        width: 100%;
    }
.material{
    margin-top: 120px;
    float: right;
    width: 50%;
    text-align: center;
    margin-right:
}
    .material img{
        width: 650px;
        object-fit: contain;
    }
.ribbon{
    float: left;
    width: 40%;
    padding: 50px 0 0 60px;
    text-align: left;
}

.condicao{
    float: left;
    
    padding: 0px 0px 0px 30px;
    text-align: left;
}

.condicao img {
    width: 90%
}

.incluso{
    float: left;
    padding: 40px 0px 0px 40px;
    text-align: left;
}

.incluso img {
    width: 80%
}

.footer-logo{
    float: left;
    width: 15.25rem;
}
    .footer-logo img{width: 100%;}
.hotel{
    background: url('../images/hotelbra.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: auto ;
}

.bgexp {
      background: url('../images/bgexp2.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 1320px
}

.selo-nota{
    float: right;
    width: 179px;
    margin: -135px 0px 0 0;
   
}
.galeria-down{
    padding-top: 40px;
}
.galeria-up{
    padding-bottom: 40px;
}


/* Banners & Backgrounds */
.bg-white               {background-color: var(--white);}
.bg-white2              {background-color: var(--white2);}
.bg-gray3                {background-color: var(--gray3);}
.bg-dark                {background-color: var(--black);}
.bg-contrast2           {background-color: rgba(var(--contrast2b)) !important;}

.grt-01{
    background: rgba(8, 32, 57, 1)
}
.grt-02{
    background: rgb(37,76,108);
    background: linear-gradient(90deg, rgba(37,76,108,1) 0%, rgba(14,37,60,1) 50%, rgba(37,76,108,1) 100%);
}

.grt-03{
    background: rgb(44,94,120);
    background: linear-gradient(90deg, rgba(44,94,120,1) 0%, rgba(85,113,152,1) 0%, rgba(117,145,179,1) 50%, rgba(85,113,152,1) 100%);
}

.bg-primary     {background-color: var(--primary);}
.bg-third       {background-color: var(--third);}

.banner-h1{
    float: left;
    margin: 0 calc(50% - 500px);
    width: 100%;
    padding: 60px 10px;
    
   
    background: url('../images/logoimersao.png') no-repeat top center;
   
}

.custom-title {
   
    
    color: #ffffff; /* Cor do texto */
    padding: 30px 30px; /* Espaçamento interno */
 background: url('../images/retangulo.png') no-repeat center;
}

.txt-curso9 {
    float: left;
   padding: 30px;
    margin: 0 calc(55% - 500px);
    
}

.custom-title2 {
    
    margin-top: 80px;
   
    margin-left: 0px !important;
    color: #ffffff; /* Cor do texto */
    padding: 30px 30px; /* Espaçamento interno */
 background: url('../images/retangulo3.png') no-repeat center;
}

.custom-title span {
    font-weight: bold; /* Peso do texto */
}



.img-logo {
    width: 100%;
    height: 800px;
    background: url('../images/logoimersao3.png') no-repeat top center;
}

.banner-h1 p{
    float: left;
    width: 100%;
    color: var(--white);
    text-align: center;
    margin-top: 40px;
}

.banner-01{
    float: left;
    margin: -45px calc(50% - 700px); 
    width: 1400px;
    position: relative;
}
.banner-01 .container-990{
    float: left;
    padding: 30px 60px;
    margin-bottom: 100px;
}
.banner-01 .container-990 p span{
    float: left;
    width: 100%;
}

.bg-001{
    float: left;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    /* background: url('../images/banner-01-HD.webp') no-repeat top center; */
    /* background-size: 100%; */
    padding-top: 110px;
    
  transition: transform 2s;
}

@media screen and (min-width: 1000px){
    .bg-001:hover .bg-001-img>img{
        /* background-size: 140%; */
        transform: scale(1.4);
    }
}
.bg-001-img{
    float: left;
    margin: -180px auto 0;
    width: 100vw;
    height: 0;
}
.bg-001-img img{
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 1053px;
    transform: scale(1);

    transition: 7s;
}

.font-white
{
    color: white;
}

.font-bluez
{
    color: #3fd7c9;
}

.titulonovo {
    
    padding-left: 20px;
}

.bg-002 h2{margin-left: 00px;}

.bg-002b h2{
    width: 100%;
    text-align: center;
}
    .bg-002b h2 span{
        color: var(--zenite-star);
    }

.banner-s2b{
    float: left;
    margin: -60px auto;
    margin-bottom: 30px;
    width: 100%;
    padding: 60px 100px;
    background-color: #021d6c;
    border-radius: 30px;
}

.banner-02{
    float: left;
    width: 100%;
}
    .banner-02 img{
        width: 130%;
        margin-left: -9vw;
        margin-top: 50px;
    }
.banner-05{
    float: left;
    width: 40%;
    text-align: right;
}
    .banner-05 img{
        max-width: 450px;
        width: 100%;
    }
.banner-06{
    float: left;
    width: 100%;
    text-align: center;
}
    .banner-06 img{
        width: 100%;
        margin: 100px auto;
    }
.banner-08{
    float: left;
    width: 100%;
    height: 850px;
    object-fit: cover;
}
    .banner-08 img{
        width: 100%;
    }
.clock{
    float: right;
    height: 0;
    margin-right: -50px;
}
    .clock img{width: 50px;}
.img-pin{
    float: left;
    width: 100%;
    margin: 60px auto 20px;
}

.area-complexidade{
    float: left;
    width: 100%;
    margin: -50px auto 0;
}
.quotes1{
    float: left;
    margin: 0px 0 0 -10px;
    width: 100%;
    text-align: left;
}
.quotes2{
    float: left;
    width: 100%;
    height: 0;
    text-align: left;
}
.quotes2 img{
    float: left;
    width: 323px;
    height: 252px;
    margin: -150px 0 0 -150px;
}
.bg-002{  overscroll-behavior-x: contain;}
.bg-002 .container-1350{
    border-bottom: 1px solid;
    border-color: var(--gray2);
}
.bg-003{
    float: left;
    margin: 0 auto;
    width: 100%;
    background: url('../images/banner-03-HD.webp') no-repeat top center;
    background-size: contain;
}
.bg-003-color{
    float: left;
    margin: 0 auto;
    width: 100%;
    background: var(--blue5);
}
.bg-007{
    float: left;
    margin: 0 auto;
    width: 100%;
    background: url('../images/banner-07-HD.png') no-repeat top center;
    background-size: cover;
}
.img-numeros{
    float: left;
    width: 100%;
}
    .img-numeros img{
        width: 100%;
    }
.img-curso{
    width: 100%;
    max-width: 500px;
}
    .img-curso img{
        float: left;
        width: 100%;
        object-fit: contain;
    }


/* Buttons */
.btn-saiba-mais{
    float: left;
    background-color: #31b2a6;
    height: 80px;
    border-radius: 40px;
    color: var(--white);
    line-height: 80px;
    width: 430px;
    text-align: center;
    border: 3px solid;
    border-color: #31b2a6;
    margin: -140px calc(50% - 215px) 0;
    position: relative;
}
    .btn-saiba-mais:hover{
        background-color: var(--white);
        color: #31b2a6;
    }
.btn-programa{
    float: left;
    margin: 40px calc(50% - 325px);
    border: 2px solid #021d6c;
    background-color: #021d6c;
    color: var(--white);
    font-size: 2rem;
    border-radius: 2.25rem;
    height: 4.375rem;
    padding: 0.75rem 2.5rem;
    text-align: center;
    width: 650px;
    font-weight: 600;
}
    .btn-programa:hover{
        color: #021d6c;
        background-color: var(--white);
    }
.btn-programa2{
    float: left;
    
    margin: 80px calc(50% - 325px);
    border: 2px solid #269fba;
    background-color: #269fba;
    color: var(--white);
    font-size: 2rem;
    border-radius: 2.25rem;
    height: 4.375rem;
    padding: 0.75rem 2.5rem;
    text-align: center;
    width: 650px;
    font-weight: 600;
    line-height: 1.3em;
}
    .btn-programa2:hover{
        color: #269fba;
        background-color: var(--white);
    }
.btn-atualize{
    float: left;
    margin: 40px calc(50% - 375px);
    border: 3px solid var(--zenite-star);
    background-color: transparent;
    color: var(--zenite-star);
    font-size: 2.5rem;
    border-radius: 4.375rem;
    height: 8.75rem;
    text-align: center;
    width: 750px;
    line-height: 8.125rem;
    font-weight: 600;
    transition: .3s;
    cursor: initial;
}
    /* .btn-atualize:hover{
        background-color: var(--zenite-star);
        color: var(--white);
    } */
.btn-desenvolva{
    float: left;
    margin: 100px calc(50% - 375px);
    border: 3px solid var(--white);
    background-color: transparent;
    color: var(--white);
    font-size: 2rem;
    border-radius: 4.375rem;
    height: 8.75rem;
    text-align: center;
    width: 750px;
    line-height: 8.125rem;
    font-weight: 600;
    filter: drop-shadow(0px 12px 10px #484848);
    transition: .3s;
    cursor: initial;
}
    /* .btn-desenvolva:hover{
        background-color: var(--white);
        color: var(--blue);
    } */
.btn-desenvolva2{
    float: left;
    width: 750px;
    background-color: var(--yellow3);
    border-radius: 4.375rem;
    height: 8.75rem;
    color: var(--blue);
    line-height: 8.125rem;
    text-align: center;
    border: 3px solid;
    border-color: var(--yellow3);
    margin: -70px calc(50% - 375px) 0;
}
    /* .btn-desenvolva2:hover{
        background-color: var(--white);
    } */
.btn-website{
    display: block;
    margin: 100px calc(50% - 250px);
    border: 3px solid var(--white);
    background-color: transparent;
    color: var(--white);
    font-size: 2.5rem;
    border-radius: 3rem;
    height: 6rem;
    text-align: center;
    width: 500px;
    line-height: 5.5rem;
    transition: .3s;
}
    .btn-website:hover{
        background-color: var(--white);
        color: var(--blue);
    }
.btn-curriculo{
    color: var(--white);
    width: 100%;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 1.875rem;
    padding: 0 1rem;
    text-align: left;
}
    .btn-curriculo span{
        float: right;
        width: 100%;
        text-align: right;
    }
.btn-passo{
    float: left;
    margin: 40px calc(50% - 375px);
    border: 2px solid var(--white);
    background-color: var(--white);
    color: var(--primary);
    font-size: 2.25rem;
    border-radius: 4.375rem;
    height: 8.75rem;
    line-height: 8.125rem;
    text-align: center;
    width: 750px;
    font-weight: 600;
}
    .btn-passo:hover{
        color: var(--white);
        background-color: transparent;
    }
.btn-calendario{
    float: left;
    margin: 40px calc(50% - 375px);
    border: 2px solid var(--blue);
    background-color: var(--blue);
    color: var(--white);
    font-size: 2.25rem;
    border-radius: 4.375rem;
    height: 8.75rem;
    line-height: 8.125rem;
    text-align: center;
    width: 750px;
    font-weight: 600;
}
    .btn-calendario:hover{
        color: var(--blue);
        background-color: transparent;
    }



/* GRID & Container*/
.ovfw-hidden{overflow: hidden;}
.f-right{float: right !important;}
.flex{display: flex;}
.inline-bloc{display: inline-block;}


.flex-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.flex-container2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flex-container3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 80px;
}
.flex-container4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flex-item0 {
    text-align: center;
    display: grid;
    align-items: center;
    justify-content: center;
    align-self: start;
}
.flex-item1 {
    text-align: left;
   
    align-items: center;
    justify-content: center;
    align-self: stretch;
}
.flex-item2 {
    text-align: center;
    display: grid;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    width: 350px;
    max-width: 30%;
    margin: 20px 1.5%;
}
.flex-item2 img{
    float: left;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    aspect-ratio: 1 / 1;
}
.flex-item4 {
    text-align: center;
    display: grid;
    align-items: center;
    justify-content: center;
    align-self: stretch;

    width: 46%;
    margin: 40px 2%;
}

.shadow{
    -webkit-box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.4);
}
.shadow2{
    filter: drop-shadow(0px 12px 10px #484848);
}

.grid    {float: left;}
.grid-1  {width: 100%; margin: 0 auto;}
.grid-2  {width: 50%;}
.grid-3  {width: 33.33%;}
.grid-4  {width: 25%;}
.grid-35 {width: 35%;}
.grid-40 {width: 40%;}
.grid-60 {width: 60%;}
.grid-65 {width: 65%;}
.grid-70 {width: 70%;}
.grid-80 {width: 80%;}

.container-920  {width: 57.5rem; margin: 0 auto; max-width: 90vw;}
.container-990  {width: 61.875rem; margin: 0 auto; max-width: 95vw;}
.container-9900  {width: 40.875rem; margin: 0 auto; max-width: 75vw;}
.container-1140 {width: 71.25rem; margin: 0 auto; max-width: 95vw;}
.container-1350 {width: 84.375rem; margin: 0 auto; max-width: 95vw;}
.container-1600 {width: 100rem; margin: 0 auto; max-width: 95vw;}

.half {width: 50%; float: left;}

.half1 {width: 35%; float: left;}

.half2 {width: 65%; float: left;}

.w100 {width: 100%; max-width: 100vw; margin: 0 auto;}
.w90  {width: 90%; margin: 0 auto;}
.w70  {width: 70%; margin: 0 auto; float: left;}
.w60  {width: 60%; margin: 0 auto; float: left;}
.w55  {width: 55%; margin: 0 auto; float: left;}
.w45  {width: 45%; margin: 0 auto; float: left;}
.w40  {width: 40%; margin: 0 auto; float: left;}

.h100 {height: 6.25rem;}

.container-prof{
    width: 15rem;
    margin: 0 1rem 3rem;
}
    .container-prof>button{
        background-color: transparent;
        width: 100%;
        display: inline-block;
        align-self: flex-end;
        border: none;
        max-width: 25rem;
        cursor: pointer;
        transition: .3s;
    }
    .container-prof>button:hover{
        opacity: .4;
    }
.container-zntn{

}
#prof ul li{
    margin: 16px 0;
}
#prof ul li::marker {
    color: var(--zenite-star);
  }
.box-quote{
    padding: 80px;
    background-color: var(--blue2);
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.4);
    margin-bottom: 80px;
}
.box-valor1{
    border-radius: 30px;
    background: rgb(44,94,120);
    background: linear-gradient(0deg, rgba(44,94,120,1) 0%, rgba(16,22,29,1) 0%, rgba(19,45,65,1) 100%);
}
.box-valor2{
    border-radius: 30px;
    padding: 50px;
    background-color: var(--yellow2);
}
    .box-valor2 li{
        color: var(--blue);
        font-weight: 500;
        margin: 10px auto;
        list-style-image: url('../images/check-blue2.webp');
        font-size: 1.375rem;
        padding-left: 20px;
    }

.box-valornew{
    border-radius: 30px;
    padding: 90px 700px 40px 70px;
  
}

    .box-valornew li{
        color: white;
        font-weight: 500;
        margin: 10px auto;
        list-style-image: url('../images/check-white.png');
        font-size: 1.375rem;
        padding-left: 20px;
    }

.box-valor3{
    float: right;
    width: 60%;
    border-radius: 30px;
    padding: 50px;
    background-color: var(--blue4);
}
.blu-label{
    float: left;
    width: calc(100% - 250px);
    padding: 50px 30px;
    
}
.blu-label-in{
    float: left;
    background: rgb(47,127,171);
    background: linear-gradient(90deg, rgba(44,94,120,.8) 0%, rgba(47,127,171,.8) 50%, rgba(44,94,120,.8) 100%);
    width: 650px;
    padding: 10px 40px;
    margin-left: -270px;
    position: relative;
    z-index: -1
        
}
.checkmark{
    float: left;
    width: 32px;
    margin-right: 30px
}
    .checkmark img{
        height: 32px;
    }


.checkmark2{
    float: left;
    width: 32px;
    margin-right: 30px
}
    .checkmark2 img{
        height: 50px;
    }


.container-evento{
    width: 30%;
    margin: 20px 1.5%;
}
.container-opiniao{
    width: 30%;
    min-width: 295px;
    margin: 20px 1.5%;
    background-color: rgba(17, 95, 113, .7);
    padding: 40px;
}

/* Menu Mobile BTN */

.btn-menu{
    float: right;
    width: 100%;
    margin-top: -18px;
    padding: 0 16px;
}

.hide-mobile{display: none;}
/* .btn-mobile:focus ~ #mobile1{display: block;} */
.mobile1{list-style-type: none; padding: 0;}
.mobile1 a{float: left; width: 100%; text-align: center; var(--gray2); padding: 0 16px; margin: 10px 0; color: var(--black); text-transform: uppercase;}


.dropdown-arrow2{
    float: right;
    width: 36px;
    height: 36px;
    background: url('../images/menu.png') no-repeat center center;
    background-size: 22px 22px;
    border-radius: 8px;
    background-color: var(--gray3);
    transition: .3s all;
    cursor: pointer;
    margin-top: -38px;
}
    .dropdown-arrow2:hover{
        background-color: var(--gray);
    }

.dropdown2{
    float: left;
    width: 100%;
}
.btn-menu li{
    float: left;
    width: 100%;
    padding: 0 16px;
    background-color: var(--gray2);
    border-radius: 12px;
    margin: 6px 0;
}
    .dropdown2 p{
        color: var(--black);
}

/* FAQ */
.container-04{
    width: 100%;
    max-width: 45rem;
    margin: 0.75rem auto 0;
    overflow: hidden;
    transition: .5s all;
}
    .container-04>.content{
        display: block;
        border-bottom: 1px solid var(--gray2);
        padding: 1.25rem 3.125rem;
    }
.a-white{color: var(--white); text-decoration: underline;}
.a-white:hover{opacity: .3;}
.hide-faq{display: none;}
.rotateFaq {transform: rotate(-135deg);} 

#faq .btn-faq1 p{
    float: left;
    font-weight: 600;
    width: calc(100% - 50px);
    color: white;
}
.dropdown{
    float: left;
    width: 100%;
    padding: 1.25rem 1.563rem;
    background-color: #051d5e;
}
    .dropdown p{
        color: white;;
}
.dropdown-arrow{
    float: right;
    width: 36px;
    height: 36px;
    background: url('../images/plus.webp') no-repeat center center;
    background-size: 22px 22px;
    border-radius: 50%;
    background-color: var(--white);
    border: 0;
    transition: .3s all;
    cursor: pointer;
}
.dropdown-arrow:hover{
    background-color: var(--gray);
}

/* Margin & Padding */
.margin0        {margin: 0;}
.margin-center  {margin-left: auto; margin-right: auto;}

.margin-t-350   {margin-top: -350px;}
.margin-t10     {margin-top: 10px;}
.margin-b20     {margin-bottom: 20px;}

.margin-tb30    {margin-top: 30px; margin-bottom: 30px;}
.margin-tb50    {margin-top: 50px; margin-bottom: 50px;}

.pad-lr30   {padding-left: 30px; padding-right: 30px;}
.pad-lr40   {padding-left: 40px; padding-right: 40px;}
.pad-lr60   {padding-left: 60px; padding-right: 60px;}
.pad-lr70   {padding-left: 70px; padding-right: 70px;}
.pad-l40    {padding-left: 40px;}
.pad-l50    {padding-left: 50px;}
.pad-l55    {padding-left: 55px;}

.pad-tb80   {padding-top: 80px; padding-bottom: 80px;}
.pad2-tb20  {padding-top: 1.25rem; padding-bottom: 1.25rem;}
.pad2-tb50  {padding-top: 3.125rem; padding-bottom: 3.125rem;}
.pad2-tb100 {padding-top: 6.25rem; padding-bottom: 6.25rem;}
.pad2-tb150 {padding-top: 9.375rem;padding-bottom: 9.375rem;}
.pad2-tb200 {padding-top: 12.5rem; padding-bottom: 12.5rem;}

.pad-t100  {padding-top: 100px;}
.pad-t80 {padding-top: 70px;}
.pad2-t50  {padding-top: 3.125rem;}
.pad2-t100  {padding-top: 5.125rem;}
.pad2-t200  {padding-top: 12.5rem;}
.pad-b10    {padding-bottom: 10px;}
.pad-b250   {padding-bottom: 250px;}
.pad-b25   {padding-bottom: 25px;}

/* Fonts & Paragraphs */
.t-left{text-align: left;}
.t-center{text-align: center;}
.t-right{text-align: right;}

.font-primary {font-family: Myriad Pro, roboto, arial, helvetica, sans-serif;}
.font-secondary {font-family: Indivisible, arial, helvetica, sans-serif;}
.font-third {font-family: arial, helvetica, sans-serif;}

.font-14 {font-size: 0.875rem;}
.font-16 {font-size: 1rem;}
.font-17 {font-size: 1.063rem;}
.font-18 {font-size: 1.125rem;}
.font-20 {font-size: 1.25rem;}
.font-22 {font-size: 1.375rem;}
.font-24 {font-size: 1.35rem;}
.font-26 {font-size: 1.425rem;}
.font-266 {font-size: 1.525rem;}
.font-28 {font-size: 1.3rem;}
.font-30 {font-size: 1.675rem;}
.font-32 {font-size: 2rem;}
.font-34 {font-size: 2.125rem;}
.font-40 {font-size: 2.25rem;}
.font-45 {font-size: 2.13rem;}
.font-50 {font-size: 2.525rem;}
.font-55 {font-size: 3.438rem;}
.font-60 {font-size: 3.75rem;}
.font-80 {font-size: 4rem;}
.font-90 {font-size: 5.625rem;}
.font-100{font-size: 4.25rem;}

.weight3 {font-weight: 300;}
.weight4 {font-weight: 400;}
.weight5 {font-weight: 500;}
.weight6 {font-weight: 600;}
.weight7 {font-weight: 700;}
.weight9 {font-weight: 900;}

.italic {font-style: italic;}
.cond   {font-stretch: condensed;}
.upper  {text-transform: uppercase;}
.lower  {text-transform: lowercase;}

.line-08 {line-height: 0.813rem;}
.line1-6 {line-height: 1.6rem;}
.line2 {line-height: 2rem;}
.line2-5 {line-height: 2.5rem;}
.line3 {line-height: 3rem;}
.line-07em {line-height: .7em;}
.line1-4em {line-height: 1.4em;}
.line1-6em {line-height: 1.6em;}

.color-white    {color: var(--white);}
.color-gray     {color: var(--gray);}
.color-dark     {color: var(--black);}
.color-primary  {color: var(--primary);}
.color-second   {color: var(--second);}

.color-blue     {color: var(--blue);}
.color-star     {color: var(--zenite-star);}
.color-ylw     {color: var(--yellow);}
.color-ylw2     {color: var(--yellow2);}
.color-ylw3     {color: var(--yellow3);}

#prof h2{
    float: left;
    width: 100%;
    text-align: center;
    margin: 150px auto 100px;
}
.title-01{
    float: left;
    width: 100%;
}
.txt-curso{
    float: left;
    margin-top: 70px;
    width: calc(100% - 45px);
}
.txt-curso2{
    float: left;
    color: var(--blue);
    margin: -200px 0 0 100px;
    width: calc(100% + 200px);
    margin-bottom: 150px;
}
.prof-name{
    padding-left: 1rem;
    margin-top: 50px;
    width: 100%;
    text-align: left;
}
.prof-choose-h3{
    margin: 50px 0 30px;
    float: right;
    width: calc(100% - 400px);
}
.prof-descricao{
    color: var(--white);
    font-style: italic;
    float: right;
    width: calc(100% - 400px);
    padding-bottom: 40px;
}
#investimento h2{
    margin-bottom: 50px;
}
.early-h2{
    width: 100%;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    font-weight: 300;
    background: rgb(49,115,131);
    background: linear-gradient(180deg, rgba(49,115,131,1) 0%, rgba(35,39,153,1) 100%);
}
.container-opiniao p{
    color: var(--white);
}
.hotel h3{
    display: inline-block;
    margin: 100px auto;
}


/* Pop-up */
.no-scroll{overflow: hidden;}

.btn-full-screen{
    float: left;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    background-color: transparent;
    border: none;
}

.prof-full{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.6);
    z-index: 9999;
}
.prof-full-content{
    width: 1600px;
    height: 100vh;
    max-width: 100%;
    margin: 0 auto 0;
    background-color: rgba(0,0,0,.7);
    padding: 100px;
    position: relative;
    z-index: 99;
    display: grid;
}
.prof-choose{
    width: 100%;
    display: none;
    background-color: rgba(14, 57, 90, .7);
    float: left;
    padding-right: 50px;
    overflow-y: scroll;
}
.prof-img1{
    float: left;
    display: contents;
    object-fit: cover;
    -webkit-box-shadow: 0px 20px 15px 2px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 20px 15px 2px rgba(0,0,0,0.4);
    box-shadow: 0px 20px 15px 2px rgba(0,0,0,0.4);
    border-radius: 30px;
}
    .prof-img1 img{
        width: 100%;
        height: auto;
        overflow: hidden;
        border-radius: 30px;
    }
.prof-img2{
    position: fixed;
    height: calc(100vh - 200px);
}
    .prof-img2 img{
        width: 340px;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
.btn-voltar{
    font-style: italic;
    color: #ffffff;
    background-color: transparent;
    border: 0px;
    cursor: pointer;
    margin: -60px 0 0 0;
    font-size: 20px;
    text-transform: uppercase;
    width: 100%;
    position: fixed;
    left: 0;
    z-index: 99999;
}
.btn-voltar:hover{text-decoration: underline;}

.show-popup{display: block !important;}
#popup{display: none;}


/* Splide */

.caroussel-02 {
    width: 100%;
    margin: 0px auto;
    overflow: hidden;
    padding: 0 30px;
}
.container2 {
    width: 1392px;
    margin: 0px auto;
}
.caroussel-02>.splide__arrows>.splide__arrow{top: 210px !important;}
.caroussel-slide {}

/* .caroussel-02>.splide__arrows>.splide__arrow--prev,
.caroussel-02>.splide__arrows>.splide__arrow--next{display: none;} */

.galeria-fig{
    float: left;
    height: auto;
    margin: 25px;
}
    .galeria-fig img{height: 245px;}

.btn-galeria{
    margin-top: -415px;
    margin-bottom: 320px;
}



/* HD */
@media screen and (max-width: 1200px){
    .myMenu>.menu-container{margin: 0 0;}
    .myMenu ul {width: calc(100% - 96px - 200px); margin-left: 0;}
    .menu-social{width: 200px;}
    .menu-social a{width: 100%; margin: 0;}
    .menu-social a img{width: 100%; height: auto !important;}
    .myMenu ul > li > a {font-size: 13px;}

    /* Contents */
    .area-complexidade {margin: 40px 0 0; text-align: left;}

    .prof-full-content{overflow: hidden;}

    .banner-02 img{width: calc(100% + 220px); margin-left: -160px;}
    .quotes1{width: 140%; margin-left: -40vw;}
    .txt-curso2{width: 80vw; margin-left: -40vw;}
    
    .selo-nota{margin-right: 0;}

    .clock{margin-right: -255px;}

    .banner-08{height: 650px;}

}

/* CRT */
@media screen and (max-width: 1050px){
    .prof-full-content{padding: 60px;}
}

/* HQ */
@media screen and (max-width: 1000px){
    .tb-hide{display: none;}
    .tb-h100{height: 100px !important;}
    .tb-h150{height: 150px !important;}

    img{max-width: 100%;}
    
    /* images */
    /* .bg-001{background: url('../images/banner-01-HQ.webp') no-repeat center center; background-size: cover;} */
    .bg-003{background: url('../images/banner-03-HQ.webp') no-repeat center center; background-size: cover;}
    .bg-007{background: url('../images/banner-07-HD.png') no-repeat center center; background-size: cover;}

    /* Menu */
    .menu-logo{margin-top: 30px;}
    .myMenu{height: 90px; padding-left: 20px; padding-right: 20px;}
    .myMenu>.menu-container>ul{width: auto; margin: 40px 0 0; float: right;}
    .myMenu>.menu-container>ul>li>a{font-size: 10px;}
    .tablet-hide{display: none !important;}

    /*BTN*/

    .btn-passo, .btn-calendario, .btn-programa2, .btn-desenvolva, .btn-atualize
    {width: 100%; margin-left: auto; margin-right: auto;}
    .btn-website{width: 95%; margin-left: 2.5%; margin-right: 2.5%;}
    .btn-desenvolva2
    {width: 95vw; margin-left: 2.5vw; margin-right: 2.5vw;}

    /* Footer */
    .footer-logo{margin: 0 calc(50% - 7.5rem) 50px; width: 15rem;}
    footer .pad-lr30{width: 33.333%;}

    /* Contents */
    .banner-01{width: 95%; margin: 0 2.5%;}
    .banner-h1{width: 100%; margin: 40px auto; padding: 30px;}
    .banner-01 .container-990 {margin: 0; padding: 0; width: 100%;}
    .banner-01 .w55{width: 95%; margin: 20px 2.5%; text-align: center;}
    .banner-01 .w45{width: 95%; margin: 20px 2.5% 100px; text-align: center}


    .bg-002 .half{width: 100%;}
    .bg-002 h2{width: 100%; margin: 0;}
    .quotes1{width: 100%; margin: 0;}
    .txt-curso2{width: 100%; margin: -100px 0 0;}

    .banner-s2b .grid-3{width: 80%; margin: 30px 10%;}

    .video{margin-top: -150px;}

    .prof-full-content{margin: 0; padding: 40px; height: 100vh;}
    .prof-choose{padding: 25px; overflow-y: scroll;}
    .prof-img2{width: 100%; height: 300px; overflow: hidden; margin: 0; position: initial;}
    .prof-img2 img{border-radius: 30px;}
    .prof-choose-h3{text-align: center; font-size: 30px !important; width: 100%;}
    .prof-descricao{width: 100%;}
    .btn-voltar{position: absolute; top: 15px; text-align: center; width: 100%; left: 0; margin: 0;}
    #prof .pad-b250{padding-bottom: 700px;}

    #investimento .half{width: 70%; margin: 0 15%;}
    #investimento .pad-lr80{padding-left: 40px; padding-right: 40px;}
    #investimento .margin-t-350{margin-top: -790px;}

    .blu-label{width: 100%;}
    .blu-label-in{width: 100vw; margin-left: -50.5vw;}

    .box-valor2, .box-valor3{width: 100%;}
    .box-valor1 h3{float: left;}
    .material{width: 100%;}
    .material img{width: 800px; max-width: 95%; margin-bottom: 20px; margin-top: -70px}
    .ribbon{padding-top: 50px; width: 200px;}
    .box-valor1 .color-ylw3{padding: 0; width: calc(100% - 260px);}
    .box-valor1>.color-white{width: 100%; padding-bottom: 100px;}

    #prof .box-ul{width: 80%; margin: 0 10%;}
    .box-quote{width: 80%; margin: 20px 10%;}
	.hotel {border-radius: 30px 30px 0 0; }
    
    .bg-001 .bg-001-img>img{
        object-fit: cover;
        height: 1300px;
    }

    /* Splide */
    .splide__arrow--prev{/* left: 1em !important; */ left: 15px !important;}
    .splide__arrow--next{right: 1em !important;}
	
}

/* SD */
@media screen and (max-width: 640px){
    
    
    .titulonovo {
    padding-left: 0px;
        padding-top: 750px !important
}
    
    .sumir1 {
        display: none
    }
    
    
    .custom-title {
   
    
    color: #ffffff; /* Cor do texto */
    padding: 30px 30px; /* Espaçamento interno */
 background: url('../images/retangulo.png') no-repeat center;
}

.txt-curso9 {
    float: left;
   padding: 30px;
    margin: 0 calc(100% - 400px);
   
}
    
  
.custom-title2 {
    
    
    padding: 30px 30px; /* Espaçamento interno */
 background: none;
}
    
  
.custom-title span {
    font-weight: bold; /* Peso do texto */
}

   .pad2-tb100 {
    padding-top: 6.25rem;
    /* padding-bottom: 6.25rem; */
} 
    
    .txt-curso {
        margin-bottom: 80px;
    }
    
    .sumir {
        display: none;
    }
    
    .img-logo {
    width: 100%;
        margin-top: 120px;
    height: 700px;
    background: url(../images/logoimersaomobile.png) no-repeat top center;
}
    
   
    
    .custom-title {
    color: #ffffff;
    padding: 30px 30px;
    background: none;
}
    
        .bg-002 h2 {
        width: 100%;
        margin-top: 30px;
            margin-bottom: 30px;
    }
    
    .txt-curso {
    float: left;
    margin-top: 0px;
    width: calc(100% - 45px);
}
    
    .m-h50{height: 50px !important;}
    .m-hide{display: none;}
    .m-show{display: block;}

    h1{font-size: 1.875rem;}
    h2{font-size: 2.25rem;}
    h3{font-size: 2.25rem !important;}

    .container-1140{max-width: 100vw;}

    /* images */
    /* .bg-001{background: url('../images/banner-01-SD.webp') no-repeat center center; background-size: cover;} */
    .bg-003{background: url('../images/banner-03-SD.webp') no-repeat center center; background-size: cover; background-attachment: fixed;}
    .bg-007{background: url('../images/banner-07-HD.png') no-repeat center center; background-size: cover; background-attachment: fixed;}

    /* Contents */
    h2{display: block;}
    .grid {float: none;}
    .grid-2, .grid-3, .grid-35, .grid-40, .grid-60, .grid-65, .grid-70, .grid-80 {width: 100%; padding: 10px;}
    .container-920, .container-990, .container-1140{width: 100%;}
    #documentacao .container-1140{padding: 10px;}

    figure{max-width: 100%;}
    
    .bg-001{padding-top: 0;}
    .banner-01{width: 90%; margin: 0 5%;}
    .btn-saiba-mais{width: 70%; margin-left: 50px; margin-right: 0;}
    .bg-002 .half{padding-left: 10px; padding-right: 10px;}
    .txt-curso{width: 100%;}
    .txt-curso2{font-size: 1.875rem;}
    .quotes1{max-width: 60vw;}

    .checkmark{height: 120px;}
    .banner-s2b .font-30{font-size: 24px;}
    .banner-s2b .font-45{font-size: 36px; float: left; width: calc(100%  - 62px);}
    .banner-s2b .italic{float: left; width: calc(100%  - 62px);}
    .banner-s2b{padding: 0;}
    .banner-s2b .grid-3{margin: 30px 5%; width: 90%; float: left;}
    .video {margin-top: -70px;}

    .btn-programa{width: 100%; margin: 0 auto; height: auto;}
    .btn-atualize, .btn-desenvolva, .btn-programa2, .btn-desenvolva2, .btn-calendario, .btn-passo{height: auto; line-height: 3rem; padding: 20px 0; font-size: 30px;}
    .btn-desenvolva{margin-top: 0px; width: 95%; margin-left: 2.5%; margin-right: 2.5%; margin-bottom: 40px; display: none}
    
    .padmob {
        padding-left: 0px;
    }
    
    .marginmob {
        margin-bottom: 20px
    }
    
    .box-valornew {
    border-radius: 30px;
    padding: 1260px 30px 0px 50px;
}
    
    .condicao img {
    width: 90%;
        margin-bottom: 40px
}
    
    .inestirmob { margin-top: 60px; margin-bottom: 30px !important;}
    
    #prof h2{margin-top: 60px;}
    #prof .box-ul {padding: 0 10px;}
    .quotes2 img{margin: -80px 0 0 -30px; width: 50vw; height: auto;}
    .box-quote{margin: 30px 12px; padding: 30px 20px;}
    .box-quote .font-50{font-size: 32px;}
    .box-quote .font-30{font-size: 26px;}
    .prof-img2 img{width: 100%;}
    .margin-t-350{margin-top: -640px;}
    .grt-02{padding-bottom: 540px;}

    .box-valor2 .font-50{font-size: 2.25rem; padding-left: 0;}
    .box-valor2 .font-34{padding-left: 0;}
    
    
    .condicao{
    float: left;
    width: 95%;
    padding: 50px 0 0 0px;
    text-align: center;
}


    .ribbon{width: 100%; padding-left: 0; text-align: center;}
    .box-valor1 .color-ylw3{width: 90%; margin-left: 5%; margin-right: 5%;}
    .box-valor1 > .color-white{width: 90%; margin-left: 5%; margin-right: 5%; padding-left: 0; padding-right: 0;}

    .banner-05 {width: 100%; text-align: center;}
    .bg-white2 .w60 {width: 100%; margin: 0; padding: 0;}
    .bg-white2 .w60 h2{float: left; padding: 30px 0;}
    .bg-white2 .w70{float: left; width: 100%; padding: 30px 0;}
    .blu-label {padding: 0;}
    .blu-label-in {width: 100%; margin: 0; padding: 16px; height: 110px;}
    #faq .blu-label-in p{width: calc(100% - 62px); text-align: left;}
    .blu-label-in .checkmark{float: left!important;}

    .box-valor1{float: left !important;}
    .box-valor2{padding: 20px;}
    .box-valor2 .font-80{font-size: 50px;}

    #encontro .half{width: 100%; padding: 20px;}

    .container-04 > .content{padding-left: 10px; padding-right: 10px;}
    .popup-faq p{width: 100%; font-size: 1.25rem;}

    .prof-img1{display: block; float: none;}
    .prof-img1 img{width: 100%; height: auto;}
    .prof-full-content{padding: 60px 0 0; overflow-y: scroll;}

    #investimento .half{width: 100%; margin: 0;}
    #investimento .half>.font-90{font-size: 72px;}
    #investimento .pad-lr40{padding: 0;}

    #onde .half{width: 100%;}
    #onde .pad-lr50{padding: 0;}
    .selo-nota{width: 100%; margin: 30px 0 0;}

    #relacionado>.pad2-tb150>.pad2-tb150{padding: 0;}
    #relacionado>.pad2-tb150{padding: 150px 0 0;}
    #numeros>.half{width: 100%;}
    #numeros h2{text-align: center;}
    #numeros .pad-t100{padding-left: 0; padding-right: 0; padding-bottom: 80px;}
    .flex-item4{width: 100%;}
    .banner-08{height: auto;}
    .flex-item2{padding: 0; width: 80%; margin: 20px 10%; max-width: 100%;}

    #documentacao{padding: 50px 0;}

    .container-evento{width: 90%;}

    /* Menu */
    .myMenu {display: none;}
    .menuMobile{display: block;}

    /* Footer */
    footer .container-990, footer .container-1140{padding-bottom: 0;}
    footer .container-990>div{padding: 0;}
    .footer-social a{width: 50%; float: left; margin: 30px 0;}
    footer a, footer p{text-align: center;}
    footer .border-04{border: 0px;}
    footer .pad-lr50, footer .pad-l50{padding: 0;}
    footer br{display: none;}
    .footer-social{width: 100%; text-align: center; margin-top: -100px;}
    footer .flex-container2>p{width: 100%; text-align: center; margin-top: 60px;}
    footer .pad-lr30{width: 80%; margin: 20px 10%;}
    footer .pad-lr70{padding: 15px 0;}
    footer{padding-bottom: 15px !important;}

    /* Splide */
    /* .splide__arrows{display: none;} */
    .caroussel-02>.splide__arrows>.splide__arrow{top: 450px !important;width: 4rem;height: 4rem;}
    .caroussel-02{height: 500px;overflow-x: hidden;overflow-y: visible;}
    .caroussel-slide>.flex-container>.container-opiniao:first-child{display: none;}
    .caroussel-slide>.flex-container>.container-opiniao:last-child{display: none;}

    
}

@media screen and (min-width: 1050px){
    
    #curso, #scrollprof, #valor2 {
        margin-left: 4000px;
        transition: all 1s cubic-bezier(0.1, .5, 0.1, 1.1);
    }

    #agenda, #valor1, #relacionado {
        margin-left: -4000px;
        transition: all 1s cubic-bezier(0.1, .5, 0.1, 1.1);
    }

}