@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rokkitt:wght@100;200;300;400;500;600;700;800&display=swap');

html,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
ol,
ul {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
    background-color: black;
    overflow-x: hidden;
}

/* ====================== CONTAINER HEADER ===========================*/

#header {
    width: 96%;
    padding: 11px 36px;
    display: flex;
    align-items: center;
    position: fixed;
    justify-content: space-between;
    z-index: 1110;
    border-bottom: 1px solid #28282866;
}

.style-header {
    width: 100%;
    height: 70px;
}

#logo img {
    width: 100px;
}

#img-logo-pre {
    display: none;
}

#menu {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

#menu a {
    display: block;
    font-size: 17px;
    color: white;
}

#botao-submenu button {
    background-color: transparent;
    border: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

#botao-submenu {
    background-color: transparent;
    border: none;
    display: flex;
    gap: 8px;
    align-items: center;
}


#botao-submenu button img {
    width: 18px;
    margin: 1px 0px 0px 1px;
}

#btn-mobile {
    display: none;
}


/* ====================== CONTAINER MAIN HEADLINE ===========================*/

.container-headline video {
    top: 0;
    left: 0;
    object-fit: cover;
    position: absolute;
    width: 100vw;
    z-index: -10;
    height: 90vh;
}

.div-text {
    height: 82vh;
    margin: 0px 0px 0px 95px;
    display: flex;
    flex-direction: column-reverse;
}

.container {
    margin-bottom: 92px;
}

.div-text h1 {
    font-weight: 300;
    font-size: 63px;
    color: white;
    text-shadow: #272727 2px 6px 6px;
    width: 575px;
    line-height: 0.9;
    height: 167px;
}

.typed-text {
    font-weight: 300;
    font-size: 63px;
    line-height: 1;
    color: white;
    text-shadow: #272727 2px 6px 6px;
}

.barra {
    color: white;
    font-size: 60px;
    font-weight: 200;
    margin-left: -8px;
}

.div-text h2 {
    line-height: 1;
    font-weight: 300;
    color: #ffffff;
    font-size: 18px;
    margin: 0px 6px 16px 3px;
    text-shadow: #272727 2px 6px 6px;
    width: 296px;
}

.div-text button {
    background-color: #ffffff;
    border: none;
    justify-content: center;
    gap: 11px;
    width: 258px;
    height: 40px;
    border-radius: 2px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-left: 4px;
    transition: 0.5s ease-out;
}

.div-text button:hover {
    border-radius: 33px;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}


.gif-video-mobile {
    display: none;
}

.gif-mundo-mobile {
    display: none;
}

/* ======================  CONTAINER PROVA SOCIAL ===========================*/

.container-provasocial {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 25px auto 0px;
    padding: 0px 0px 22px 0px;
    border-bottom: 1px solid #161616;
}


.provasocial-text h2 {
    font-size: 19px;
    color: #f4f4f4;
    margin-bottom: 15px;
}

.marquee {
    width: var(--marquee-width);
    height: var(--marquee-height);
    background-color: rgb(0, 0, 0);
    color: #eee;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
}

.marquee:before,
.marquee:after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
}

.marquee:before {
    left: 0;
    background: linear-gradient(to right, rgb(0, 0, 0) 0%, transparent 100%);
}

.marquee:after {
    right: 0;
    background: linear-gradient(to left, rgb(0, 0, 0) 0%, transparent 100%);
}

:root {
    --marquee-width: 80vw;
    --marquee-height: 20vh;
    --marquee-elements-displayed: 5;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 5s);
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
    }
}

.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: var(--marquee-element-width);
    max-height: 100%;
    font-size: calc(var(--marquee-height)*3/4);
    white-space: nowrap;
}

.marquee-content li img {
    width: 90%;
}

@media (max-width: 600px) {
    html {
        font-size: 12px;
    }

    :root {
        --marquee-width: 100vw;
        --marquee-height: 16vh;
        --marquee-elements-displayed: 3;
    }

    .marquee:before,
    .marquee:after {
        width: 5rem;
    }
}

/* ====================== CONTAINER CONTEUDO 1 ===========================*/

.container-conteudo1 {
    width: 85%;
    margin: 35px auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}

.conteudo1 {
    padding-left: 13px;
}

#font-size-text {
    font-size: 46px;
    margin: 17px 0px;
    font-weight: 300;
}

.conteudo1 p {
    font-size: 17px;
    font-weight: 200;
    margin-top: 10px;
    color: white;
}

.video-mundo {
    max-width: 540px;
}

#text-mundo {
    width: 480px;
}

.container p span.cursor {
    display: inline-block;
    background-color: #ccc;
    margin-left: 0.1rem;
    width: 3px;
    animation: blink 1s infinite;
}

.container p span.cursor.typing {
    animation: none;
}

@keyframes blink {
    0% {
        background-color: #ccc;
    }

    49% {
        background-color: #ccc;
    }

    50% {
        background-color: transparent;
    }

    99% {
        background-color: transparent;
    }

    100% {
        background-color: #ccc;
    }
}

.conteudo1 h2 {
    font-size: 23px;
    line-height: 1.2;
    color: white;
}

.typedtext {
    border-right: 2px solid black;
    animation: blinkTextCursor 800ms steps(44) infinite normal;
    height: 40px;
    margin-bottom: 10px;
    color: #000;
    display: block;
}

@keyframes blinkTextCursor {
    from {
        border-right-color: black;
    }

    to {
        border-right-color: transparent;
    }
}

/* ============================== CONTAINER CARD 1 ==============================*/

.container-card1 {
    width: 100%;
    background-color: white;
    padding: 30px 0px 0px 0px;
}

.titulo-card1 {
    margin: 0px auto 18px;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
}

.div-card1 {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0px auto 0px;
}

.card1 {
    width: 358px;
    height: 203px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.card1 figure img {
    width: 122px;
}

.div-card1-text h2 {
    font-size: 22px;
    font-weight: 500;
}

.div-card1-text p {
    font-size: 18px;
    line-height: 1.1;
}

/* ====================== CONTAINER IMG BACKGROUND ===========================*/

.div-container-img-bg {
    height: 530px;
    background-image: url(img/bacgorund\ editado.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
}

.div-text-img-bg {
    margin: 80px auto 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.div-text-img-bg h2 {
    text-align: center;
    color: white;
    font-weight: 400;
    font-size: 41px;
    text-shadow: #272727 2px 6px 6px;
    width: 752px;
    margin: 100px auto 15px;
    line-height: 1.05;
}

.video-Smartix {
    width: 693px;
    height: 372px;
    display: none;
    position: absolute;
}

.DisplaySmartix {
    display: block;
}

.buttonFechar {
    position: relative;
    bottom: 279px;
    left: 344px;
    cursor: pointer;
    display: none;
}

.OpenButtonFechar {
    display: block;
}

#buttonIdPlay {
    cursor: pointer;
}

/* ======================= container prova social ======================= */


.container-prova-social-img {
    width: 100%;
}

.div-img-1 {
    width: 100%;
    height: 79vh;
    background-image: url(img/Captura\ de\ tela\ 2023-06-19\ 150757.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.container-2-provasocial {
    width: 100%;
    display: flex;
}

.div2-img-1 {
    width: 33.3%;
    height: 62vh;
    background-image: url(img/Design\ sem\ nome\ \(2\).png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: auto;
    background-attachment: fixed;
}

.div2-img-2 {
    width: 33.3%;
    background-image: url(img/Design\ sem\ nome\ \(3\).png);
    height: 62vh;
    background-repeat: no-repeat;
    background-position: center;
    background-position: center;
    background-size: auto;
    background-attachment: fixed;
}

.div2-img-3 {
    width: 33.3%;
    height: 62vh;
    background-image: url(img/design\ sem\ nome\ \(4\).png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: auto;
    background-attachment: fixed;
}

.container-3-provasocial {
    width: 100%;
    display: flex;
}

.container-div-auxiliar-2 {
    width: 50%;
    height: 62vh;
    background-image: url(img/FIS01841.jpg);
    background-repeat: no-repeat;
    background-position: revert;
    background-size: contain;
    background-attachment: fixed;
}

.div-img1-container3 {
    height: 100%;
    background-image: url(img/IMG_8513.jpg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    background-attachment: fixed;
}

.container-div-auxiliar-1 {
    width: 50%;
    height: 62vh;
}


/* ====================== CONTAINER CARD ===========================*/

.container-card {
    padding: 10px 0px 0px 0px;
}

.div-card {
    width: 85%;
    margin: 0 auto;
}

.div-card h2 {
    width: 458px;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    margin: 25px auto 0px;
    color: #ffffff;
    line-height: 1.2;
}

.div-aux-card {
    width: 1055px;
    display: flex;
    margin: 40px auto 0px;
    flex-wrap: wrap;
}

.card {
    width: 256px;
    margin: 0px auto 45px;
    padding: 25px 25px 25px 20px;
    border: 1px solid rgb(242 176 26 / 48%);
    height: 304px;
}

.figure-card img {
    width: 60px;
    margin-bottom: 10px;
}

.card-text {
    color: white;
}

.card-text h1 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 500;
}

.card-text p {
    font-weight: 200;
    line-height: 1.4;
}

#chamada-card {
    background-color: #F2B01A;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

#card-text h1 {
    color: #000;
}

#card-text p {
    color: #000;
    font-weight: 500;
}

#chamada-card button {
    cursor: pointer;
    display: flex;
    width: 206px;
    height: 43px;
    align-items: center;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    justify-content: center;
}

#chamada-card button img {
    width: 23px;
    margin-left: 7px;
}

#chamada-card p {
    margin: 0px 0px 35px 0px;
}

/* ====================== container conteudo final ================= */

.div-conteudo-1-border-bottom {
    border-bottom: 1px solid #e7e7e7;
    padding: 40px 0px;
}

.container-conteudo-final {
    padding: 0px 0px 33px 0px;
    background-color: white;
}

.div-conteudo-final-1 {
    margin: 0px auto;
    max-width: 1194px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.div-conteudo-final-1 figure img {
    margin: 0 auto;
}

.div-conteudo-final-1 figure {
    width: 50%;
    display: flex;
}

.conteudo-text-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 543px;
}

#text-titulo-conteudo-1 {
    font-size: 41px;
    line-height: 1;
    width: 466px;
}

.conteudo-text-1 h2 {
    font-size: 57px;
    line-height: 1;
    width: 466px;
}


.conteudo-text-1 h3 {
    width: 429px;
    font-size: 18px;
    line-height: 1.1;
    margin: 23px 0px;
}

.conteudo-text-1 button {
    width: 240px;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 9px;
    font-size: 19px;
    padding: 7px 0px;
    background-color: transparent;
    border: 1px solid black;
    border-radius: 12px;
}

.conteudo-text-1 button span {
    color: black;
}

#conteudo-final2 {
    width: 1194px;
    margin: 30px auto 0px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

#img-conteudo-final-2 {
    width: 430px;
    margin: 0px 0px 15px 61px;
}

#conteudo-text-1-id {
    justify-content: flex-start;
    margin-left: 48px;
}

#conteudo-text-1-id {
    width: 480px;
}

#conteudo-text-1-id h2 {
    width: 397px;
    font-size: 41px;
}

#conteudo-text-1 h3 {
    width: 427px;
}

.conteudo-text-1 button img {
    width: 25px;
}

/* ====================== CONTAINER FORM ===========================*/

.container-form {
    width: 85%;
    margin: 25px auto;
}

.div-text-form {
    margin: 0 auto;
}

.div-text-form h2 {
    font-size: 51px;
    text-align: center;
    color: white;
}

.div-text-form p {
    font-size: 18px;
    text-align: center;
    margin: 8px auto 0px;
    color: white;
    font-weight: 300;
}

.form-modal {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.form-modal label {
    color: rgb(231 231 231);
    font-size: 18px;
    margin-top: 28px;
}

.form-modal input {
    padding: 17px 0px 7px 0px;
    border: none;
    font-size: 16px;
    border-bottom: 1px solid #5a5a5a;
    background-color: black;
    color: #dbdbdb;
}

.form-modal select {
    border: none;
    height: 28px;
    margin: 11px 0px 14px 0px;
    padding: 0px 5px;
    font-size: 15px;
    background: #383838;
    border-radius: 5px;
    color: rgb(225 225 225 / 90%);
}

.form-modal select option {
    background-color: #ffffff;
    color: #000000;
}

.form-modal span {
    font-size: 10px;
    color: #dcdcdc8f;
    max-width: 522px;
    margin: 5px 0px 15px;
}

.form-modal input:focus {
    box-shadow: 0 0 0 0;
    outline: 0;
}

.form-modal select option:focus {
    background-color: #4b4a4a;
}

.button-enviar {
    width: 200px;
    border-radius: 5px;
    border: none;
    background-color: rgb(242, 176, 26);
    padding: 4px 0px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: sticky;
    z-index: 6;
}

#button-form img {
    width: 23px;
    margin-left: 7px;
}

/* ====================== CONTAINER FOOTER ===========================*/

.container-footer {
    color: #cdcdcd;
    background-color: #1a1a1a;
}

.div-footer {
    padding: 15px 10px;
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.footer-sobreNos {
    width: 410px;
}

.footer-sobreNos h2 {
    font-weight: 600;
    font-size: 25px;
}

.footer-sobreNos p {
    margin: 8px 0px;
    font-weight: 200;
}

.div-informacao p {
    margin: 8px 0px;
}

.div-informacao p img {
    width: 17px;
}

.div-icones-midiasociais {
    margin-top: 5px;
}

.div-icones-midiasociais a img {
    width: 32px;
    margin: 0px 10px;
}

#icone-yt {
    padding-top: 15px;
}

.footer-direitos {
    display: flex;
    border-top: 1px solid #fefefe1f;
    padding: 10px 0px 10px 0px;
    justify-content: center;
}

.footer-direitos a {
    color: rgb(235, 192, 19);
    text-decoration: none;
}

.div-icones-midiasociais a {
    cursor: pointer;
}

.wpp {
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 9999;
    cursor: pointer;
}

.wpp img {
    width: 49px;
}

.wpp button {
    background-color: transparent;
    border: none;
}
@keyframes slidein {
    from {
        width: 70px;
        box-shadow: 0px;

    }

    to {
        width: 70px;
        box-shadow: 0px 0px 8px 4px rgb(63, 196, 1);

    }
}



@media (max-width: 716px) {

    @keyframes slidein {
        from {
            width: 60px;
            box-shadow: 0px;

        }

        to {
            width: 60px;
            box-shadow: 0px 0px 8px 4px rgb(63, 196, 1);

        }
    }

    #displayVideo {
        display: none;
    }

    /* ====================== CONTAINER HEADER ===========================*/

    #header {
        width: 95%;
        margin: 0 auto;
        padding: 13px 17px 5px 10px;
    }

    #logo img {
        width: 95px;
    }

    #btn-mobile {
        display: flex;
        border: none;
        background: none;
        color: #ffffff;
        cursor: pointer;
    }

    #nav.active #menu {
        height: calc(100vh - 45px);
        visibility: visible;
        overflow-y: auto;
        background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.938));
    }

    #menu a {
        padding: 6px 0px;
        margin: 0 1rem;
        font-size: 18px;
        color: black;
    }

    #menu {
        display: block;
        position: absolute;
        width: 100%;
        top: 49px;
        right: 0px;
        transition: 0.6s;
        z-index: 1000;
        height: 0px;
        visibility: hidden;
        overflow-y: hidden;
    }

    .button-menu {
        display: flex;
        font-weight: 500;
        font-size: 18px;
        height: 40px;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }


    .button-menu img {
        width: 25px;
        margin-top: 1px;
    }

    #hamburger {
        border-top: 2px solid;
        width: 29px;
    }

    #hamburger::after,
    #hamburger::before {
        content: '';
        display: block;
        width: 29px;
        height: 2px;
        background: currentColor;
        margin-top: 6px;
        transition: 0.3s;
        position: relative;
    }

    #nav.active #hamburger {
        border-top-color: transparent;
    }

    #nav.active #hamburger::before {
        transform: rotate(135deg);
    }

    #nav.active #hamburger::after {
        transform: rotate(-135deg);
        top: -7px;
    }

    #menu2 {
        color: gray;
    }

    #navHeaderStr {
        color: gray;
    }

    #navHeaderStr1 {
        color: gray;
    }

    #navHeaderStr2 {
        color: gray;
    }



    /* ====================== CONTAINER HEADLINE ===========================*/

    .container-headline {
        display: flex;
        padding: 30px 0px 0px 0px;
    }

    .gif-video-mobile {
        display: block;
        top: 0;
        left: 0;
        object-fit: cover;
        position: absolute;
        z-index: -10;
        height: 100vh;
    }

    .container-headline img {
        margin: 0px 0px;
        width: 100%;
    }

    .div-text {
        text-align: initial;
        padding: 0px 0px 0px 10px;
        margin: 0px;
        flex-direction: column;
    }

    .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 73vh;
        margin: 0px;
    }

    .div-text h1 {
        font-weight: 300;
        color: white;
        font-size: 40px;
        max-width: 367px;
        width: 100%;
        height: 108px;
        text-shadow: #00000000 2px 6px 6px;
    }

    .barra {
        font-size: 38px;
        margin-left: -7px;
        color: white;
    }

    .div-text button {
        width: 299px;
        height: 49px;
        margin: 21px 0px 0px 0px;
        font-size: 19px;
        text-shadow: #27272700 1px 4px 7px;
        background-color: #ffffff;
        color: black;
    }

    .div-text button img {
        width: 28px;
    }

    .div-text h2 {
        margin: 1px 0px 0px 0px;
        font-size: 17px;
        max-width: 210px;
        text-shadow: #000000 2px 1px 3px;
    }

    .typed-text {
        text-shadow: #27272700 2px 6px 6px;
        font-size: 40px;
    }

    .cursos {
        font-weight: 500;
    }

    @media (max-width: 370px) {
        .div-text h1 {
            font-size: 37px;
            height: 107px;
        }
    }




    /* ====================== CONTAINER PROVA SOCIAL ===========================*/

    .container-provasocial {
        width: 90%;
        margin: 10px auto 45px;
    }

    .provasocial-text h2 {
        font-size: 23px;
        line-height: 1.2;
        font-weight: 300;
        text-align: center;
    }

    .marquee-content li img {
        width: 122%;
    }

    .marquee-content {
        gap: 40px;
    }

    .provasocial-text {
        margin: 63px 0px 12px 0px;
    }

    /* ====================== CONTAINER CONTEUDO1 ===========================*/

    .container-conteudo1 {
        flex-direction: column-reverse;
        width: 100%;
        margin: 60px auto 90px;
    }

    .conteudo1 {
        width: 95%;
        padding-left: 0px;
        margin: 29px 0px -47px 0px;
        text-align: center;
    }

    .conteudo1 h2 {
        font-size: 21px;
        max-width: 349px;
        font-weight: 300;
        margin: 0 auto;
    }

    .conteudo1-img figure img {
        width: 100%;
    }

    .conteudo1 p {
        max-width: 285px;
        line-height: 1.2;
        margin: 7px auto 0px;
        font-size: 18px;
    }

    .gif-mundo-mobile {
        width: 100%;
        display: block;
    }

    #font-size-text {
        width: 100%;
        font-size: 33px;
        margin: 0 auto;
        font-weight: 400;
    }

    /* ====================== CONTAINER CARD1 ===========================*/

    .titulo-card1 {
        font-size: 22px;
        line-height: 1.2;
        font-weight: 400;
        margin: 0px auto 25px;
        max-width: 348px;
    }

    .card1 {
        width: 38%;
        height: 188px;
        display: flex;
        align-items: baseline;
        margin: 3px auto;
        flex-direction: column-reverse;
    }

    .card1 figure img {
        width: 65px;
    }

    .div-card1-text {
        text-align: inherit;
        width: 97%;
        height: 101px;
    }

    .div-card1-text p {
        font-size: 1.1em;
        font-weight: 300;
        width: 155px;
    }

    .div-card1-text h2 {
        font-size: 18px;
        font-weight: 500;
    }

    .div-card1 {
        width: 94%;
    }

    .DisplaySmartix {
        width: 95%;
        height: 188px;
        margin-top: 19px;
    }

    .container-card1 {
        padding: 30px 0px 15px 0px;
    }

    #chamada-card button {
        width: 99%;
        font-size: 12px;
        color: black;
        background-color: white;
    }

    /* ====================== CONTAINER img background ===========================*/



    .div-img-1 {
        background-image: url(img/fundoProvaSocialMobile.png);
        height: 1270px;
    }


    .container-2-provasocial {
        display: none;
    }

    .container-3-provasocial {
        display: none;
    }

    .div-text-img-bg {
        width: 100%;
        margin: 34px auto 0px;
    }


    .div-text-img-bg h2 {
        width: 95%;
        line-height: 1.2;
        font-size: 34px;
        margin: 20px auto 8px;
    }


    #tag-video {
        display: none;
    }

    #tag-video-mobile {
        position: absolute;
    }

    .div-container-img-bg {
        height: 44vh;
        background-attachment: inherit;
    }


    .buttonFechar {
        bottom: 180px;
        width: 25px;
        left: 46%;
    }

    #buttonIdPlay {
        width: 40px;
    }

    /* ================= container prova social ======================= */


    .container-2-provasocial {
        flex-direction: column;
    }

    .div-img-1 {
        background-size: cover;
        background-attachment: inherit;
    }

    .div2-img-3 {
        width: 100%;
        background-position: center;
        background-size: cover;
        background-attachment: inherit;
    }

    .div2-img-2 {
        width: 100%;
        background-position: center;
        background-size: cover;
        background-attachment: inherit;
    }

    .div2-img-1 {
        width: 100%;
        background-position: auto;
        background-size: cover;
        background-attachment: inherit;
    }

    .container-3-provasocial {
        flex-direction: column;
    }

    .container-div-auxiliar-2 {
        width: 100%;
        background-position: center;
        background-size: cover;
        background-attachment: inherit;
    }

    .container-div-auxiliar-1 {
        width: 100%;
    }

    .div-img1-container3 {
        background-position: bottom;
        background-size: cover;
        background-attachment: inherit;
    }



    /* ====================== CONTAINER CARD ===========================*/
    .container-card {
        padding: 32px 0px 0px 0px;
    }

    .div-card h2 {
        width: 100%;
        margin: 0px 0px -45px 0px;
        font-size: 23px;
        line-height: 1.2;
        font-weight: 300;
    }

    .div-card {
        width: 96%;
    }

    .div-aux-card {
        width: 100%;
        margin: 60px auto 0px;
    }

    .card {
        width: 43%;
        height: 205px;
        padding: 7px;
        margin: 0px auto 30px;
        border: none;
    }

    .card-text {
        background-color: none;
    }

    .card-text h1 {
        font-size: 17px;
        margin-bottom: 7px;
        font-weight: 500;
        line-height: 1.1;
    }

    .card-text p {
        font-size: 12px;
        line-height: 1.1;
        font-weight: 300;
    }

    .figure-card img {
        width: 36px;
        margin: 0px;
    }

    /* ====================== CONTAINER CONTEÚDO 1 ID=2 ===========================*/

    #conteudo2 {
        margin-top: -41px;
    }

    #container-conteudo2 {
        flex-direction: column-reverse;
        margin: 17px auto 158px;
    }

    #container-conteudo2 {
        flex-direction: column-reverse;
    }

    /* ====================== CONTAINER COTEÚDO 1 ID=3  ===========================*/

    #container-conteudo3 {
        flex-direction: column;
        margin: -50px auto -91px;
    }

    #conteudo3 {
        padding: 0px;
    }

    /* ====================== CONTAINER CONTEUDO FINAL 1 ============== */

    .div-conteudo-final-1 {
        width: 100%;
        flex-direction: column;
    }

    .div-conteudo-final-1 figure {
        width: 100%;
    }

    .div-conteudo-final-1 figure img {
        width: 100%;
    }

    .div-conteudo-1-border-bottom {
        padding: 20px 0px
    }

    .conteudo-text-1 {
        width: 95%;
        padding: 0px;
        margin: 0px;
    }

    .conteudo-text-1 h2 {
        max-width: 324px;
        font-size: 42px;
    }

    .conteudo-text-1 h3 {
        max-width: 100%;
        font-size: 16px;
    }

    .conteudo-text-1 button {
        font-size: 18px;
        gap: 8px;
        padding: 8px 0px;
        width: 250px;
        color: black;
    }

    #conteudo-final2 {
        width: 100%;
        flex-direction: column;
        margin: 20px auto 0px;
    }

    #img-conteudo-final-2 {
        width: 100%;
        margin: 0px;
    }

    #conteudo-text-1-id {
        width: 95%;
        margin: 15px 0px 0px 0px;
    }

    #conteudo-text-1-id h2 {
        max-width: 326px;
        font-size: 37px;
    }

    #conteudo-text-1-id h3 {
        width: 95%;
        font-size: 16px;
    }

    /* ====================== CONTAINER FORM ===========================*/

    .div-text-form {
        width: 100%;
    }

    .div-text-form p {
        width: 90%;
        font-size: 16px;
        line-height: 1.2;
    }

    .div-text-form h2 {
        font-size: 41px;
        font-weight: 400;
        text-align: center;
        line-height: 0.9;
        margin: 35px 0px 10px 0px;
    }

    .form-modal input {
        border-radius: 0px;
    }

    #button-form {
        margin: 18px 0px 0px 0px;
        font-size: 21px;
        padding: 5px 0px;
        color: black;
    }

    .form-modal span {
        margin: 5px 0px 0px;
    }

    #text-mundo {
        width: auto;
    }

    .form-modal label {
        margin-top: 40px;
    }

    /* ====================== CONTAINER FOOTER  ===========================*/


    .container-form {
        width: 95%;
    }

    .div-footer {
        flex-direction: column;
        padding: 15px 9px;
        width: 95%;
    }

    .footer-direitos {
        background-color: #1a1a1a;
        flex-direction: column;
        align-items: center;
    }

    .footer-sobreNos {
        width: 100%;
        margin-bottom: 35px;
    }

    .footer-sobreNos p {
        margin: 14px 0px;
        width: 85%;
    }

    .footer-sobreNos h2 {
        font-size: 30px;
    }

    .div-informacao p {
        margin: 8px 0px;
        color: white;
    }

    .div-informacao p img {
        width: 17px;
        margin: 8px 4px -4px 0px;
    }

    .div-icones-midiasociais {
        display: flex;
        align-items: flex-end;
        justify-content: space-around;
    }
}