/*============RESET=========*/
* {
    margin: 0;
    padding: 0;
    font-family: 'Dosis', 'Open Sans', sans-serif;
    font-size: 100%;
    font-weight: 400;
    border: none;
    outline: none;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    height: 100%;
}

html {
    height: 100%;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

h2 {
    font-size: 1.5em;
    color: #333;
}

p {
    font-size: 1em;
    color: #777;
    margin-bottom: 30px;
}

span {
    color: #777;
}

strong {
    font-weight: bold;
}

/*==========CABECALHO*===========*/
.container-logo {
    width: 100px;
    height: 100px;
    border: solid 4px #ffffff;
    border-radius: 50%;
    float: left;
    background-image: url("../img/logo-2.png");
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, .5);
    margin-top: 2%;
    margin-left: 2%;
    animation: color-logo 60s infinite alternate;
    -webkit-animation: color-logo 60s infinite alternate;
    -moz-animation: color-logo 60s infinite alternate;
    -o-animation: color-logo 60s infinite alternate;
}

@keyframes color-logo {
    0% {
        border: solid 4px #ffffff;
    }
    20% {
        border: solid 4px #f04a51;
    }
    40% {
        border: solid 4px #f78f1e;
    }
    60% {
        border: solid 4px #32b6a4;
    }
    80% {
        border: solid 4px #3377b5;
    }
    100% {
        border: solid 4px #a44597;

    }
}

@-webkit-keyframes color-logo {
    0% {
        border: solid 4px #ffffff;
    }
    20% {
        border: solid 4px #f04a51;
    }
    40% {
        border: solid 4px #f78f1e;
    }
    60% {
        border: solid 4px #32b6a4;
    }
    80% {
        border: solid 4px #3377b5;
    }
    100% {
        border: solid 4px #a44597;

    }
}

@-moz-keyframes color-logo {
    0% {
        border: solid 4px #ffffff;
    }
    20% {
        border: solid 4px #f04a51;
    }
    40% {
        border: solid 4px #f78f1e;
    }
    60% {
        border: solid 4px #32b6a4;
    }
    80% {
        border: solid 4px #3377b5;
    }
    100% {
        border: solid 4px #a44597;

    }
}

@-o-keyframes color-logo {
    0% {
        border: solid 4px #ffffff;
    }
    20% {
        border: solid 4px #f04a51;
    }
    40% {
        border: solid 4px #f78f1e;
    }
    60% {
        border: solid 4px #32b6a4;
    }
    80% {
        border: solid 4px #3377b5;
    }
    100% {
        border: solid 4px #a44597;

    }
}

/*==========MENU===========*/
.section-header {
    width: 100%;
    height: 100%;
}

.section-header.banner-header {
    width: 100%;
    height: 100%;
    background-image: url("../img/header-woman.jpg");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.container-menu {
    width: 300px;
    height: 100%;
    margin: 0;
    position: fixed;
    right: 0;
    z-index: 2;
}

.menu {
    width: 100%;
    max-width: 300px;
    height: 100%;
    max-height: 370px;
    padding: 8% 0;
    position: absolute;
    margin: auto 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.menu-item {
    width: 100%;
    text-align: right;
    text-transform: uppercase;
    margin-top: 2%;
    float: right;
}

.menu li a {
    cursor: pointer;
}

.item-social {
    width: 50px;
    height: 50px;
    border: solid 1px red;
    margin: 5px 2px;
    float: right;
}

.item-social.facebook {
    border: solid 1px #777777;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    position: relative;
}

.content-ico-face {
    width: 50px;
    height: 50px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;

    background-image: url("../img/facebook-2.png");
    -webkit-background-image: url("../img/facebook-2.png");
    -moz-background-image: url("../img/facebook-2.png");
    -o-background-image: url("../img/facebook-2.png");
    background-repeat: no-repeat;
    background-size: 65%;
    -webkit-background-size: 65%;
    -moz-background-size: 65%;
    -o-background-size: 65%;
    background-position: center;
    z-index: 2;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.item-social.facebook:hover .content-ico-face {
    background-image: url("../img/facebook-3.png");
    -webkit-background-image: url("../img/facebook-3.png");
    -moz-background-image: url("../img/facebook-3.png");
    -o-background-image: url("../img/facebook-3.png");
    background-repeat: no-repeat;
    background-size: 65%;
    -webkit-background-size: 65%;
    -moz-background-size: 65%;
    -o-background-size: 65%;
    background-position: center;
}

.camada-color-6 {
    background: #3b579d;
    width: 100%;
    height: 0%;
    margin: auto;
    position: absolute;
    bottom: 0;
    z-index: 1;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.item-social.facebook:hover .camada-color-6 {
    height: 100%;
}

.item-social.instagram {
    border: solid 1px #777777;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.insta-nivel-1 {
    width: 36px;
    height: 36px;
    margin: 7px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: #777777;
}

.insta-nivel-2 {
    width: 28px;
    height: 28px;
    margin: 4px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.insta-nivel-3 {
    width: 16px;
    height: 16px;
    margin: 6px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: #777777;
}

.insta-nivel-4 {
    width: 8px;
    height: 8px;
    margin: 4px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.camada-color-0 {
    width: 100%;
    height: 0%;
    margin: auto;
    position: absolute;
    bottom: 0;
    z-index: 0;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.item-social.instagram:hover .camada-color-0 {
    height: 100%;
}

.camada-color-1 {
    background: linear-gradient(45deg, #ffaa08, #f10000, #bc0092);
    width: 100%;
    height: 0%;
    margin: auto;
    position: absolute;
    bottom: 0;
    z-index: 1;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;

}

.item-social.instagram:hover .camada-color-1 {
    height: 100%;
    transition-delay: 90ms;
    -webkit-transition-delay: 90ms;
    -moz-transition-delay: 90ms;
    -o-transition-delay: 90ms;
}

.camada-color-2 {
    background: #ffffff;
    width: 100%;
    height: 0%;
    margin: auto;
    position: absolute;
    bottom: 0;
    z-index: 2;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.item-social.instagram:hover .camada-color-2 {
    height: 100%;
}

.camada-color-3 {
    background: linear-gradient(45deg, #ffaa08, #f10000, #bc0092);
    width: 100%;
    height: 0%;
    margin: auto;
    position: absolute;
    bottom: 0;
    z-index: 3;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.item-social.instagram:hover .camada-color-3 {
    height: 100%;
}

.camada-color-4 {
    background: #fff;
    width: 100%;
    height: 0%;
    margin: auto;
    position: absolute;
    bottom: 0;
    z-index: 4;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.item-social.instagram:hover .camada-color-4 {
    height: 100%;
}

.circle-insta {
    width: 4px;
    height: 4px;
    background: #777777;
    border-radius: 50%;
    margin: auto;
    position: absolute;
    overflow: hidden;
    top: 4px;
    right: 4px;
}

.camada-color-5 {
    background: linear-gradient(45deg, #ffaa08, #f10000, #bc0092);
    width: 100%;
    height: 0%;
    margin: auto;
    position: absolute;
    bottom: 0;
    z-index: 2;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.item-social.instagram:hover .camada-color-5 {
    height: 100%;
    transition-delay: 100ms;
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -o-transition-delay: 100ms;
}

.border-item {
    width: 15%;
    height: 4px;
    border-radius: 5px;
    float: right;
    margin: 10px 0 10px 5px;
    transition: all 1s ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.title-item {
    font-size: 0.9em;
    padding-right: 1%;
    opacity: 0;
    width: 100px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background-color: rgba(255, 255, 255, .8);
    border-radius: 15px;
    float: right;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.title-item.txt-color-gray {
    width: 35%;
}

.title-item.txt-color-red {
    width: 35%;
}

.title-item.txt-color-orange {
    width: 42%;
}

.title-item.txt-color-green {
    width: 42%;
}

.title-item.txt-color-blue {
    width: 42%;
}

.title-item.txt-color-purple {
    width: 35%;
}

.menu-item:hover .border-item.bg-color-black-light {
    width: 25%;
}

.menu-item:hover .title-item.txt-color-gray {
    opacity: 1;
}

.menu-item:hover .border-item.bg-color-red {
    width: 25%;
}

.menu-item:hover .title-item.txt-color-red {
    opacity: 1;
}

.menu-item:hover .border-item.bg-color-orange {
    width: 25%;
}

.menu-item:hover .title-item.txt-color-orange {
    opacity: 1;
}

.menu-item:hover .border-item.bg-color-green {
    width: 25%;
}

.menu-item:hover .title-item.txt-color-green {
    opacity: 1;
}

.menu-item:hover .border-item.bg-color-purple {
    width: 25%;
}

.menu-item:hover .title-item.txt-color-purple {
    opacity: 1;
}

.menu-item:hover .border-item.bg-color-blue {
    width: 25%;
}

.menu-item:hover .title-item.txt-color-blue {
    opacity: 1;
}

.btn-menu-mobile {
    width: 50px;
    height: 50px;
    padding: 10px;
    border: solid 1px #777777;
    background: rgba(255, 255, 255, .3);
    position: fixed;
    right: 5px;
    top: 5px;
    z-index: 3;
    display: none;
}

.line-btn {
    width: 100%;
    height: 3px;
    border-radius: 6px;
    margin: 5px auto;
}

.btn-line-1 {
    background: #f04a51;
    animation: color-line-1 30s infinite alternate;
    -webkit-animation: color-line-1 30s infinite alternate;
    -moz-animation: color-line-1 30s infinite alternate;
    -o-animation: color-line-1 30s infinite alternate;
}

@keyframes color-line-1 {
    0% {
        background: #f04a51;
    }
    40% {
        background: #f78f1e;
    }
    60% {
        background: #32b6a4;
    }
    80% {
        background: #3377b5;
    }
    100% {
        background: #a44597;
    }
}

@-webkit-keyframes color-line-1 {
    0% {
        background: #f04a51;
    }
    40% {
        background: #f78f1e;
    }
    60% {
        background: #32b6a4;
    }
    80% {
        background: #3377b5;
    }
    100% {
        background: #a44597;
    }
}

@-moz-keyframes color-line-1 {
    0% {
        background: #f04a51;
    }
    40% {
        background: #f78f1e;
    }
    60% {
        background: #32b6a4;
    }
    80% {
        background: #3377b5;
    }
    100% {
        background: #a44597;
    }
}

@-o-keyframes color-line-1 {
    0% {
        background: #f04a51;
    }
    40% {
        background: #f78f1e;
    }
    60% {
        background: #32b6a4;
    }
    80% {
        background: #3377b5;
    }
    100% {
        background: #a44597;
    }
}

.btn-line-2 {
    background: #f78f1e;
    animation: color-line-2 30s infinite alternate;
    -webkit-animation: color-line-2 30s infinite alternate;
    -moz-animation: color-line-2 30s infinite alternate;
    -o-animation: color-line-2 30s infinite alternate;
}

@keyframes color-line-2 {
    0% {
        background: #f78f1e;
    }
    40% {
        background: #32b6a4;
    }
    60% {
        background: #3377b5;
    }
    80% {
        background: #a44597;
    }
    100% {
        background: #f04a51;
    }
}

@-webkit-keyframes color-line-2 {
    0% {
        background: #f78f1e;
    }
    40% {
        background: #32b6a4;
    }
    60% {
        background: #3377b5;
    }
    80% {
        background: #a44597;
    }
    100% {
        background: #f04a51;
    }
}

@-moz-keyframes color-line-2 {
    0% {
        background: #f78f1e;
    }
    40% {
        background: #32b6a4;
    }
    60% {
        background: #3377b5;
    }
    80% {
        background: #a44597;
    }
    100% {
        background: #f04a51;
    }
}

@-o-keyframes color-line-2 {
    0% {
        background: #f78f1e;
    }
    40% {
        background: #32b6a4;
    }
    60% {
        background: #3377b5;
    }
    80% {
        background: #a44597;
    }
    100% {
        background: #f04a51;
    }
}

.btn-line-3 {
    background: #32b6a4;
    animation: color-line-3 30s infinite alternate;
    -webkit-animation: color-line-3 30s infinite alternate;
    -moz-animation: color-line-3 30s infinite alternate;
    -o-animation: color-line-3 30s infinite alternate;
}

@keyframes color-line-3 {
    0% {
        background: #32b6a4;
    }
    40% {
        background: #3377b5;
    }
    60% {
        background: #a44597;
    }
    80% {
        background: #f04a51;
    }
    100% {
        background: #f78f1e;
    }
}

@-webkit-keyframes color-line-3 {
    0% {
        background: #32b6a4;
    }
    40% {
        background: #3377b5;
    }
    60% {
        background: #a44597;
    }
    80% {
        background: #f04a51;
    }
    100% {
        background: #f78f1e;
    }
}

@-moz-keyframes color-line-3 {
    0% {
        background: #32b6a4;
    }
    40% {
        background: #3377b5;
    }
    60% {
        background: #a44597;
    }
    80% {
        background: #f04a51;
    }
    100% {
        background: #f78f1e;
    }
}

@-o-keyframes color-line-3 {
    0% {
        background: #32b6a4;
    }
    40% {
        background: #3377b5;
    }
    60% {
        background: #a44597;
    }
    80% {
        background: #f04a51;
    }
    100% {
        background: #f78f1e;
    }
}

.container-menu-mobile {
    width: 100%;
    height: 100%;
    position: fixed;
    right: -767px;
    background: #ffffff;
    z-index: 4;
    display: none;
}

.menu-mobile {
    width: 100%;
    max-width: 767px;
    height: calc(54px * 6);
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
}

.mobile-menu-item {
    width: 200px;
    height: 50px;
    margin: 2px auto;
}

.title-item-mobile {
    font-size: 1.1em;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    text-transform: uppercase;

}

.item-nav-mobile-0 {
    color: #777777;
    border: solid 1px #777777;

    animation: alter-color 50s infinite;
    -webkit-animation: alter-color 50s infinite;
    -moz-animation: alter-color 50s infinite;
    -o-animation: alter-color 50s infinite;
    animation-delay: 3s;
    -webkit-animation-delay: 3s;
    -moz-animation-delay: 3s;
    -o-animation-delay: 3s;

}

@keyframes alter-color {
    0% {
        color: #777777;
        border: solid 1px #777777;
    }
    20% {
        color: #f04a51;
        border: solid 1px #f04a51;
    }
    40% {
        color: #f78f1e;
        border: solid 1px #f78f1e;
    }
    60% {
        color: #32b6a4;
        border: solid 1px #32b6a4;
    }
    80% {
        color: #3377b5;
        border: solid 1px #3377b5;
    }
    100% {
        color: #a44597;
        border: solid 1px #a44597;
    }
}

@-webkit-keyframes alter-color {
    0% {
        color: #777777;
        border: solid 1px #777777;
    }
    20% {
        color: #f04a51;
        border: solid 1px #f04a51;
    }
    40% {
        color: #f78f1e;
        border: solid 1px #f78f1e;
    }
    60% {
        color: #32b6a4;
        border: solid 1px #32b6a4;
    }
    80% {
        color: #3377b5;
        border: solid 1px #3377b5;
    }
    100% {
        color: #a44597;
        border: solid 1px #a44597;
    }
}

@-moz-keyframes alter-color {
    0% {
        color: #777777;
        border: solid 1px #777777;
    }
    20% {
        color: #f04a51;
        border: solid 1px #f04a51;
    }
    40% {
        color: #f78f1e;
        border: solid 1px #f78f1e;
    }
    60% {
        color: #32b6a4;
        border: solid 1px #32b6a4;
    }
    80% {
        color: #3377b5;
        border: solid 1px #3377b5;
    }
    100% {
        color: #a44597;
        border: solid 1px #a44597;
    }
}

@-o-keyframes alter-color {
    0% {
        color: #777777;
        border: solid 1px #777777;
    }
    20% {
        color: #f04a51;
        border: solid 1px #f04a51;
    }
    40% {
        color: #f78f1e;
        border: solid 1px #f78f1e;
    }
    60% {
        color: #32b6a4;
        border: solid 1px #32b6a4;
    }
    80% {
        color: #3377b5;
        border: solid 1px #3377b5;
    }
    100% {
        color: #a44597;
        border: solid 1px #a44597;
    }
}

.item-nav-mobile-1 {
    color: #f04a51;
    border: solid 1px #f04a51;
}

.item-nav-mobile-2 {
    color: #f78f1e;
    border: solid 1px #f78f1e;
}

.item-nav-mobile-3 {
    color: #32b6a4;
    border: solid 1px #32b6a4;
}

.item-nav-mobile-4 {
    color: #3377b5;
    border: solid 1px #3377b5;
}

.item-nav-mobile-5 {
    color: #a44597;
    border: solid 1px #a44597;
}

.mask-btn-close {
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
}

.btn-close {
    width: 100%;
    height: 100%;
    border-radius: 30%;
    background: #000;
    color: #ffffff;
    text-align: center;
    padding: 64px 0 0 44px;
    position: absolute;
    margin: auto;
    top: -50px;
    left: -50px;
}

.container-social-mobile {
    width: 125px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
}

.menu-social-mobile {
    width: 50px;
    height: 100%;
    float: left;
    margin: 0px 5px;
}

.item-social.facebook.mobile {
    float: left;
}

.item-social.instagram.mobile {
    float: left;
}

.bg-color-black-light {
    background-color: rgba(0, 0, 0, .4);
}

.bg-color-green {
    background-color: #32b6a4;
}

.txt-color-green {
    color: #32b6a4;
}

.bg-color-orange {
    background-color: #f78f1e;
}

.txt-color-orange {
    color: #f78f1e;
}

.txt-color-white {
    color: #ffffff;
}

.bg-color-red {
    background-color: #f04a51;
}

.txt-color-red {
    color: #f04a51;
}

.txt-color-gray {
    color: #777777;
}

.bg-color-purple {
    background-color: #a44597;
}

.txt-color-purple {
    color: #a44597;
}

.bg-color-blue {
    background-color: #3377b5;
}

.txt-color-blue {
    color: #3377b5;
}

.bg-color-gray {
    background-color: #777777;
}

.bg-color-green-light {
    background-color: #c8fd87;
}

.bg-color-green-yellow {
    background-color: #fef984;
}

.bg-color-green-pink {
    background-color: #f1a3cd;
}

.content-title-main {
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -225px;
    position: absolute;
    left: 2%;
    bottom: 0;
    padding: 2%;
    opacity: 0;
    border-radius: 15px 15px 0 0;
    background: rgba(255, 255, 255, .5);

    animation: move 2s;
    -webkit-animation: move 2s;
    -moz-animation: move 2s;
    -o-animation: move 2s;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    -wmoz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
}

@keyframes move {
    0% {
        opacity: 0;
        margin-bottom: -225px;
    }
    100% {
        opacity: 1;
        margin-bottom: 0px;
    }
}

@-webkit-keyframes move {
    0% {
        opacity: 0;
        margin-bottom: -225px;
    }
    100% {
        opacity: 1;
        margin-bottom: 0px;
    }
}

@-moz-keyframes move {
    0% {
        opacity: 0;
        margin-bottom: -225px;
    }
    100% {
        opacity: 1;
        margin-bottom: 0px;
    }
}

@-o-keyframes move {
    0% {
        opacity: 0;
        margin-bottom: -225px;
    }
    100% {
        opacity: 1;
        margin-bottom: 0px;
    }
}

.title-blog {
    font-size: 6.2em;
    font-family: 'Lato', sans-serif;
    text-align: center;
    text-transform: uppercase;
    margin: auto;
    position: absolute;
    top: -1100px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 80%;
    height: 150px;
    font-weight: 700;
    opacity: 0;

    animation: move-title 4s;
    -webkit-animation: move-title 4s;
    -moz-animation: move-title 4s;
    -o-animation: move-title 4s;

    animation-delay: 1.4s;
    -webkit-animation-delay: 1.4s;
    -moz-animation-delay: 1.4s;
    -o-animation-delay: 1.4s;

    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;

}

@-webkit-keyframes move-title {
    0% {
        opacity: 0;
        top: -1100px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

@-moz-keyframes move-title {
    0% {
        opacity: 0;
        top: -1100px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

@-o-keyframes move-title {
    0% {
        opacity: 0;
        top: -1100px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

.name-people {
    font-size: 1.6em;
    font-family: 'Lato', sans-serif;
    text-align: center;
}

.section {
    width: 100%;
    padding: 50px 0;
    position: relative;
}

.container {
    width: 100%;
    max-width: 940px;
    padding: 5px;
    margin: 0 auto;
}

.titles {
    text-align: center;
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 5.32%;
}

.blog-desk {
    display: block;
}

.blog-mobile {
    display: none;
}

.t-main-blog {
    margin-bottom: 0;
    margin-top: 5.85%;
}

.row-blog {
    position: relative;
    width: 100%;
    max-width: 940px;
    margin-top: 8.52%;
    overflow: auto;
}

.column01-blog {
    color: #777777;
    width: 50%;
    max-width: 450px;
    float: left;
    padding: 1.07%;
    position: relative;
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
}

.column02-blog {
    color: #777777;
    width: 50%;
    max-width: 450px;
    float: left;
    padding: 1.07%;
    position: relative;
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
}

.content-txt-main {
    width: 100%;
    max-width: 470px;
    padding: 0 3%;
}

.titles-blog {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 2%;
    line-height: 37px;
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
}

.row-date-category {
    width: 100%;
    max-width: 100%;
}

.column-date-and-category-1 {
    width: 50%;
    float: left;
}

.column-date-and-category-2 {
    width: 50%;
    float: left;
}

.date-blog {
    font-size: 1.1em;
    margin-bottom: 2%;
    float: left;
}

.txt-main {
    font-size: 1.5em;
    margin-bottom: 2%;
    color: #777777;
    clear: both;
}

.image-blog {
    width: 100%;
    height: 350px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 2px;
    padding: 0;
    transition: all 1s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.mask-blog {
    background-color: rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 1s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.circle-more {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 1s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.circle-more .line-1 {
    width: 50%;
    height: 3px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .7);
}

.circle-more .line-2 {
    width: 3px;
    height: 50%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .7);
}

.image-blog:hover .circle-more {
    opacity: 1;
}

.image-blog:hover .mask-blog {
    background-color: rgba(0, 0, 0, .4);
}

.icon {
    margin-left: 2%;
    color: #777777;
}

.icon.category-one {
    font-size: 1.1em;
    float: left;
    margin-top: 2px;
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.icon.category-two {
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.icon.category-three {
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.icon.more-categories {
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.row-blog.category-one:hover .icon.category-one {
    color: #f1a3cd;
}

.row-blog.category-two:hover .icon.category-two {
    color: #D2B48C;
}

.row-blog.category-three:hover .icon.category-three {
    color: #0092ce;
}

.row-blog.more-categories:hover .icon.more-categories {
    color: #C1CDC1;

}

.border-article-left {
    width: 4px;
    height: 100%;
    border-radius: 4px;
    margin: auto 0px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 1s ease-in-out;
}

.border-article-right {
    width: 4px;
    height: 100%;
    border-radius: 4px;
    margin: auto 0px;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
}

.row-blog.category-one:hover .border-article-right {
    background-color: #f1a3cd;
}

.row-blog.category-one:hover .border-article-left {
    background-color: #f1a3cd;
}

.row-blog.category-two:hover .border-article-right {
    background-color: #D2B48C;
}

.row-blog.category-two:hover .border-article-left {
    background-color: #D2B48C;
}

.row-blog.category-three:hover .border-article-right {
    background-color: #0092ce;
}

.row-blog.category-three:hover .border-article-left {
    background-color: #0092ce;
}

.row-blog.more-categories:hover .border-article-right {
    background-color: #C1CDC1;
}

.row-blog.more-categories:hover .border-article-left {
    background-color: #C1CDC1;
}

.border-article-bottom {
    width: 100%;
    height: 4px;
    border-radius: 4px;
    margin: 24px 0;
    display: none;
}

.row-blog.category-one .border-article-bottom {
    background-color: #f1a3cd;
}

.row-blog.category-two .border-article-bottom {
    background-color: #D2B48C;
}

.row-blog.category-three .border-article-bottom {
    background-color: #0092ce;
}

.row-blog.more-categories .border-article-bottom {
    background-color: #C1CDC1;;
}

.content-intagram {
    padding: 0 20%;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

.item-intagram {
    width: 33.3333%;
    max-width: 188px;
    height: 188px;
    float: left;
    background-image: url("../img/insta.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.content-masks {
    width: 100%;
    height: 100%;
    position: relative;
}

.mask-color {
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: rgba(0, 0, 0, .3);
    background-image: linear-gradient(360deg, rgba(0, 0, 0, .5), transparent, transparent);
    transition: all .3s ease;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;

}

.item-intagram:hover .mask-color {
    opacity: 0;

}

.mask-insta {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    background-image: url('../img/insta.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
}

.item-intagram:hover .mask-insta {
    opacity: .6;

}

.slider-carrossel {
    width: 100%;
    height: 220px;
    position: relative;
    z-index: 2;
}

.mask-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
}

.content-slider {
    height: 100%;
    padding: 0.5%;
    float: left;

}

.item-slider {
    width: 100%;
    height: 100%;
    background: #fff;
    border-top: 1px solid #E8E8E8;
    border-left: 1px solid #E8E8E8;
    border-right: 1px solid #777777;
    border-bottom: solid 3px #777777;
}

.item-slider:hover {
    border-bottom: solid 3px #32b6a4;
}

.image-slide {
    background-size: contain;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.img-1 {
    background-image: url("../img/arezzo.png");
}

.img-2 {
    background-image: url("../img/amaro.svg");
}

.img-3 {
    background-image: url("../img/paula.jpg");
}

.img-4 {
    background-image: url("../img/pele.jpg");
}

.arrows-slider {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
    z-index: 2;
}

.arrows-slider.left {
    top: 0;
    bottom: 0;
    left: -18px;
    padding: 4px 12px;
}

.fa.fa-angle-left {
    color: #fff;
}

.arrows-slider.right {
    top: 0;
    bottom: 0;
    right: -18px;
    padding: 3px 17px;
}

.ico-arrow-right.fa.fa-angle-right {
    color: #fff;
}

.arrows-slider.left:hover {
    background: #32b6a4;
}

.arrows-slider.right:hover {
    background: #32b6a4;
}

.row-sobre {
    width: 100%;
    max-width: 940px;
    overflow: auto;
}

.column01-sobre {
    width: 30%;
    padding: 0 10px;
    float: left;
}

.column02-sobre {
    width: 70%;
    padding: 10px;
    float: left;
}

.img-author {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    /*background-image: url("../img/author-2.jpg");*/
    background-repeat: no-repeat;
    background-position-x: 50%;
    background-position-y: 16%;
    background-size: cover;
}

.section.contato {
    padding-bottom: 0px;
    clear: both;
}

.formulario {
    width: 100%;
}

.row-contato {
    width: 100%;
    max-width: 940px;
    padding-bottom: 5.32%;
    overflow: auto;
}

.column01-contato {
    width: 50%;
    max-width: 450px;
    padding: 0 10px;
    float: left;
}

.column02-contato {
    width: 50%;
    max-width: 450px;
    overflow: auto;
    padding: 0 10px;
    float: left;
}

input.c-form-txt {
    width: 100%;
    height: 40px;
    padding: 8px 20px;
    color: #000000;
    font-size: 1em;
    border-radius: 8px;
    border: 1px solid #a44597;
    margin-bottom: 2.07%;
}

textarea.c-form-area {
    width: 100%;
    height: 140px;
    padding: 8px 20px;
    color: #000000;
    font-size: 1em;
    border-radius: 8px;
    border: 1px solid #a44597;
    margin-bottom: 2.07%;
}

.content-btn {
    width: 150px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

.btn-contact {
    width: 100%;
    height: 100%;
    font-size: 1.2em;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    line-height: 50px;
    color: #a44597;
    background: #ffffff;
    border: 1px solid #a44597;
    border-radius: 8px;
    cursor: pointer;
    transition: all 250ms ease-in;
    -webkit-transition: all 250ms ease-in;
    -moz-transition: all 250ms ease-in;
    -o-transition: all 250ms ease-in;
}

.btn-contact:hover {
    background: rgba(164, 69, 151, .8);
    border-color: rgba(164, 69, 151, .8);
    color: #ffffff;
}

.container.contact {
    position: relative;
    padding-bottom: 100px;
}

.btn-return-top {
    width: 40px;
    height: 40px;
    border-radius: 6px 6px 0 0;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: -29px;
    background-image: url("../img/icon-up.png");
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
}

.section-topo {
    width: 100%;
    height: 100%;
    position: relative;
}

.mask-topo {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
}

.image-topo {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.txt-color.category-one {
    color: #f1a3cd;
}

.txt-color.category-two {
    color: #D2B48C;
}

.txt-color.category-three {
    color: #0092ce;
}

.txt-color.more-categories {
    color: #C1CDC1;
}

.content-tile-post {
    height: 100px;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 4em;
    font-weight: 900;

}

.date-post {
    margin-top: 1%;
    margin-left: 3%;
    font-size: 1.2em;
    float: left;
}

.icon-post {
    float: left;
    padding-top: 1.4%;
    font-size: 1.5em;
}

.body-post {
    margin: 100px 0 0 0;
}

.conten-btn-facebook {
    width: 200px;
    margin-top: 12px;
    float: right;
    /* position: absolute; */
    /* bottom: 0; */
    /* right: 5%; */
}

.form-done {
    width: 100%;
    height: 100px;
    margin-top: 2%;
    color: #34a853;
    background: rgba(52, 168, 83, .3);
    display: none;
    border-radius: 15px;
}

.form-done p {
    text-align: center;
    color: #34a853;
    font-weight: 500;
    font-size: 1.25em;
    font-family: 'Lato', sans-serif;
    padding: 39px;
}

.form-fail {
    width: 100%;
    height: 100px;
    margin-top: 2%;
    color: #ea4335;
    background: rgba(234, 67, 53, .2);
    display: none;
}

.form-fail p {
    text-align: center;
    color: #ea4335;
    font-weight: 500;
    font-size: 1.25em;
    font-family: 'Lato', sans-serif;
    padding: 39px;
}

.content-loader {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .4);
    cursor: progress;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: none;
}

.icon-loader {
    width: 60px;
    height: 60px;
    margin: auto;
    background-image: url("../img/loader.gif");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.btn-voltar {
    width: 150px;
    height: 50px;
    background-color: rgba(255, 255, 255, .3);
    border: 1px solid;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    line-height: 50px;
    text-transform: uppercase;
    margin: auto;
    position: absolute;
    top: 1%;
    right: 1%;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.btn-voltar:hover {
    color: #ffffff;
}

.btn-mais-posts {
    width: 150px;
    height: 50px;
    border: 1px solid;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    line-height: 50px;
    text-transform: uppercase;
    margin: 50px auto 0 auto;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.btn-mais-posts:hover {
    letter-spacing: 1px;
}

.btn-voltar.txt-color-white:hover {
    background: transparent;
}

.title-category-children {
    font-size: 1.2em;
    font-weight: 700;
    margin-right: 2px;
    float: left;
}

.content-categorias-filhas {
    margin-bottom: 1%;
    width: 100%;
    margin-top: -4px;
    overflow: auto;
}

.name-category-children {
    font-size: 1.2em;
    float: left;
    margin-right: 2%;
}

.content-tags {
    width: 100%;
    margin: 5% 0;
    clear: both;
}

.title-tags {
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1%;
}

.tags {
    padding: 12px;
    font-size: 1em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
    background: #777777;
    float: left;
    border-radius: 8px;
    margin-right: 1%;
    margin-top: 1.5%;
}

.row-detail {
    width: 100%;
    max-width: 940px;
    height: 35px;
}

.column-detail-1 {
    width: 50%;
    max-width: 470px;
    float: left;
}

.column-detail-2 {
    width: 50%;
    /* height: 35px; */
    max-width: 470px;
    float: left;
    position: relative;
}

.content-relacionado {
    width: 100%;
    margin: 50px 0;
}

.title-main-relations {
    font-family: 'Lato', sans-serif;
    font-size: 3em;
    text-align: center;
    padding: 3%;
    font-weight: 600;
}

.row-relacionados {
    width: 100%;

}

.column-relacionado {
    width: 33.3333%;
    float: left;
    margin: 3% 0;
}

.content-datas-relation {
    width: 100%;
    overflow: auto;
}

.container-image-relacioanda{
    width: 100%;
    max-width: 100%;
    height: 200px;
    overflow: hidden;
}

.image-relacioanda {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0% 50%;
    transform: scale(1);
    transition: all 350ms ease-in-out;
}

.column-relacionado:hover .image-relacioanda{
    transform: scale(1.1);
}

.title-relacionado {
    text-align: center;
    padding: 3% 8%;
    font-size: 1.5em;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}

.column-relacionado:hover .title-relacionado{
    color: #777777;
}

.link-posts-relations {
    text-decoration: none;
    color: #000;
}


.creditos {
    width: 100%;
    text-align: end;
    padding-right: 1.5%;
    font-size: .9em;
    color: #ffffff;
    font-family: "Arial", "sans-serif";
    margin: auto;
    position: absolute;
    bottom: 1%;
}

.desenvolvedor {
    width: 30%;
    padding: 5px;
    color: #ffffff;
    font-size: .8em;
    font-family: "Arial", "sans-serif";
    text-align: center;
    background: #a44597;
    border-radius: 0 8px 0 0;
}

.pinterest-center {
    margin: 0 auto;
    width: 240px;
}

#arrow-left, #arrow-right {
    display: none;
}

.txt-small {
    font-size: 1em;
    padding: 12px;
    color: #777777;
}

@media (max-width: 991px) {
    .txt-main {
        font-size: 1.2em;
    }

    .column01-blog {
        max-width: 369px;
    }

    .column02-blog {
        max-width: 369px;
    }

    .content-tile-post {
        font-size: 3em;
        line-height: 42px;
    }

    .title-blog {
        font-size: 3.2em;
        height: 70px;
    }

    .desenvolvedor {
        width: 40%;
    }
}

@media (max-width: 767px) {

    .container-menu {
        display: none;
    }

    .container-menu-mobile {
        display: block;
    }

    .btn-menu-mobile {
        display: block;
    }

    .name-people {
        font-size: 1.3em;
    }

    .title-blog {
        font-size: 1.5em;
    }

    .blog-desk {
        display: none;
    }

    .blog-mobile {
        display: block;
        max-width: 450px;
        margin: 0 auto;
    }

    .column01-blog {
        width: 100%;
        max-width: 450px;
    }

    .column02-blog {
        width: 100%;
        max-width: 450px;
    }

    .txt-main {
        font-size: 1.2em;
        line-height: 26px;
    }

    .t-main-blog {
        margin-top: 25px;
    }

    .border-article-left {
        display: none;
    }

    .border-article-right {
        display: none;
    }

    .border-article-bottom {
        display: block;
    }

    .row-blog.category-one .icon.category-one {
        margin-left: 2%;
        color: #f1a3cd;
    }

    .row-blog.category-two .icon.category-two {
        margin-left: 2%;
        color: #D2B48C;
    }

    .row-blog.category-three .icon.category-three {
        margin-left: 2%;
        color: #0092ce;
    }

    .row-blog.more-categories .icon.more-categories {
        margin-left: 2%;
        color: #C1CDC1;
    }

    .section {
        padding: 25px 0;
    }

    .content-slider {
        width: 50%;
    }

    .column01-sobre {
        float: none;
        margin: 0 auto;
        width: 45%;
    }

    .column02-sobre {
        float: none;
        width: 100%;
    }

    .txt-main.txt-sobre {
        text-align: center;
        font-size: 1.2em;
        line-height: 28px;
    }

    .column01-contato {
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .column02-contato {
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    textarea.c-form-area {
        min-height: 165px;
    }

    .arrows-slider {
        width: 50px;
        height: 50px;
        margin: auto;
        z-index: 1;
    }

    .arrows-slider.right {
        bottom: -280px;;
        right: -60px;
        left: 0;
        padding: 8px 22px;
    }

    .arrows-slider.left {
        bottom: -280px;
        right: 0;
        left: -60px;
        padding: 8px 16px;
    }

    .section.sobre {
        padding: 50px 0;
    }

    .section.contato {
        padding: 0;
        clear: both;
    }

    .content-intagram {
        padding: 0 8%;
    }

    .btn-return-top {
        right: 10px;
    }

    .content-tile-post {
        font-size: 2.2em;
        line-height: 35px;
    }

    .body-post {
        margin: 50px 22px;
    }

    .title-main-relations {
        font-size: 2.2em;
    }

    .title-relacionado {
        text-align: center;
        padding: 3%;
        font-size: 1.2em;
        font-family: 'Lato', sans-serif;
        font-weight: 600;
    }

    .image-post {
        width: 100%;
        height: auto;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        margin: 5px;
    }
}

@media (max-width: 479px) {

    .content-title-main {
        right: 0;
        left: 0;
    }

    .content-intagram {
        padding: 0;
    }

    .item-intagram {
        width: 100%;
        margin: 0 auto;
        float: none;
    }

    .content-slider {
        width: 100%;
    }

    .column01-sobre {
        width: 100%;
    }

    .img-author {
        margin: 10px auto;
    }

    .content-btn {
        margin-bottom: 20%;
    }

    .title-blog {
        font-size: 2em;
        height: 60px;
    }

    .titles-blog {
        font-size: 1.5em;
        line-height: 28px;
    }

    .row-detail {
        margin: auto;
        max-width: 350px;
    }

    .column-detail-1 {
        max-width: 200px;
    }

    .column-detail-2 {
        max-width: 170px;
    }

    .column-relacionado {
        width: 33.333%;
    }

    .title-main-relations {
        font-size: 1.8em;
        clear: both;
    }

    .image-relacioanda {
        height: 100px;
    }

    .title-relacionado {
        font-size: .75em;
    }

    .column-date-and-category-1 {
        width: 100%;
        float: left;
    }

    .column-date-and-category-2 {
        width: 100%;
        float: left;
    }

    .image-slide {
        background-size: 50%;
    }

    .desenvolvedor {
        width: 75%;
    }

    .conten-btn-facebook {
        width: 80px;
    }

    p {
        margin-bottom: 15px;
    }

    #arrow-left #arrow-right {
        display: block;
    }

    #arrow-left, #arrow-right {
        display: block;
    }
    .content-developer {
        bottom: -42px;

    }
}