:root {
    --color1: #1B2737;
    --color2: #1B2737;
    --color3: #344967;
    --color4: #fff;
    --color5: #000;
    --color6: #F2E7A9;

    --text-weigth: 500;

    --titulo: 29px;
    --subtitulo: font-size: 20px;
    --text: 17px;

}

html {
    scroll-behavior: smooth;
}

header {
    width: 100%;
    height: 100px;
    z-index: 999;
}

.container-header {
    display: flex;
    width: 95%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    color: var(--color4);
}

.nav1 {
    display: none;
}

.figure-logo img {
    width: 130px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: var(--color4);
    font-size: 18px;
}

.nav-menu-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu-icons img {
    width: 35px;
}

.nav-menu-icons button {
    width: 225px;
    border: none;
    height: 40px;
    font-size: 16px;
    border-radius: 3px;
    background: var(--color4);
}

.nav-menu-icons button a {
    color: var(--color1);
}

#button-header {
    display: none;
}

/* container banner */

.background-banner {
    background-image: url(img/imgfinal\ -\ Copia.jpg);
    padding: 0px 0px 51px 0px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: flex-end;
    display: flex;
    height: 85vh;
    margin-top: -100px;
}

.container-text-banner {
    width: 92%;
    margin: 0 auto;
    color: white;
}

.container-text-banner h2 {
    font-size: 24px;
}

.container-text-banner h1 {
    font-size: 29px;
    line-height: 35px;
    font-weight: 700;
    padding: 4px 0px;
    margin: 0px;
}

.container-text-banner p {
    font-size: 14px;
    line-height: 21px;
    padding: 0px 0px 10px;
    max-width: 305px;
}

.div-button-banner button {
    padding: 5px 0px;
    width: 230px;
    height: 42px;
    background: rgb(0, 168, 230);
    border: none;
    border-radius: 8px;
}

.div-button-banner button a {
    color: var(--color4);
    font-size: 19px;
    font-weight: 500;
}

#button-secund-banner {
    background: transparent;
    border: 1px solid white;
}

#button-secund-banner a {
    color: white;
}

/* container scroew automatico */


/* container scrow automatico */

:root {
    --marquee-width: 80vw;
    --marquee-height: 50px;
    --marquee-elements-displayed: 5;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
    overflow: hidden;
    position: relative;
    background: #ffffff2e;
    margin-top: -40px;
    box-shadow: 0px 2px 12px #00000024;
}

.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, #00000000 0%, transparent 100%);
}

.marquee:after {
    right: 0;
    background: linear-gradient(to left, #00000000 0%, transparent 100%);
}

.marquee-content {
    list-style: none;
    height: 40px;
    display: flex;
    gap: 155px;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
}

.marquee-content li p {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}

@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;
    white-space: nowrap;
}

.marquee-content li img {
    width: 84px;
}

@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 section */

.container-section-1 {
    background-color: rgba(217, 217, 217, 0.28);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 21px 0px;
}

#conheca {
    padding: 0px 0px 0px;
}

.img-section-1 {
    width: 94%;
    margin: 25px 0px 0px;
}

.div-text-section1 {
    width: 90%;
    margin: 11px auto 0px;
}

.div-text-section1 h2 {
    font-size: 31px;
    line-height: 35px;
    font-weight: 700;
}

.div-text-section1 p {
    font-size: 14px;
    line-height: 21px;
    padding: 0px 0px 15px;
    max-width: 305px;
}

.container-prova-social {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 16px;
}

.container-prova-social img {
    width: 90px;
}

.container-cards-numbers {
    width: 90%;
    display: flex;
    gap: 41.8px;
    margin: 30px auto 20px;
    flex-direction: column;
}

.cards-numbers h2 {
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    background-image: linear-gradient(to bottom, rgb(10 19 67), #2196F3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cards-numbers {
    width: 300px;
    margin: 0 auto;
}


.cards-numbers p {
    font-size: 13px;
    line-height: 17px;
    margin: 0 auto;
    text-align: center;
}

.cards-numbers span {
    font-size: 40px;
    font-weight: 300;
}


/* container section 2 */

#section2 {
    background: white;
}

.div-text-section1 button {
    padding: 5px 0px;
    width: 230px;
    height: 38px;
    background: rgb(0, 168, 230);
    border: none;
    border-radius: 8px;
}

.div-text-section1 button a {
    color: var(--color4);
    font-size: 19px;
    font-weight: 500;
}

/* container contabilidade que conecta */

#section3 {
    background: var(--color1);
}

#div-text-section3 h2 {
    color: var(--color4);
    max-width: 350px;
}

#div-text-section3 p {
    color: var(--color4);
    max-width: 321px;
}

.container-cards-especialidades {
    width: 90%;
    margin: 0 auto;
}

.card-especialidades {
    width: 90%;
    margin: 0px auto 35px;
    background: white;
    border-radius: 8px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-especialidades h2 {
    font-size: 28px;
    font-weight: 600;
    color: #101923;
    padding: 5px;
    text-align: center;
}

.card-especialidades p {
    text-align: center;
    font-size: 17px;
    line-height: 23px;
    padding: 8px 0px 10px;
    max-width: 290px;
}

.card-especialidades button {
    width: 275px;
    height: 40px;
    border-radius: 9px;
    border: none;
    background: #101923;
    color: white;
    font-size: 18px;
}

/* container contabilidade */

#section3 {
    flex-direction: row-reverse;
}

#div-text-section3 {
    width: 387px;
}

#text-section3 {
    color: var(--color4);
    max-width: 300px;
    padding: 0px 0px 10px;
}

#div-text-section3 button {
    border: 1px solid white;
}

#img-section-3 {
    background: var(--color1);
    padding: 40px 0px;
    display: none;
}

#div-text-section3 {
    width: 90%;
    padding: 15px 0px;
}

.gallery {
    width: 96%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 100vw);
    grid-template-rows: 1fr;
    grid-row-gap: 1rem;
    overflow: scroll;
    scroll-snap-type: both mandatory;
    scroll-padding: 1rem;
    display: none;
}

.li-gallery {
    width: 96%;
}

.li-gallery img {
    width: 100%;
    height: 430px;
    border-radius: 10px;
}

.active {
    scroll-snap-type: unset;
}

li {
    scroll-snap-align: center;
    display: inline-block;
    border-radius: 3px;
    font-size: 0;
}

#section3 {
    flex-direction: column;
    display: flex;
    background: #101923;
}

.li-gallery img {
    width: 80%;
    height: 435px;
}

#card-mobile {
    display: none;
}

/* container cta final form */

.cta-final-formulário {
    height: 350px;
    background-image: url(img/imgfinal.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 86%;

}

.cta-final-formulário h2 {
    font-size: 31px;
    width: 90%;
    line-height: 35px;
    font-weight: 500;
    padding: 4px 0px;
    color: white;
    margin: 0 auto;
}

.container-formulario {
    background: #1B2737;
}

.formulario {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    padding: 25px 0px;
}

.formulario h2 {
    font-size: 24px;
    width: 90%;
    font-weight: 300;
    padding: 4px 0px;
    color: white;
}

.formulario p {
    font-size: 14px;
    line-height: 21px;
    color: white;
    padding-bottom: 10px;
}

.formulario input::placeholder {
    color: rgb(255, 255, 255);
    font-weight: 300;
}

.formulario input {
    background: transparent;
    border: none;
    font-size: 17px;
    padding: 3px 0px;
    margin: 10px 0px;
    border-bottom: 1px solid white;
}

.formulario button {
    padding: 5px 0px;
    width: 230px;
    height: 38px;
    background: rgb(0, 168, 230);
    border: none;
    border-radius: 8px;
    color: var(--color4);
    font-size: 19px;
    font-weight: 500;
}


/* container footer */

footer p {
    text-align: center;
    background: white;
    padding: 10px 0px;
}

@media (min-width: 600px) {

    header {
        height: 75px;
    }

    .marquee-content li p {
        color: #000000;
    }

    .div-button-banner button {
        background: rgb(0, 168, 230);
        width: 245px;
    }

    .div-button-banner button a {
        font-size: 20px;
        font-weight: 500;
        color: #fff;
    }

    .nav-2-header {
        display: none;
    }

    .nav1 {
        display: block;
    }

    .figure-logo img {
        width: 160px;
        margin-top: 60px;
    }

    .container-header {
        max-width: 1210px;
        height: 75px;
    }

    .nav1 a {
        font-size: 18px;
    }

    .button-header {
        padding: 5px 0px;
        width: 153px;
        background: white;
        border: none;
        border-radius: 23px;
    }

    .button-header li a {
        color: var(--color1);
    }

    .nav-menu {
        align-items: center;
    }

    .nav-menu-icons img {
        width: 28px;
    }

    #button-header {
        display: block;
    }

    /* container bannner */

    .background-banner {
        background-image: url(img/teste-fundo-desck.jpg);
    }

    .container-text-banner {
        max-width: 1210px;
        margin: 75px auto 0px;
    }

    .container-text-banner h2 {
        font-size: 32px;
    }

    .background-banner {
        height: 500px;
        margin-top: -76px;
        align-items: center;
    }

    .background-banner h1 {
        font-size: 50px;
        max-width: 479px;
        line-height: 50px;
        color: var(--color4);
    }

    .container-text-banner p {
        max-width: 579px;
        font-size: 18px;
        color: var(--color4);
        line-height: 24px;
    }

    #button-secund-banner {
        background: transparent;
        border: 1px solid var(--color1);
    }

    #button-secund-banner a {
        color: var(--color1);
    }

    .marquee {
        margin-top: -40px;
    }

    /* container section 1 */

    .container-section-1 {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 50px 0px 70px;
    }

    .img-section-1 {
        width: 520px;
    }

    .div-text-section1 {
        width: 500px;
        margin: 0px;
    }

    .container-prova-social {
        width: 450px;
        width: 436px;
        gap: 37px;
        margin: 0px;
    }

    .div-text-section1 h2 {
        font-size: 43px;
        line-height: 42px;
    }

    .div-text-section1 p {
        max-width: none;
        font-size: 17px;
        line-height: 30px;
        padding: 2px 0px 0px;
    }

    .container-prova-social img {
        width: 105px;
        opacity: 30%;
    }

    /* container sesction 2 */

    #img-section4 {
        width: 585px;
    }

    #section2 {
        flex-direction: column;
        padding: 80px 0px;
    }

    #div-text-number {
        font-size: 43px;
        line-height: 42px;
        text-align: center;
    }

    #img-section2 {
        width: 420px;
    }

    #text-section2 {
        padding: 10px 0px 10px;
    }

    .img-mobile-div {
        width: 554px;
        margin: 0px;
    }

    #card-mobile {
        display: block;
    }

    /* container section 3 */

    .container-cards-numbers {
        display: flex;
        flex-direction: row;
        max-width: 1020px;
    }

    #div-text-section3 {
        max-width: 650px;
    }

    #div-text-section3 h2 {
        color: var(--color4);
        text-align: center;
        max-width: 457px;
        line-height: 50px;
        margin: 0 auto;
    }

    #div-text-section3 p {
        color: var(--color4);
        text-align: center;
        max-width: 517px;
        margin: 0 auto;
        padding: 11px 0px 10px;
    }

    .container-cards-especialidades {
        display: flex;
        max-width: 1280px;
        flex-wrap: wrap;
    }

    .card-especialidades {
        width: 390px;
    }

    #img-section-3 {
        display: block;
        width: 570px;
    }

    .gallery {
        display: none;
    }

    #section3 {
        flex-direction: column;
        padding: 70px 0px 70px;
    }

    .container-formulario {
        background: #1B2737;
        display: flex;
        justify-content: center;
    }

    .cta-final-formulário {
        width: 50%;
        justify-content: flex-end;
    }

    #id-div-formulario {
        width: 50%;
        display: flex;
        align-items: center;
    }

    .formulario {
        width: 410px;
        margin: 25px 45px;
        padding: 0px;
    }

    .cta-final-formulário h2 {
        width: 470px;
        margin: 0px;
        font-size: 35px;
    }

}