@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
:root{
  --font-family: "Inter", sans-serif;
}
* {
scrollbar-color: rgb(223, 227, 232) rgb(249, 250, 251);
scrollbar-width: thin;
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
html, body{
margin:0;
padding:0;
font-family: var(--font-family);
background:#FFFFFF;
}
ul{
margin:0;
padding:0;
}
ul li{
padding:0;
margin:0;
list-style: none;
font-family: var(--font-family);
}
img{
max-width: 100%;
height:auto;
border:0;
outline: 0;
}
button, input, a, select{
outline: 0 !important;
border:0;
text-decoration: none;
font-family: var(--font-family);
}
a, span, p, h1, h2, h3, h4, h5, h6, small{
font-family: var(--font-family);
}
a{
text-decoration:none;
font-family: var(--font-family);
}
#loading-form{
position:fixed;
width:100%;
height:100vh;
display:none;
align-items:center;
justify-content:center;
z-index: 9999;
background-color: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(3px);
top:0;
left:0;
}
.cBBVXs {
width: 50px;
height: 50px;
animation: rotate 1s linear infinite;
}
.cBBVXs .path {
stroke: rgb(13, 13, 2);
stroke-linecap: round;
animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
header.sticky{
-webkit-animation: headerSlideDown .35s forwards;
animation: headerSlideDown .35s forwards;
position: sticky;
top: 0;
z-index:90;
background-color: #fff;
box-shadow: 0 0 10px rgb(13,13,13,.2);
}
@-webkit-keyframes headerSlideDown {
  0% {
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  to {
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
@keyframes headerSlideDown {
  0% {
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  to {
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
.content-header{
display:flex;
align-items:center;
justify-content:space-between;
padding:20px 0 15px;
max-width:800px;
margin:auto;
}
.follow ul{
display:flex;
align-items:center;
gap:10px;
}
.follow ul li a{
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
}
.follow ul li a svg{
fill:#555;
}
.follow ul li a:hover svg{
fill:#000;
}
.logo h1{
font-weight:300;
font-size:35px;
color:#212121;
margin:0;
font-family: "Nunito Sans", sans-serif;
}
.logo h1 strong{
font-weight:800;
font-family: "Nunito Sans", sans-serif;
}
.language .flags{
gap:15px;
}
.language .flags a{
display:flex;
width:30px;
height:30px;
position:relative;
filter: grayscale(90%);
}
.language .flags a:hover, .language .flags a.active{
filter:none;
}
.content-header .language, .content-header .follow{
width:20%;
display:flex;
justify-content:center;
}
.content-header .logo{
width:60%;
text-align:center;
}
.menu-sacha{
display:flex;
align-items:center;
justify-content:center;
padding-bottom:15px;
margin-bottom:20px;
position:relative;
}
.menu-sacha li{
padding:0 15px;
}
.menu-sacha li:not(:last-child){
border-right:1px solid #555;
}
.menu-sacha li a{
color:#555;
font-weight:400;
text-transform:uppercase;
font-size:15px;
transition:ease-in-out 0.5s;
}
.menu-sacha li a:hover, .menu-sacha a.active{
font-weight:600;
color:#000;
transition:ease-in-out 0.5s;
margin:0 -1px;
}
footer .copyright{
background:#f9f9f9;
padding:10px 0;
text-transform: uppercase;
}
footer .copyright small{
display:block;
width:100%;
text-align:center;
font-weight:400;
color:#212121;
font-size:13px;
}
footer .copyright small strong{
font-weight:700;
}
section#body{
background-color: #fff;
position: relative;
min-height: calc(100vh - 177px);
}
.bio{
position:relative;
margin-bottom:30px;
}
.bio .image-sacha{
position:relative;
}
.bio .image-sacha span{
position:absolute;
left:15px;
bottom:10px;
font-size:13px;
font-weight:500;
text-transform: uppercase;
color:#fff;
}
.bio .image-sacha img{
height:775px;
filter: grayscale(0%);
max-height: calc(100vh - 200px);
}
.bio .biografia{
position:absolute;
background:#fff;
top:50%;
transform:translatey(-50%);
right:0;
width:65%;
height:710px;
overflow:hidden;
padding:35px;
box-shadow:0 0 35px rgb(0,0,0,.15);
max-height: 90%;
}
.bio .biografia .content-text{
height:100%;
overflow:hidden;
overflow-y:auto;
padding-right:20px;
}
.bio .biografia .content-text h1{
position:fixed;
top:0px;
left:10px;
color:#555;
opacity:0.07;
font-size:180px;
line-height:1;
}
.bio .biografia .content-text p:last-child{
margin-bottom:0;
}
.bio .biografia .content-text p{
font-weight:300;
color:#000;
}
.bio .biografia .content-text p strong{
font-weight:600;
}
.contatos{
height: calc(100vh - 240px);
min-height: 300px;
max-width:800px;
margin:auto;
text-align: center;
}
.contatos h2{
text-transform: uppercase;
font-weight: 700;
letter-spacing: -1px;
margin-bottom: 20px;
font-size:18px;
margin-top:20px;
}
.contatos h3{
text-transform: uppercase;
font-weight: 500;
font-size: 16px;
margin-bottom: 0;
line-height: 1.4;
}
.contatos a{
font-size: 16px;
color: #555;
line-height: 1.5;
margin-bottom:30px;
display:block;
}
.contatos a:hover{
color:#13baee;
}
.video-container {
overflow: hidden;
position: relative;
width:100%;
} 
.video-container::after {
padding-top: 56.25%;
display: block;
content: '';
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.item-cinema .conteudo{
display:flex;
align-items:center;
justify-content:space-between;
max-width:1100px;
margin:auto;
padding:40px 0;
}
.players{
max-width:1100px;
margin:10px auto 30px;
}
.item-cinema:last-child{
border-bottom:0;
padding-bottom:30px;
}
.item-cinema .capa{
width:20%;
}
.item-cinema .descricao{
width:28%;
text-align:right;
padding:20px;
}
.item-cinema .descricao h4{
font-size:16px;
font-weight:700;
}
.item-cinema .descricao h4 small{
font-weight:400;
display:block;
line-height: 1.5;
}
.item-cinema .descricao p{
font-size:15px;
margin-bottom:10px;
}
.item-cinema .trailer{
width:52%;
}
.item-cinema:nth-child(2n) .conteudo{
flex-direction:row-reverse;
}
.item-cinema:nth-child(2n){
background:#f4f4f4;
}
.item-cinema:nth-child(2n) .descricao{
text-align:left;
}

@media(max-width:992px){
.navegacao-mobile{
display: block;
position: fixed;
background: #fff;
width: 100%;
right: 0;
top: 0px;
height: 100vh;
padding: 30px;
z-index: 500;
overflow: hidden;
  overflow-y: hidden;
overflow-y: auto;
transition: -webkit-transform .50s ease;
transition: transform .50s ease;
transition: transform .50s ease,-webkit-transform .50s ease;
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0);
}	
.navegacao-mobile.menu-open {
 -webkit-transform: translate3d(0,0,0);
 transform: translate3d(0,0,0);
}
.content-mobile{
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px 0 30px;
}
.logo h1{
font-size:24px;
}	
.menu-mobile svg{
fill: #000;
width: 30px;
height: 30px;
cursor:pointer;
}	
.bio .biografia {
position: relative;
background: #fff;
top: 0;
transform: none;
right: 0;
width: 100%;
height: auto;
overflow: hidden;
padding: 35px 20px;
box-shadow: 0 0 35px rgb(0,0,0,.15);
}	
.bio .image-sacha img {
min-height: 100%;
filter: grayscale(0%);
height: auto;
}	
.bio .biografia .content-text h1 {
position: absolute;
}	
.bio .biografia .content-text{
padding-right:0;
}	
	
.item-cinema .conteudo{
flex-wrap:wrap;
padding:40px 15px;
}	
.item-cinema .trailer {
width: 100%;
}	
.item-cinema .capa {
width: 125px;
margin-bottom: 20px;
}	
.item-cinema .descricao {
width: calc(100% - 125px);
text-align: right;
padding-left:15px;
padding-right:0px;
}	
.players{
padding:0 15px;
}	
.item-cinema:nth-child(2n) .descricao{
padding-left:0;
padding-right:15px;
}	
.contatos{
height: 200px;
padding-top:80px;
}	
.itens-mobile{
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 0 20px;
}	
.menu-sacha{
display:block;
text-align:center;
}	
.menu-sacha li:not(:last-child) {
border-right: 0;
border-bottom: 1px solid #000;
padding: 10px 0;
}	
.menu-sacha li:last-child{
padding-top:10px;
}
section#body {
min-height: calc(100vh - 134px);
}

}