* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    /* outline: 1px red solid; */
    -webkit-tap-highlight-color: transparent;
}

@font-face {
    font-family: 'Montserrat';
    font-display: swap;
    src: url(../fonts/Montserrat-VariableFont_wght.woff2);
}

@font-face {
    font-family: 'Baskervville';
    font-display: swap;
    src: url(../fonts/Baskervville-VariableFont_wght.woff2);
}

:root {
    --background-color: #F7FFE0;
    --font-color: #1E2017;
    --white-font: #fff;
    --ligth-green: #CCD5B1;
    --dark--green: #303521;
    --grey: #CCC;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat';
    background-color: var(--background-color);
    color: var(--font-color);
}

p {
    font-size: clamp(16px, 4vw, 20px);
}

h1 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 400;
}

h2 {
    font-size: clamp(28px, 5vw, 38px);
}


h3 {
    font-size: clamp(24px, 5vw, 28px);
}

/* auxiliares */

.container {
    padding-top: 5%;
    max-width: min(1200px, 90vw);
    margin: 0 auto;
    height: 100%;
}

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

.d--flex {
    display: flex;
}

.f--column {
    flex-direction: column;
}

.g--button {
    width: 550px;
    color: var(--white-font);
    border-radius: 50px;
    padding: 20px;
    font-family: 'Montserrat';
    border: none;
    margin-top: 50px;
    background-color: var(--dark--green);
    font-size: clamp(12px, 4vw, 24px);
    transition: 0.5s;
    font-weight: 500;
}

.g--button:hover {
    transform: scale(1.05);
    transition: 0.5s;
    cursor: pointer;
}

.b--font {
    font-family: 'Baskervville';
    font-style: italic;
}

.T--progressbar {
    font-size: clamp(16px, 5vw, 24px)
}

.progress-container {
    margin-top: 20px;
    width: 100%;
    max-width: 550px;
    background-color: #eee;
    border-radius: 8px;
    overflow: hidden;
    height: 10px;
    margin-bottom: 10px
}

.progress-bar {
    height: 20px;
    width: 0;
    background-color: var(--dark--green);
    text-align: center;
    color: var(--white-font);
    font-weight: 700;
    transition: width .3s;
    font-size: 14px
}

.b--bottom {
    border-bottom: var(--dark--green) 1px solid;
}

/* Container do modal */
#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

#modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f2ffc9;
    padding: 2rem;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 600px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}


#modal[style="display: none"],
#modal-overlay[style*="display: none"] {
    display: none;
}

.modal-header {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 85vh;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

#close-modal-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Formulário */


#modal .modal-header {
    padding-right: 20px;
}

#modal .modal-header h3 {
    font-size: clamp(24px 4vw 28px);
    text-align: center;
    margin-bottom: 20px;
}

#modal h2 {
    margin-bottom: 15px;
}

#modal p {
    text-align: left;
    margin-bottom: 20px;
    font-size: medium;
}

#modal li {
    display: flex;
    align-items: center;

}

#modal li p {
    padding-left: 5px;
}

#modal li {
    list-style-type: circle;

}


/* hero */

#hero {
    height: auto;
}

#hero .box__image {
    background-image: url(../assets/image/Dra-heroV1.avif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

#hero .box__text p,
#hero .box__text h1 {
    margin-top: 20px;
}

#hero .box__text,
#clinic .box__text {
    padding: 5% 0;
    margin-left: 10%;
    padding-right: 40px;
}

#hero .box__content img {
    width: 50px;
    padding-right: 20px;
}

#hero .box__content .d--flex {
    align-items: center;
    margin-top: 20px;
}

#hero .box__content .d--flex p {
    margin-top: 0;
}

/* spin */

#spin {
    height: 56px
}

.fake-bullet::before {
    content: '•';
    display: inline-block;
    width: 1em;
    margin-right: .5em;
    color: currentColor
}

.text-slider {
    overflow: hidden;
    border: 1px solid var(--ligth-green);
    background: rgba(0, 0, 0, .1);
    padding: 1rem 0
}

.text-slider__inner {
    display: flex;
    width: max-content;
    animation: 40s linear infinite scroll
}

.text-slider__inner span {
    flex: none;
    display: inline-block;
    padding: 0 2rem;
    font-size: 1.25rem;
    white-space: nowrap;
    color: #333
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* last */

#last {
    text-align: center;
    background-color: var(--dark--green);
    color: var(--white-font);
    padding-bottom: 5%;
}

#last p {
    color: var(--white-font);
    margin-top: 20px;
}

#last .box__text {
    width: 70%;
}

#last .g--button {
    background-color: var(--ligth-green);
    color: black;
    font-weight: 600;
}

/* discover */

#discover .box__content {
    width: 50%;
}

#discover .box__text {
    display: flex;
    padding: 20px 0;
}

#discover .box__text img {
    padding-right: 20px;
}

/* woman */

#woman {
    background-image: url(../assets/image/content--bk.avif);
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white-font);
    padding-bottom: 5%;
    margin-top: 5%;
}

#woman .box__text {
    width: 60%;
}

#woman li {
    display: flex;
    margin-top: 30px;
}

#woman ul {
    margin-bottom: 30px;
}

#woman li::marker {
    content: ""
}

#woman li::before {
    content: url(../assets/image/w-check.svg);
    padding-right: 20px;
}

/* clinic */
#clinic .container {
    margin-right: 0;
    align-items: center;
    max-width: 90%
}

#clinic .box__text {
    margin-right: 5%
}

#clinic p {
    margin-top: 40px
}

/* intentio */

#intention {
    gap: 20px;
    text-align: center;
    margin-top: 5%
}

#intention .box__text {
    padding: 30px 0;
    margin-top: 20px;
    width: 50%;
}


/* recive */

#archive {
    background-image: url(../assets/image/woman--bk.avif);
    background-size: cover;
    background-position: center;
    color: var(--white-font);
    margin-top: 5%;
    padding-bottom: 5%;
}

#archive .container {
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 20px;
}

#archive .box__text {
    height: 100%;
    width: 50%;
    text-align: center;
}

#archive .box__text li {
    text-align: left;
}

#archive li {
    display: flex;
    margin-top: 30px;
}

#archive li p {
    margin: 0;
}

#archive li::marker {
    content: "";
}

#archive li::before {
    margin-right: 20px;
    content: url(../assets/image/w-check.svg);
}

/* check */

#check h2 {
    margin-bottom: 40px;
}

#check .container {
    max-width: 70%
}

#check .box__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 15px;
}

#check .card__check {
    padding: 32px;
    border: var(--dark--green) 1px solid;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* who */

#who {
    padding-bottom: 5%;
}

#who h2,
#who h1 {
    margin-bottom: 20px;
}

#who .box__content {
    display: flex;
    gap: 20px;
}

#who .card__check {
    padding: 32px;
    border: var(--dark--green) 1px solid;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
}

/* garant */

#garant {
    color: var(--white-font);
    background-color: #1E2017;
    text-align: center;

}

#garant p {
    color: var(--white-font);
}

#garant .container {
    padding: 5% 0;
}

#garant .box__text {
    gap: 30px;
}

#garant .G--button {
    color: var(--dark--green);
    background-color: var(--ligth-green);
}

/* citation */

#citation {
    border-top: 4px solid var(--dark--green);
    border-bottom: 4px solid var(--dark--green);
}

#citation .box__text {
    text-align: center;
    width: 100%;
    margin-top: 50px;
}

#citation .container {
    padding-bottom: 5%;
}

/* include */

#include .box__content {
    background-color: var(--ligth-green);
    padding: 25px;
    border-radius: 20px;

}

#include .container {
    justify-content: space-between;
    padding-bottom: 5%;
}

#include li {
    padding: 20px;
    display: flex;
    align-items: center;
    margin-top: 20px
}

#include li::marker {
    content: ""
}

#include li::before {
    content: url(../assets/image/check.svg);
    margin-right: 20px
}

#include .box__text {
    margin-top: 5%;
    text-align: center
}

#include h1 {
    text-align: center;
    padding-bottom: 30px;
    width: 60%;
}

#include .box__text h1 {
    width: 100%;
}

#guide {
    background-color: var(--dark--green);
    color: #fff;
    padding-bottom: 5%
}

#guide .box__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 40px;
    border-left: 1px solid var(--white-font);
    width: 60%
}

#guide p {
    padding-top: 40px;
    color: var(--white-font);
}

/* pause */

#pause .box__text {
    margin-top: 5%;
    background-color: var(--dark--green);
    text-align: center
}

#pause .box__text {
    padding: 40px;
    color: var(--white-font);
    width: 60%
}

#pause .box__text p {
    color: var(--white-font);
    margin-top: 5%
}

#pause .box {
    margin-top: 30px;
    width: 50%;
    text-align: center;
    gap: 30px;
}

/* footer */

#faq .box__text {
    padding-top: 16px;
    padding-bottom: 32px;
}

#faq .box__text h3 {
    margin-bottom: 20px;
    margin-top: 10px;
}

#faq .box {
    width: 100%;
    height: 10vh
}

footer {
    background-color: var(--dark--green);
}

footer .container {
    padding: 3% 0;
}

footer .box p {
    color: var(--grey);
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}


@media (max-width:1240px) {

    .g--button {
        width: 90%;
    }


    #hero .container2 {
        padding-top: 5%;
        max-width: min(1200px, 90vw);
        margin: 0 auto;
        height: 100%;
    }

    #hero .box__text {
        width: 100%;
        text-align: center;
        margin: 0 5%;
    }

    #hero .box__text img {
        width: 300px;
    }

    #hero .box__content img {
        width: 50px;
    }

    #hero .box__content {
        text-align: left;
    }

    #hero .box__image {
        display: none;
    }

    #last .box__text {
        width: 100%;
    }

    #discover .box__content {
        width: 100%;
    }

    #woman {
        background-image: url(../assets/image/Bk-mobile1.avif);
    }

    #archive {
        background-image: url(../assets/image/Bk-mobile2.avif);
    }

    #woman .box__text {
        width: 100%;
    }

    #clinic .container2 {
        flex-direction: column;
    }

    #clinic img {
        width: 80%;
    }

    #clinic .box__text {
        padding: 5% 0;
    }

    #clinic .box__image {
        display: flex;
        justify-content: right;
    }

    #intention .box__text {
        width: 90%;
    }

    #archive .box__text {
        width: 100%;
    }

    #archive h1,
    #archive h2,
    #woman h2,
    #discover h1 {
        text-align: center;
    }

    #check .box__content {
        display: flex;
        flex-direction: column;
        width: 120%;
    }

    #check {
        text-align: center;
    }

    #who .box__content {
        flex-direction: column;
    }

    #who .card__check {
        width: 100%;
    }

    #citation .box__content {
        flex-direction: column;
    }

    #citation h2 {
        text-align: center;
    }

    #include h1 {
        width: 100%;
    }

    #include li {
        padding: 20px 0;
    }

    #include li::before {
        transform: scale(0.75);
    }

    #guide .container {
        flex-direction: column;
    }

    #guide .box__text {
        width: 100%;
    }

    #guide img {
        width: 80%;
        margin-top: 30px;
    }


    #pause {
        border-bottom: var(--dark--green) 2px solid;
        padding-bottom: 5%;
    }

    #pause h1 {
        text-align: center;
    }

    #pause img {
        width: 60%;
    }

    #pause .box__text,
    #pause .box {
        width: 100%;
    }

}