@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Raleway", sans-serif;
}
.navbar-leo {
    background-color: rgba(255, 255, 255, .5) !important;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
}
.navbar-leo-scroll {
    background-color: rgba(255, 255, 255, .8) !important;
    transition: ease-in-out .3s;
}
header {
    width: 100%;
    height: 100vh;
    background-color: #b0b1ab;
    padding: 56px 0;
    background-image: url("../img/header.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    box-shadow: 0px 5px 5px rgba(0,0,0,.2);
}
header .header-caption {
    width: 100%;
    background-color: rgba(66, 83, 32, .5);
    color: #fff;
    margin-left: 20%;
    padding: 30px;
    border-radius: 0 20px 0 20px;
    text-align: center;
}
.header-caption h1 {
    font-style: italic;
}
.navbar-collapse .nav-link {
    font-weight: 500;
}
@media (min-width: 1700px) {
    header .header-caption {
        width: 90%;
    }
}
@media (min-width: 768px) {
    .navbar-expand-md .navbar-collapse {
        justify-content: flex-end;
    }
}
@media (max-width: 768px) {
    header {
        background-position: 70% 50%;
    }
    header .header-caption {
        width: 54%;
        margin-left: unset;
    }
}
@media (max-width: 667px) {
    header .header-caption {
        margin-top: 10%;
    }
    .navbar-collapse {
        padding: 30px 10px;
    }
    header .header-caption h1 {
        font-size: 1rem;
    }
}
@media (max-width: 500px) {
    header .header-caption {
        margin-top: 50%;
    }
}
/*Section about*/
section#about {
    width: 100%;
    padding: 60px 0;
    scroll-margin-top: 67px;
}
section#about .boas-vindas {
    background-image: url("../img/bg_s1_bvindas.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: auto;
}
.img-welcome {
    border-radius: 16px;
}
/*Section Psicologia*/
section#psicologia {
    background-color: #e2e4d8;
    padding: 40px 0 10px 0;
    scroll-margin-top: 67px;
}
/*Section Depoimentos*/
section#depoimentos {
    padding: 40px 0;
}
section#depoimentos .owl-carousel .depoimento-content {
    width: 100%;
    padding: 30px 35px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0,0,0,.2);
}
section#depoimentos .owl-carousel .owl-stage-outer {
    padding: 10px 0;
}
section#depoimentos .owl-carousel .owl-nav button.owl-next,
section#depoimentos .owl-carousel .owl-nav button.owl-prev {
    font-size: 25px;
}
section#depoimentos .owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: inherit;
}
section#depoimentos .quote-testimonial-top {
    width: 10% !important;
    margin-bottom: 30px;
}
section#depoimentos .quote-testimonial-bottom {
    width: 10% !important;
    margin-top: 30px;
}
/*Section Consultoria*/
section#consultoriaEdu {
    background-color: #f1f1f1;
    padding: 40px 0 30px 0;
    scroll-margin-top: 67px;
}
/*Section Contato*/
section#contato {
    padding: 40px 0;
}
section#contato a.link-contato {
    color: #688037;
    text-decoration: none;
}
section#contato a.link-contato:hover,
section#contato a.link-contato:active {
    color: #425320;
    text-decoration: none;
}
/*Footer*/
footer {
    background-color: #425320;
    padding: 15px;
}
footer .redes-sociais {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}
footer .redes-sociais li {
    margin-right: 10px;
}
footer .redes-sociais li a i::before {
    font-size: 1.4rem;
}
.back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 43px;
    border-radius: 50px;
    right: 15px;
    bottom: 15px;
    background: #a0b578;
    color: #fff;
    transition: display 0.5s ease-in-out;
    z-index: 99999;
    border: 0;
}
.back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 7px;
    left: 8px;
}
.back-to-top:hover {
    color: #fff;
    background: #647447;
    transition: 0.3s ease-in-out;
}
@media (max-width: 667px) {
    footer .footer-psileo {
        text-align: center;
    }
    footer .redes-sociais {
        justify-content: center;
    }
    footer .redes-sociais li {
        margin: 10px 10px 0 10px;
    }
    footer .txt-copyright {
        padding: 10px 0;
    }
}