@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* {
    font-size: 16px;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

/* MENU */

.menu {
    margin: 0px auto;
    font-weight: 400;
    /*position: absolute;
    top: 0;
    z-index: 2;*/
    background: #ffffff;
}

.menu .navbar-expand-lg .navbar-nav .nav-link {
    padding: .5rem 19px;
    color: #a4a388;
}

.menu .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #b76448;
}

.menu img {
    width: 200px;
}

.menu .sociais {
    display: flex;
}

.menu .sociais .nav-link {
    margin: 0 13px;
    padding: .5rem 0 !important;
}

/* BANNER */

.banner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background: #EFE9CF;
    background: linear-gradient(360deg, rgba(239, 233, 207, 1) 0%, rgba(255, 255, 255, 1) 100%);
}


.banner .banner-img {
    height: 100vh;
    width: 100%;
}

.banner .banner-img img {
    position: absolute;
    width: 700px;
    height: 100vh;
    object-fit: cover;
    object-position: top;
}

.banner .banner-gradient {
    position: absolute;
    height: 100vh;
    width: 700px;
}

.banner .banner-gradient .gradient {
    height: 100vh;
    width: 150px;
    float: right;
    /*background: linear-gradient(90deg, transparent, #f1eee9);*/
}

.banner .banner-text {
    width: 80%;
    text-align: center;
    padding: 50px;
}

.banner .banner-text img {
    width: 350px;
}

.banner .banner-text .title {
    color: #b76448;
    font-size: 20px;
    margin: 30px 10px;
}

.banner .banner-text .subtitle {
    color: #b76448;
    font-size: 25px;
    background: #ebd9c0;
    padding: 20px;
    border-radius: 40px;
    font-weight: 300;
    margin: 40px 10px;
}

.banner .banner-text .atendimento {
    color: #454545;
    font-size: 16px;
    margin: 30px 10px;
}

.banner .banner-text a {
    background: #b76448;
    color: #ffffff;
    border-radius: 40px;
    padding: 10px 30px;
    transition: all 0.5s;
    position: relative;
}

.banner .banner-text a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.banner .banner-text a:hover::before {
    opacity: 0;
    transform: scale(0.5, 0.5);
}

.banner .banner-text a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    transform: scale(1.2, 1.2);
}

.banner .banner-text a:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}

/* SOBRE */
.sobre {
    padding: 50px 0;
    display: flex;
    background: #ebd9c0;
}

.sobre .title {
    color: #b76448;
    font-size: 36px;
    padding: 20px;
}

.sobre .box .col-12 {
    padding: 20px;
}



/* COMO AJUDAR */
.como-ajudo {
    background: #efe9cf;
}

.como-ajudo .row>* {
    padding: 0;
}

.como-ajudo .title {
    text-align: center;
    color: #b76448;
    margin-bottom: 30px;
    margin-top: 30px;
}

.como-ajudo .row p {
    color: #454545;
}

.como-ajudo .accordion-flush .accordion-item .accordion-button {
    border-radius: 30px;
    background: #d89660;
    color: #ffffff;
}

.como-ajudo .accordion-button:focus {
    background: #b76448 !important;
    color: #ffffff;
    border-color: unset !important;
    box-shadow: none !important;
}

.como-ajudo .accordion-flush .accordion-item {
    border-radius: 30px;
    margin: 10px 0;
}

.como-ajudo .accordion-item {
    background: none;
}

.como-ajudo .accordion-button:not(.collapsed) {
    color: #ffffff;
}

.como-ajudo a {
    background: #ddaf8a;
    display: block;
    border-radius: 40px;
    transition: all 0.5s;
    width: 150px;
    margin: 15px 0;
}

.como-ajudo a:hover {
    opacity: 1;
    transform: scale(1, 1);
    background: #d89660;
}



/* ATENDIMENTO ONLINE */
.atendimento-online {
    background: rgba(235, 217, 195, .3);
    padding: 80px 0;
}

.atendimento-online .title {
    text-align: center;
    margin-bottom: 50px;
    color: #b76448;
}

.atendimento-online .card {
    padding: 30px 0 20px;
    background: none;
    color: #b76448;
}

.atendimento-online .card i::before {
    font-size: 100px;
}

.atendimento-online span {
    font-style: italic;
    font-size: 13px;
}

.atendimento-online .info {
    text-align: center;
}

.atendimento-online .info a {
    background: #b76448;
    color: #ffffff;
    border-radius: 40px;
    padding: 10px 30px;
    transition: all 0.5s;
    position: relative;
    margin: 20px auto;
}

.atendimento-online .info a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.atendimento-online .info a:hover::before {
    opacity: 0;
    transform: scale(0.5, 0.5);
}

.atendimento-online .info a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    transform: scale(1.2, 1.2);
}

.atendimento-online .info a:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}

/* DÚVIDAS FREQUENTES */
.duvidas {
    padding: 80px 0;
    /*background-image: url(../images/duvidas/bg-duvidas.png);*/
    background: #f1eee9;
}

.duvidas .title {
    text-align: center;
    margin-bottom: 60px;
    color: #b76448;
}

.duvidas .accordion-flush .accordion-item .accordion-button {
    border-radius: 30px;
    background: #ddaf8a;
    color: #ffffff;
}

.duvidas .accordion-button:focus {
    background: #b76448 !important;
    color: #ffffff;
    border-color: unset !important;
    box-shadow: none !important;
}

.duvidas .accordion-flush .accordion-item {
    border-radius: 30px;
    margin: 10px 0;
}

.duvidas .accordion-item {
    background: none;
}

.duvidas .accordion-button:not(.collapsed) {
    color: #ffffff;
}

.duvidas .info {
    text-align: center;
}

.duvidas .info a {
    background: #b76448;
    color: #ffffff;
    border-radius: 40px;
    padding: 10px 30px;
    transition: all 0.5s;
    position: relative;
    margin: 20px auto;
}

.duvidas .info a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.duvidas .info a:hover::before {
    opacity: 0;
    transform: scale(0.5, 0.5);
}

.duvidas .info a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    transform: scale(1.2, 1.2);
}

.duvidas .info a:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}

/* FOOTER */
.footer {
    background: #b76448;
    padding: 50px 50px 10px 50px;
    color: rgba(255, 255, 255, .9);
}

.footer .footer-img img {
    border-radius: 100%;
    width: 120px;
    height: 120px;
}

.footer .footer-text {
    margin: 5px 20px;
}

.footer .footer-text .title {
    font-size: 32px;
    font-weight: 700;
}

.footer .footer-text .subtitle {
    font-size: 19px;
    font-weight: 300;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    color: #ddaf8a;
}

.footer h3 {
    font-weight: 700;
}

.footer p {
    font-weight: 300;
}

.footer .atencao {
    color: rgba(255, 255, 255, .9);
    font-size: 25px;
    background: #d89660;
    padding: 25px;
    border-radius: 40px;
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer .atencao p {
    margin: 0;
}

.footer .atencao p>span {
    font-weight: 700;
}

.footer .copyright {
    text-align: center;
    padding: 20px 10px;
    border-top: 1px solid #ffffff;
    margin-top: 40px;
}

.footer .copyright p {
    margin: 0;
}


/* PSICOTERAPIAS */
.banner-psicoterapias {
    background: url(../images/psicoterapias/psicoterapias.png);
    min-height: 180px;
    background-size: cover;
    background-position: center;
    color: #f1eee9;
    text-align: center;
    display: block;
    padding: 30px 0;
}

.banner-psicoterapias .sobre-text {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    max-width: 800px;
    display: block;
    margin: 0 auto;
}

.beneficios,
.indicacoes {
    background: #efe9cf;
}

.beneficios h1,
.como-funciona h1,
.indicacoes h1 {
    color: #b76448;
    margin-bottom: 30px;
    text-align: center;
}

.beneficios .box-text,
.como-funciona .box-text,
.indicacoes .box-text {
    padding: 48px;
}

.como-funciona {
    background: rgba(235, 217, 195, .3);
}

.como-funciona ul li span {
    font-weight: 700;
}

/* MEDIAS QUERIES */

@media only screen and (max-width: 1024px) {
    .menu .sociais {
        margin: 0;
    }

    .menu .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 11px;
    }
}

@media only screen and (max-width: 992px) {
    .menu {
        margin: 0 auto;
        z-index: 3;
    }

    .menu .navbar-nav {
        margin-top: 20px;
    }

    .menu .navbar-expand-lg .navbar-nav .nav-link {
        text-align: center;
        margin: 10px;
        font-size: 16px;
    }

    .menu .sociais {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 768px) {
    .banner {
        display: block;
    }

    .banner .banner-gradient {
        display: none;
    }

    .banner .banner-img {
        height: auto;
    }

    .banner .banner-img img {
        position: relative;
        width: 100%;
        height: auto;
    }

    .banner .banner-text {
        width: 100%;
    }

    .footer {
        padding: 50px 20px 10px 20px;
    }

    .footer .row {
        text-align: center;
    }

    .footer .row .col-12 {
        justify-content: center;
        flex-wrap: wrap;
    }

    .banner-psicoterapias .sobre-text {
        padding: 10px 20px;
    }

    .beneficios .box-text,
    .como-funciona .box-text,
    .indicacoes .box-text {
        padding: 48px 20px 20px 20px;
    }

    .beneficios .row,
    .indicacoes .row {
        flex-direction: column-reverse;
    }

}