body {
    font-family: 'Ubuntu', sans-serif;
}

.anime {
	opacity: 0;
	transform: translate3d(-100px,0,0);
	transition: .3s;
}

.anime-start {
	opacity: 1;
	transform: translate3d(0,0,0);
}


[data-anime] {
    opacity: 0;
    transition: .5s
}

[data-anime="left"] {
    transform: translate3d(-50px, 0, 0)
}

[data-anime="right"] {
    transform: translate3d(50px, 0, 0)
}

[data-anime="top"] {
    transform: translate3d(0, -50px, 0)
}

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px)
}



.header {
    position: absolute;
    width: 100%;
    padding-top: 80px;
}
.header h1 {
    font-size: 3em;
    line-height: 1em;
    font-weight: bold;
    color: #923f90;
    margin-top: 50px;
    
}

.perfil img {
    margin-top: -50px;
}

@media (max-width: 768px) {
    .header {
        position: relative;
        width: 100%;
        height: 300px;
        padding-top: 30px;
        background: #fdfbe6;
    }
    .header h1 {
        font-size: 2em;
    }
    .perfil img {
        margin-top: 40px;
    }
}


p {
    font-size: 1.3em;
    color: #565656;
}

.bar {
    position: relative;
    width: 250px;
    height: 5px;
    background: #612960;
    display: block;
    margin: 0 auto;
}

.btn {
    white-space: inherit!important;
}

.btn-custom {
    background: #923f90;
    color: #fff;
}
.btn-custom2 {
    background: #fff;
    color: #612960;
}

.btn-custom:hover {
    color: #f8f2f6;
    background: #612960
}

.content-banner {
    background: #f8f2f6 url(../img/bg.jpg);
    width: 100%;
    padding: 40px 0;
}

.contatos {
    padding: 40px 0; 
    overflow: hidden;   
}
.contatos p {
    color: #565656;
}

.footer {
    background: #923f90;
    color: #fff;
    padding: 20px 0;
    margin-top: 40px; 
}

.footer a,.footer p {
    color: #fff;
}

.footer p, .contatos p {
    font-size: 1.2em;
}

iframe {
    filter: grayscale(1)
}


