:root {
    --color1: #8B847F;
    --color2: #323232;
    --color3: #fff;
    --color4: #000;
    --color5: #000;
    --color6: #52695C;


    --text-weigth: 500;

    --titulo: 29px;
    --subtitulo: font-size: 20px;
    --text: 17px;

}

html {
    scroll-behavior: smooth;
}

header {
    width: 100%;
    height: 100px;
}

.container-header {
    display: flex;
    width: 95%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    color: var(--color4);
}

.nav1 {
    display: none;
}

.section-header {
    height: 75px;
}

.figure-logo img {
    width: 188px;
}

.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: 26px;
}

.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/bannerMobile.png);
    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: 38px;
    line-height: 37px;
    font-weight: 500;
    padding: 4px 0px;
}

.container-text-banner p {
    font-size: 17px;
    line-height: 21px;
    padding: 0px 0px 10px;
    max-width: 368px;
}

.div-button-banner {
    display: flex;
}


.div-button-banner button {
    padding: 5px 13px;
    height: 42px;
    background: #533b4c;
    border: none;
    border: 1.5px solid #ffffff;
    border-radius: 8px;
}


.div-button-banner button a {
    color: var(--color3);
    font-size: 19px;
    font-weight: 500;
}

#button-secund-banner {
    /* background: transparent; */
    background: var(--color1);
    border: 1px solid white;
}

#button-secund-banner a {
    color: white;
}

.box-pulse {
    padding: 0 8px;
}

.botao-pulse {
    color: #fff;
    background-color: #d20000;
    border-radius: 3px;
    -webkit-animation: pulse 2s ease infinite;
    -moz-animation: pulse 2s ease infinite;
    -ms-animation: pulse 2s ease infinite;
    -o-animation: pulse 2s ease infinite;
    animation: pulse 2s ease infinite;
}


@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
    }

    25% {
        -webkit-transform: scale(1.1);
    }

    50% {
        -webkit-transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
    }

    25% {
        -moz-transform: scale(1.1);
    }

    50% {
        -moz-transform: scale(1);
    }

    100% {
        -moz-transform: scale(1);
    }
}

@-ms-keyframes pulse {
    0% {
        -ms-transform: scale(1);
    }

    25% {
        -ms-transform: scale(1.1);
    }

    50% {
        -ms-transform: scale(1);
    }

    100% {
        -ms-transform: scale(1);
    }
}

@-o-keyframes pulse {

    0% {
        -o-transform: scale(1);
    }

    25% {
        -o-transform: scale(1.1);
    }

    50% {
        -o-transform: scale(1);
    }

    100% {
        -o-transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* 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: 80px;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
}

.marquee-content li p {
    color: #ffffff;
    font-weight: 400;
    font-size: 15px;
}

@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;
    }
}

/* containe cirurgia */

.container-cirurgias {
    width: 90%;
    margin: 0 auto;
    padding: 35px 0px;
}

.div-cirurgias {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.div-cirurgias img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 1px 3px 5px rgb(0 0 0 / 30%);
}

/* SOBRE NOS */

.container-section-1 {
    background-color: rgb(217 217 217 / 58%);
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    padding: 50px 0px 00px;
}




#section-IBDclub button {
    background: #523b4c;

}

.div-text-section1 h2 {
    font-size: 35px;
    line-height: 37px;
    font-weight: 300;
    color: #0A202C;
}

#ul-huppyGut li p {
    padding: 4px 0px 5px;

}

#ul-huppyGut {
    padding: 10px 0px;
}

#conheca {
    font-size: 15px;
    color: var(--color1);
    padding: 55px 0px;
}

.img-section-1 {
    width: 90%;
}

.div-text-section1 p {
    padding: 10px 0px 15px;
    font-size: 17px;
    line-height: 26px;
}

.div-text-section1 {
    width: 90%;
}


/* container especialidades */

#section3 {
    flex-direction: column;
    display: flex;
    background: #533b4c;
}

#div-text-section3 {
    padding: 15px 0px;
}

#div-text-section3 h2 {
    color: var(--color3);
    max-width: 350px;
}

#div-text-section3 p {
    color: var(--color3);
    max-width: 321px;

}

.card-especialidades h2 {
    font-size: 30px;
    font-weight: 500;
    padding: 5px;
    text-align: center;
    color: #0a202c;
}

.container-cards-especialidades {
    width: 90%;
    margin: 0 auto;
}

.card-especialidades {
    width: 90%;
    margin: 0px auto 35px;
    background: var(--color3);
    padding: 25px 0px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: 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: #b7a1a5;
    color: var(--color3);
    font-size: 20px;
}

/* container section 2 */

.div-text-section1 button {
    padding: 9px 15px;
    background: #b7a1a5;
    border: none;
    border-radius: 8px;
}

.div-text-section1 button a {
    color: var(--color3);
    font-size: 19px;
    font-weight: 500;
}


/*  Huupy gut */

#section-IBDclub {
    padding: 50px 0px 50px;
    background: white;
}

#section-huppygut {
    background: var(--color2);
    padding: 50px 0px 50px;

}

#section-huppygut h2 {
    color: var(--color3);
}

#section-huppygut p {
    color: var(--color3);
}


#button-huppy-gut button {
    background: #523b4c;
}

#button-huppy-gut button a {
    color: white;
}


#titulo360 {
    padding-bottom: 15px;
}

#section2 {
    flex-direction: column;
    padding: 80px 0px;

}

swiper-container {
    width: 90%;
    height: 350px;
    margin: 23px auto 0px;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

swiper-slide img {
    display: block;
    width: 100%;
    border-radius: 5px;
    height: 100%;
    object-fit: cover;
}














.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: 80px;
    font-weight: 400;
    text-align: center;
    background-image: linear-gradient(to bottom, #0A202C, #0A202C);
    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 a {
    color: var(--color4);

} */

/* container contabilidade que conecta */




/* container contabilidade */


#div-text-section3 button {
    border: 1px solid white;
}

#img-section-3 {
    background: var(--color1);
    padding: 40px 0px;
    display: none;
}



.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;
}


.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/ctafinal.png);
    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: var(--color1);
    margin: 0 auto;
}

.container-formulario {
    background: #533b4c;
}

.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: var(--color3);
}

.formulario p {
    font-size: 14px;
    line-height: 21px;
    color: var(--color3);
    padding-bottom: 10px;
}

.formulario input::placeholder {
    color: var(--color3);
    font-weight: 300;
}

.formulario input {
    background: transparent;
    border: none;
    font-size: 16px;
    padding: 9px 6px;
    margin: 10px 0px;
    border-radius: 8px;
    border: 1px solid var(--color3);
}

.formulario button {
    padding: 5px 0px;
    width: 230px;
    height: 38px;
    background: var(--color3);
    border: none;
    border-radius: 8px;
    color: var(--color2);
    font-size: 19px;
    font-weight: 600;
}


/* container footer */


footer {
    background-color: var(--color3);
}

.div-footer-2 {
    display: flex;
    gap: 22px;
    padding-bottom: 18px;
}

.div-footer-1 img {
    width: 90px;
}

.div-footer-1 h2 {
    color: var(--color2);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    max-width: 367px;
    padding-bottom: 13px;
}

.ul-text-footer-1 li a {
    color: var(--color2);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    max-width: 367px;
}

.div-footer-1 ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.div-footer-text-2 h2 {
    color: var(--color2);
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 5px;
}

.div-footer-text-2 ul a {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.div-footer-text-2 ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.div-footer-text-2 ul li {
    color: var(--color2);
    font-weight: 400;
    font-size: 18px;
}

.div-footer-text-3 ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.div-footer-text-3 ul li {
    font-size: 18px;
}

.div-footer-text-3 h2 {
    color: var(--color3);
    font-size: 18px;
    padding-bottom: 5px;
}

.div-footer-text-3 ul li {
    color: var(--color3);
    font-weight: 200;
}

.container-footer {
    width: 93%;
    margin: 1px auto;
}

.div-footer-1 {
    padding: 14px 0px;
}

footer h3 {
    color: var(--color2);
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    padding: 14px 0px 15px;
    border-top: 1px solid var(--color2);
}

#second-button {
    background-color: transparent;
    border-radius: 8px;
}

#second-button a {
    color: var(--color3);
    font-weight: 300;
}



@media (min-width: 600px) {

    header {
        height: 75px;
        z-index: 99999;
        position: fixed;
        top: 0px;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(0, 0, 64, 0.2);
        box-shadow: 0px 2px 10px #00000042;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #a7a7a7;
    }

    .postion-header {
        display: flex;
        gap: 50px;
        align-items: center;
    }

    .div-button-banner {
        display: flex;
        gap: 9px;
    }

    #second-button {
        /* background-color: var(--color1); */
    }

    #second-button a {
        /* color: var(--color3); */
    }

    .nav1 {
        display: block;
    }

    .figure-logo img {
        width: 170px;
    }


    .container-header {
        max-width: 1210px;
        height: 75px;
    }

    .nav1 a {
        font-size: 14px;
        color: var(--color3);
        font-weight: 500;
        cursor: pointer;
    }

    .button-header {
        padding: 8px 21px;
        cursor: pointer;
        background: transparent;
        border: 1px solid white;
        border-radius: 8px;
        box-shadow: 3px 2px 5px #ffffff86;
    }

    .button-header li a {
        color: var(--color3);
        font-size: 18px;
    }

    .nav-menu {
        align-items: center;
    }

    .nav-menu-icons img {
        width: 28px;
    }

    #button-header {
        display: block;
    }

    /* container bannner */

    .div-button-banner button {
        padding: 5px 20px;
    }

    .marquee-content {
        gap: 240px;
        backdrop-filter: blur(2px);
    }

    .background-banner {
        height: 700px;
        margin-top: -76px;
        align-items: center;
        background-position: top;
        background-image: url(/img/bannerdesck.png);
    }



    .container-text-banner {
        max-width: 1210px;
        margin: 75px auto 0px;
    }

    .container-text-banner h2 {
        font-size: 32px;
    }

    .background-banner h1 {
        font-size: 62px;
        max-width: 570px;
        line-height: 62px;
        font-weight: 400;
    }

    .background-banner h1 span {
        font-weight: 700;
    }

    .container-text-banner p {
        max-width: 353px;
        font-size: 18px;
        line-height: 24px;
    }

    .marquee {
        margin-top: -40px;
    }

    /* container section 1 */

    .div-cirurgias {
        flex-direction: row;
    }

    .container-section-1 {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 50px;
        padding: 80px 0px 0px;
    }

    .img-section-1 {
        border-radius: 8px;
        width: 440px;
    }

    .div-text-section1 {
        width: 622px;
    }

    .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;
    }

    #button-idb {
        background-color: var(--color2);
    }



    /* container especialidades */

    #section3 {
        padding: 70px 0px 70px;
        gap: 40px;
    }

    #div-text-section3 {
        width: auto;
    }

    #div-text-section3 h2 {
        color: var(--color3);
        max-width: 827px;
        text-align: center;
        margin: 0 auto;
        font-size: 43px;
        line-height: 53px;
    }

    #div-text-section3 p {
        max-width: 517px;
        margin: 0px auto;
        padding: 5px 0px 0px;
        color: var(--color3);
        text-align: center;
    }

    .container-cards-numbers {
        display: flex;
        flex-direction: row;
        max-width: 970px;
    }

    .card-especialidades {
        width: 356px;
    }

    .container-cards-especialidades {
        display: flex;
        max-width: 1200px;
        flex-wrap: wrap;
    }


    /* container simtomas */


    swiper-slide img {
        width: 85%;
    }


    #text-section-replica2 {
        padding: 2px 0px 10px;
    }








    swiper-container {
        width: 450px;
        height: 350px;
        margin: 0px;
    }

    #section-huppygut {
        flex-direction: row-reverse;
        padding: 100px 0px;
    }

    #section-IBDclub {
        padding: 100px 0px;
    }














    /* 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 */




    /* #div-text-section3 h2 {
        color: var(--color4);
        text-align: center;
        max-width: 457px;
        line-height: 50px;
        margin: 0 auto;
    } */







    #img-section-3 {
        display: block;
        width: 570px;
    }

    .gallery {
        display: none;
    }



    .container-formulario {
        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;
    }


    /* containe footer */


    .container-footer {
        margin: 1px auto;
        display: flex;
        justify-content: space-around;
        max-width: 1100px;
        padding: 25px 0px;
    }

    .div-footer-1 {
        padding: 0px 0px;
    }

    .div-footer-1 h2 {
        padding: 13px 0px;
    }

    footer h3 {
        width: 500px;
        margin: 0 auto;
    }



}