.page-home {
    color: #fff;
}
.page-home h1 {
    /*font-family: "Titillium Web", sans-serif;*/
    font-size: 240%;
    font-weight: 300;
    color: #FFF;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, .5);
}
.page-home h1:before {
    content: "";
    width: 20px;
    height: 10px;
    background-color: #f4f4f4;
    margin: 10px auto;
    display: block;
    animation: page-home-h1-before;
    animation-timeline: view();
}
@keyframes page-home-h1-before {
    0%   {
        transform: translateY(-20px);
        opacity: 0;
    }
    80%, 100%  {
        transform: translateY(0);
        opacity: 1;
    }
}
.page-home h1:after {
    content: "";
    background-color: #FFF;
    height: 2px;
    margin: 10px auto;
    display: block;
    animation: page-home-h1-after;
    animation-timeline: view();
}
@keyframes page-home-h1-after {
    0%   {
        width: 100%;
        opacity: 0;
    }
    50%, 100%  {
        width: 100px;
        opacity: 1;
    }
}

.page-home .btn {
    /*border: 1px solid #222;*/
    /*outline: 1px solid rgba(255,255,255,.08);*/
}

.page-home section.inicial {
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    position: relative;
}
.page-home section.inicial .conteudo {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 3;
}
.page-home section.inicial .conteudo .icon-bar {
    font-size: 2rem;
    position: absolute;
    top: -50px;
    left: 7%;
    transition: .5s all 1.8s ease;
}
.page-home.menu-aberto section.inicial .icon-bar {
    transition: .5s all 0s ease;
}
.page-home section.inicial .conteudo .icon-bar a {
    color: #FFF;
    text-decoration: none;
}
.page-home section.inicial .conteudo .logo {
    position: absolute;
    bottom: 20%;
    right: -400px;
    max-width: 400px;
    transition: .6s all .6s ease;
}
.page-home section.inicial .conteudo .texto {
    font-family: "Titillium Web", sans-serif;
    color: #FFF;
    position: absolute;
    left: -82%;
    max-width: 82%;
    transition: .6s all 1.3s ease;
}
.page-home.menu-aberto section.inicial .conteudo .texto {
    transition: .6s all 0s ease;
}
.page-home section.inicial .conteudo .barra {
    background-color: #FFF;
    width: 2px;
    height: 50%;
    position: absolute;
    right: 7%;
    top: -50%;
    transition: .6s all 0s ease;
}
.page-home section.inicial .seta {
    position: absolute;
    bottom: -80px;
    left: calc(50% - 40px);
    width: 80px;
    height: 80px;
    z-index: 2;
    transition: .6s all 2s ease;
}
.page-home.menu-aberto section.inicial .seta {
    transition: .6s all 0s ease;
}
.page-home section.inicial .seta .icone {
    background-image: url(../img/home-inicial-seta.png);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    width: 80px;
    height: 60px;
    margin: auto;
    display: block;
    top: 5px;
    animation-name: seta;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}
@keyframes seta {
    0%   {top:5px;}
    50%  {top:15px;}
    100% {top:5px;}
}
.page-home section.inicial .bg {
    width: 100%;
    height: 100%;
    background: url(../img/home-inicial-bg.png) repeat;
    display: block;
    position: absolute;
    z-index: 1;
    opacity: .55;
}
.page-home section.inicial video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 3s all 1s ease;
}
.page-home.menu-aberto section.inicial video {
    opacity: .4;
}
.page-home section.inicial.aberto .conteudo .icon-bar {
    top: 50px;
}
.page-home section.inicial.aberto .conteudo .logo {
    right: calc(7% + 20px);
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-delay: 1.2s;
}
.page-home section.inicial.aberto .conteudo .texto {
    left: 7%;
    animation-name: pulse;
    animation-duration: 10s;
    animation-delay: 2.2s;
}
.page-home section.inicial.aberto .conteudo .barra {
    top: 0;
}
.page-home section.inicial.aberto video {
    opacity: 1;
}
.page-home section.inicial.aberto .seta {
    bottom: 0;
}

.page-home section.ambientes {
    border-top: 1px solid #222;
    padding-bottom: 50px;
    background-image: url(../img/home-ambientes-bg.jpg);
    background-repeat: no-repeat;
    background-position-y: center;
    background-size: cover;
    min-height: 100vh;
    animation: anime_ambientes_bg;
    animation-timeline: view();
}
@keyframes anime_ambientes_bg {
    0% {
        background-position-x: 0
    }
    50% {
        background-position-x: 50%
    }
    100% {
        background-position-x: 100%
    }
}
.page-home section.ambientes .texto {
    margin: 40px auto;
    text-align: center;
}
.page-home section.ambientes .lista-ambientes .ambiente {
    overflow: hidden;
    margin: 5px;
    position: relative;
}
.page-home section.ambientes .lista-ambientes .ambiente label {
    display: block;
    position: absolute;
    bottom: 2px;
    width: 100%;
    z-index: 1;
    font-size: 180%;
    font-weight: 700;
    color: #FFF;
    text-align: center;
    text-shadow: 2px 3px 0 rgba(0, 0, 0, .4);
}
.page-home section.ambientes .lista-ambientes .ambiente img {
    max-width: 100%;
    transition: transform 5s ease;
}
.page-home section.ambientes .lista-ambientes .ambiente:hover img {
    transform: scale(1.2);
}

.page-home section.empresa {
    min-height: 100vh;
    position: relative;
}
.page-home section.empresa .fundo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(../img/home-sobre-bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    transition: transform .4s ease-in-out;
    animation: anime_bg_zoom;
    animation-timeline: view(); 
}
.page-home section.empresa .container > .row {
    min-height: 60vh;
}
.page-home section.empresa .coluna1 {
    text-shadow: 0.15em 0.15em 0.25em rgba(0,0,0,.5);
}
@media (min-width: 768px) {
    .page-home section.empresa .coluna1 {
        animation: anime_empresa_coluna1;
        animation-timeline: view(); 
    }
    .page-home section.empresa .coluna2 {
        animation: anime_empresa_coluna2;
        animation-timeline: view(); 
    }
    .page-home section.empresa .coluna2 .btn {
        animation: anime_empresa_coluna2btn;
        animation-timeline: view(); 
    }
}
@keyframes anime_empresa_coluna1 {
    0% {
        transform: translateX(-10%);
    }
    50% {
        transform: translateX(10%);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes anime_empresa_coluna2 {
    0% {
        transform: translateX(10%);
    }
    50% {
        transform: translateX(-10%);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes anime_empresa_coluna2btn {
    0% {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    50% {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}


.page-home section.depoimentos {
    padding-bottom: 15vh;
    background-image: radial-gradient(circle, #0d0d0c, #0a0a09, #070606, #040303, #000000);
}
.page-home section.depoimentos h1 {
    margin-top: 3rem;
    padding-bottom: 5vh;
}
.page-home section.depoimentos .carousel .carousel-indicators {
    bottom: -50px;
}
.page-home section.depoimentos .carousel .carousel-item {
    width: 70%;
    left: 15%;
    text-align: center;
}
.page-home section.depoimentos .carousel .carousel-item .box {
    height: 440px;
    display: table-cell;
    vertical-align: middle;
}
.page-home section.depoimentos .carousel .carousel-item .box .autor {
    font-weight: 600;
    color: #888;
}
@media (min-width: 768px) {
    .page-home section.depoimentos h1 {
        padding-bottom: 7vh;
    }
    .page-home section.depoimentos .carousel .carousel-item .box {
        height: 400px;
    }
}
@media (min-width: 992px) {
    .page-home section.depoimentos h1 {
        padding-bottom: 8.5vh;
    }
    .page-home section.depoimentos .carousel .carousel-item .box {
        height: 340px;
    }
}
@media (min-width: 1400px) {
    .page-home section.depoimentos h1 {
        padding-bottom: 10vh;
    }
    .page-home section.depoimentos .carousel .carousel-item .box {
        height: 300px;
    }
}


.page-home section.parceiro {
    background: rgba(40,40,40);
    background: linear-gradient(3deg, rgb(40,40,40) 0%, rgb(15,15,15) 100%);
}
.page-home section.parceiro .grid {
    width: 100%;
    margin: auto;
    text-align: center;
}
.page-home section.parceiro .grid video {
    height: 120px;
}
@media (min-width: 576px) {
    .page-home section.parceiro .grid video {
        height: 150px;
    }
}
@media (min-width: 992px) {
    .page-home section.parceiro .grid video {
        height: 200px;
    }
}
@media (min-width: 1200px) {
    .page-home section.parceiro .grid video {
        height: 240px;
    }
}
@media (min-width: 1400px) {
    .page-home section.parceiro .grid video {
        height: 280px;
    }
}
.page-home section.parceiro .coluna1 .ilustracao {
    position: relative;
}
@media (max-width: 767px) {
    .page-home section.parceiro .coluna1 .ilustracao {
        border-bottom: 2px solid #000;
    }
}
.page-home section.parceiro .coluna1 .ilustracao .foto {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    animation: anime_parceiro_foto;
    animation-timeline: view(); 
}
.page-home section.parceiro .coluna1 .ilustracao .sombra {
    animation: anime_parceiro_sombra;
    animation-timeline: view();
}
@media (min-width: 768px) {
    .page-home section.parceiro .coluna2 {
        animation: anime_parceiro_coluna2;
        animation-timeline: view(); 
    }
}
@keyframes anime_parceiro_foto {
    0% {
        transform: translateX(-10%);
    }
    20% {
        transform: translateX(0);
    }
}
@keyframes anime_parceiro_sombra {
    0% {
        transform: translateX(-25%) skewX(30deg);
    }
    20% {
        transform: translateX(0) skewX(0 deg);
    }
}
@keyframes anime_parceiro_coluna2 {
    0% {
        transform: translateX(10%);
    }
    50% {
        transform: translateX(-10%);
    }
    100% {
        transform: translateX(0);
    }
}

.page-home section.vantagens {
    min-height: 100dvh;
    position: relative;
    color: #FFF;
}
.page-home section.vantagens .fundo {
    z-index: -5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(../img/home-vantagens-bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    animation: anime_bg_zoom;
    animation-timeline: view(); 
}
.page-home section.vantagens .barra1 {
    width: 100%;
    height: 80px;
    top: 20%;
    left: 0;
    position: absolute;
    animation: anime_vantagens_barra1;
    animation-timeline: view(); 
    overflow: hidden;
}
.page-home section.vantagens .barra1:after {
    content: "";
    width: 100%;
    height: 80px;
    display: block;
    margin: 0 40px 0 -40px;
    background-color: rgba(255, 255, 255, .2);
    transform: skewX(-45deg);
}
@keyframes anime_vantagens_barra1 {
    0%, 100% {
        width: 100%;
    }
    40% {
        width: 0%;
    }
}
.page-home section.vantagens .barra2 {
    width: 10%;
    height: 80px;
    top: 70%;
    right: 0;
    position: absolute;
    animation: anime_vantagens_barra2;
    animation-timeline: view(); 
    overflow: hidden;
}
.page-home section.vantagens .barra2:after {
    content: "";
    width: 100%;
    height: 80px;
    display: block;
    margin: 0 -40px 0 40px;
    background-color: rgba(0, 0, 0, .25);
    transform: skewX(-45deg);
}
@keyframes anime_vantagens_barra2 {
    0%, 100% {
        width: 100%;
    }
    40% {
        width: 0%;
    }
}
.page-home section.vantagens > .container {
    margin-top: 10vh;
    margin-bottom: 10vh;
}
.page-home section.vantagens > .container .row .grid .subgrid {
    background-color: rgba(0, 0, 0, .25);
    font-size: 90%;
    padding: 15px;
    min-height: 30vh;
    transition: 1.5s all ease;
    margin-bottom: 30px;
}
.page-home section.vantagens > .container .row .grid .subgrid:hover {
    background-color: rgba(0, 0, 0, .9);
}
.page-home section.vantagens > .container .row .grid:nth-child(even) {
    animation: anime_vantagens_gridimpar;
    animation-timeline: view(); 
}
.page-home section.vantagens > .container .row .grid:nth-child(odd) {
    animation: anime_vantagens_gridpar;
    animation-timeline: view();
}
.page-home section.vantagens .icone {
    max-width: 50px;
    margin: auto;
}
@keyframes anime_vantagens_gridimpar {
    0% {
        transform: translateY(-10vh);
        opacity: .3;
    }
    30% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes anime_vantagens_gridpar {
    0% {
        transform: translateY(+10vh);
        opacity: .3;
    }
    30% {
        transform: translateY(0);
        opacity: 1;
    }
}


.page-home .parcerias {
    background-image: linear-gradient(to bottom, #0a0a0a, #191919);
    padding-bottom: 50px;
}
.page-home .parcerias .texto {
    max-width: 800px;
    width: 80%;
    margin: auto;
}


@media (max-aspect-ratio: 16/12) {
    @keyframes anime_bg_zoom {
        0% {
            background-size: auto 100%;
        }
        100% {
            background-size: auto 125%;
        }
    }
}
@media (min-aspect-ratio: 16/12) {
    @keyframes anime_bg_zoom {
        0% {
            background-size: 100% auto;
        }
        100% {
            background-size: 125% auto;
        }
    }
}

@media (min-width: 1400px) {
    .page-home section.inicial .conteudo .logo {
        width: 22%;
    }
    .page-home section.inicial .conteudo .texto {
        font-size: 3.8rem;
        line-height: 4rem;
        top: 25%;
    }
    .page-home section.ambientes .texto {
        width: 60%
    }
    .page-home section.vantagens > .container {
        margin-top: 20vh;
        margin-bottom: 20vh;
    }
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .page-home section.inicial .conteudo .logo {
        width: 25%;
    }
    .page-home section.inicial .conteudo .texto {
        font-size: 3.6rem;
        line-height: 3.8rem;
        top: 24%;
    }
    .page-home section.ambientes .texto {
        width: 65%
    }
    .page-home section.vantagens > .container {
        margin-top: 20vh;
        margin-bottom: 20vh;
    }
}
@media (min-width: 992px) and (max-width: 1399px) {
    .page-home section.inicial .conteudo .logo {
        width: 30%;
    }
    .page-home section.inicial .conteudo .texto {
        font-size: 3.4rem;
        line-height: 3.6rem;
        top: 23%;
    }
    .page-home section.ambientes .texto {
        width: 70%
    }
    .page-home section.vantagens > .container {
        margin-top: 15vh;
        margin-bottom: 15vh;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .page-home section.inicial .conteudo .logo {
        width: 35%;
    }
    .page-home section.inicial .conteudo .texto {
        font-size: 3.1rem;
        line-height: 3.3rem;
        top: 22%;
    }
    .page-home section.ambientes .texto {
        width: 75%
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .page-home section.inicial .conteudo .logo {
        width: 40%;
    }
    .page-home section.inicial .conteudo .texto {
        font-size: 2.9rem;
        line-height: 3.1rem;
        top: 21%;
    }
    .page-home section.ambientes .texto {
        width: 80%
    }
    .page-home section.parceiro .container img {
        max-width: 300px; 
    }
    .page-home section.parceiro .grid {
        max-width: 440px;
        margin-bottom: 40px;
    }
}
@media (max-width: 575px) {
    .page-home section.inicial .conteudo .logo {
        width: 45%;
    }
    .page-home section.inicial .conteudo .texto {
        font-size: 2.8rem;
        line-height: 3.0rem;
        top: 20%;
    }
    .page-home section.ambientes .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .page-home section.ambientes .texto {
        width: 85%
    }
    .page-home section.parceiro .container img {
        max-width: 250px; 
    }
    .page-home section.parceiro .grid {
        max-width: 300px;
        margin-bottom: 40px;
    }
}


