:root {
    --color0: #1f4455;
    --color1: #f3f3f3;
    --color2: #e0edec;
    --color3: #d9edeb;
    --color4: #d09e95;
    --color5: #e2e5d7;
    --color6: #ed745e;
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }

    header {

        .container {
            flex-flow: row wrap;

            div {
                width: 100%;
                text-align: center;
            }
        }

        .title,
        .whatsapp,
        .crp {
            text-align: center;
            float: none !important;
        }
    }

    .sobre {

        .foto,
        .texto {
            text-align: start;
            display: block;
            float: none !important;
            width: 100% !important;
            margin: 0 auto;
        }

        .foto {
            max-width: 50% !important;
        }

        .texto {
            max-width: 90% !important;
        }
    }

    footer {
        .container {
            flex-flow: row wrap;

            div {
                width: 100%;
                text-align: center;
            }
        }
    }


}

@media (max-width: 768px) {
    .hide-sm {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hide-lg {
        display: none !important;
    }
}

body {
    background-color: var(--color1);
    color: var(--color0);
    margin: 0;
    font-family: Sans-serif;
}

.container {
    max-width: 960px;
    width: 95%;
    margin: 0 auto;
    padding: 0 10px;
}

.clearfix {
    clear: both;
}

h1,
h2,
h3 {
    font-family: "Cormorant";

}

.button {
    text-decoration: none;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;

    &.regular {
        background-color: var(--color0);
        color: #fff;
    }

    &.call-to-action {
        background-color: var(--color6);
        color: #fff;
    }
}

.center-wrapper {
    display: flex;
    justify-content: center;
}

header {
    width: 100%;
    background-color: #fff;
    padding: 10px 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 99;

    .container {
        display: flex;
        justify-content: space-between;
    }

    .title {
        font-weight: 500;
        margin: 0;
    }

    .crp {
        font-size: 12px;
    }

    .whatsapp {
        margin-top: 10px;

        a,
        i {
            font-size: 22px;
            color: #128c7e;
            text-decoration: none;
            cursor: pointer;
        }
    }
}

.sobre {
    padding: 10px 0;
    width: 100%;
    background-color: var(--color2);

    .foto {
        float: left;
        max-width: 30%;

        img {
            max-width: 100%;
            border-radius: 5px;
            margin: 20px 0 0 0;
        }
    }

    .texto {
        float: right;
        max-width: 60%;
        padding: 0 10px;
        line-height: 30px;
        font-size: 18px;
        text-align: start;
    }
}

.ajuda-terapia {
    padding: 30px 0;
    width: 100%;
    position: relative;
    background-color: var(--color1);
    background-repeat: no-repeat;

    .container {
        max-width: 600px;
    }

    p {
        line-height: 23px;
    }

    .ajuda-terapia-item {
        margin-bottom: 20px;

        img {
            width: 20%;
        }

        p {
            display: block;
            width: 78%;

        }

        h3 {
            margin: 5px 0;
        }

        &.direita {
            img {
                float: right;

            }

            p {
                float: left;

            }
        }

        &.esquerda {
            img {
                float: left;
            }

            p {
                float: right;
            }
        }
    }


    .custom-shape-divider-top-1716148280 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .custom-shape-divider-top-1716148280 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 56px;
        transform: rotateY(180deg);
    }

    .custom-shape-divider-top-1716148280 .shape-fill {
        fill: var(--color2);
    }
}

.espaco {
    background-color: var(--color5);
    padding: 10px 0;
    width: 100%;
    position: relative;

    p {
        line-height: 30px;
    }

    .imagem {
        display: flex;
        justify-content: center;

        img {
            max-width: 100%;
            border-radius: 5px;
            margin: 20px 0;
        }
    }

    .custom-shape-divider-top-1716149090 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .custom-shape-divider-top-1716149090 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 21px;
        transform: rotateY(180deg);
    }

    .custom-shape-divider-top-1716149090 .shape-fill {
        fill: #F3F3F3;
    }
}

.frase {
    padding: 30px 0;
    margin: 0 0 10px 0;
    width: 100%;
    text-align: center;
    font-family: "Cormorant";
    font-size: 20px;

    background: radial-gradient(var(--color3), var(--color2));
    background-repeat: no-repeat;
}

footer {
    padding: 10px 0;
    font-size: 12px;

    .container {
        display: flex;
        justify-content: space-between;
    }

    a,
    a:visited {
        margin: 5px;
        text-decoration: none;
        cursor: pointer;
        color: inherit;
    }
}