@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@font-face {
    font-family: Amsterdam;
    src: url(../static/fonts/Amsterdam\ Four_ttf\ 400.ttf) format('truetype');
}

html, body{
    font-family: Quicksand, Arial;
    width: 100%;
    height: 100%;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: #3f5169;
    overflow-y: auto;
    width: 300px;
    transition: all ease-in-out 0.5s;
    padding: 0 15px;
    z-index: 9997;
}

#header .profile img{
     margin: 15px auto;
     display: block;
     width: 120px;
     border: 2px solid #feebff;
     border-radius: 50%;
}

#header .profile h1{
    font-size: 24px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    text-align: center;
    color: #feebff;
}

#header .profile .social-links a{
    font-size: 1rem;
    background-color: #3f5169;
    color: #feebff;
    padding: 0.6rem;
    margin-right: 1rem;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

#header .profile .social-links a:hover{
    color: #ffffff;
    background-color: #25303f;
}

.nav-menu{
    padding: 1.5rem;
}

.nav-menu a, .nav-menu a:focus{
    display: flex;
    align-items: center;
    color: #feebff;
    transition: 0.3s;
    font-size: 15px;
}

.nav-menu a i, .nav-menu a:focus i{
    font-size: 24px;
    padding-right: 1.5rem;
    color: #feebff;

}

.nav-menu a:hover, .nav-menu .active, .nav-menu .active:focus, .nav-menu li:hover > a{
    text-decoration: none;
    color: #ffffff;
}

.nav-menu a:hover i, .nav-menu .active i, .nav-menu .active:focus i, .nav-menu li:hover > a i{
    color: #ffffff;
}

#main{
    margin-left: 300px;
}

section#inicio{
    background-image: url("./img/bg2.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 100vh;
    
}

section#inicio div{
    background-color:  rgba(63,81,105,0.5);
}

section#inicio h2{
    font-size:  3rem;
    font-family: Amsterdam;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

section#inicio span#crp{
    margin-left: 4rem;
    margin-right: 8rem;
    font-family: "Open Sans", sans-serif;
    font-size: 1.5rem;
}

.text-shadow{
    text-shadow: 4px 4px 10px #000000;
}


section#inicio div#mensagem{
    width: 30rem;
    background-color:  rgba(63,81,105,0.8);
}

i.menu-mobile{
    position: fixed;
    color: #fff;
    background-color: #3f5169;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    border-radius: 4rem;
    cursor: pointer;
    z-index: 10;
    width: 45;
    height: 45;
    padding: 5px;
    display: none;
    justify-content: center;
    align-items: center;
}

.menu-nav-active{
    overflow: hidden;
}

.menu-nav-active #header{
    left: 0;
}

section#sobre p{
    font-size: x-large;
    vertical-align: middle;
}
#fotoSobre{
    width: 100%;
    margin-right: 0;
    display: block;
}

section#servicos{
    background-color: #e6e6e6;
}

section#servicos p{
    margin: 2rem;
}

section#servicos img#terapia{
    margin: auto;
    height: 20rem;
}

.slider-responsive {
    padding: 1rem;
    justify-content: center;
}

.card{
    height: 28rem;
    margin: 2rem;
    border-style: solid;   
}
.card-img{
    width: 10rem;
    margin: auto;
    padding: 1rem;
}

section#contato p#endereco{
    font-size: smaller;
}

.mensagem {
    padding: 0;
}

textarea{
    resize: none;
}

.btn-secondary{
    background-color: #3f5169;
}

#btn-enviando{
    display: none;
}

#alerta{
    position: fixed;
    z-index: 10;
    top: 30px;
    right: 30px;
}

#footer{
    padding: 15px;
    color: #fff;
    font-size: 14px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 300px;
    z-index: 9999;
    background-color: #3f5169;
    transition: .3s;
}

/* Animação */

[data-anime]{
    opacity: 0;
    transition:  1s;
}

[data-anime="down"]{
    transform: translate3d(0, -100%, 0);
}

[data-anime="up"]{
    transform: translate3d(0, 100%, 0);
}

[data-anime="left"]{
    transform: translate3d(-100%, 0, 0);
}

[data-anime="right"]{
    transform: translate3d(50px, 0, 0);
}

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1024px){
    #header {
        left: -300px;
    }
    i.menu-mobile{
        display: flex;
    }
    section#inicio h2{
        font-size: 3.5rem;
    }
    span#subtitle{
        margin-right: 0;
        font-size: 1rem;
    }
    #main{
        margin-left: 0;
    }
    #footer{
        position: static;
        width: auto;
        padding: 20px 15px;
    }
}

@media (max-width: 1244px){
    .card{
        height: auto; 
    }
}

*::-webkit-scrollbar{
    width: 10px;
}

*::-webkit-scrollbar-track{
    width: 12px;
    box-shadow: inset 0 0 .3rem #00000050;
    background-color: #fff;
}

*::-webkit-scrollbar-thumb{
    background-color: #3f5169;
}
