@font-face {font-family: 'Mikabold'; src: url('../assets/font/MikadoBold_DEMO.otf');}
:root{
    /*
    | CORES RUFUS
    */
    --ketchup: #e23427;
    --salsa: #1d6640;
    --lapela:#8b8c89;
    --mostarda: #e5af17;
    --tela: #f8f4e3;
    --lente:#2d2d2d;

    /*
    | VARIÁVEIS DE AMBIENTE
    */
    --font-main: 1rem;
    --font-second: 1.5rem;
    --font-third: 2rem;
    --font-tiny: .8rem;
}

a{text-decoration: none;}
button{outline: none;border: none;}

/*
| CLASSES DE INTERAÇÃO
*/
.press-click:active {transform: scale(0.95);}
.mostarda{color: var(--mostarda);}
.ketchup{color: var(--ketchup);}
.salsa{color: var(--salsa);}
.lapela{color: var(--lapela);}
.tela{color: var(--tela);}
.lente{color: var(--lente);}
*{padding: 0;margin: 0;box-sizing: border-box;font-family: 'Nata sans'; color: var(--tela);}

.title-main{
    font-size: 2rem;
}

body{
    width: 100vw;
    height: 100vh;
    background: var(--salsa);
    overflow-x: hidden;
}

h1{
    font-weight: 900;
    font-size: 5rem;
    text-align: center;
}
#main_section_container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: relative;
}
#section-presentation h2{
    font-size: 2rem;
}
#section-presentation{
    width: 100%;
    padding: 200px 50px;
}
.smooke-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--salsa);
    background: linear-gradient(0deg, var(--salsa) 0%, rgba(143, 90, 254, 0) 100%);
    padding: 150px;
}

#main_section_container video{
    width: 100%;
}


#section_second_container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#section_second_container iframe{
    width: 90%;
    height: 800px;
    border-radius: 25px;
}
#section_second_container h1{
    padding: 20px 0;
    color: var(--lente);
}

.card_job:nth-child(odd) {
    display: flex;
    flex-direction: row-reverse;
}
.card_job{
    background: #272727;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
}
.card_job h1{
    font-size: 2rem;
    color: var(--lente) !important;
}
.card_divisor img:hover{
    transform: scale(1.1)rotate(10deg)translateX(30px)translateY(-50px);
    box-shadow: 10px 15px 0px var(--lapela);
}
.card_job img{
    border-radius: 20px;
    transition: all .2s ease;
}

.card_divisor:nth-child(1){
    width: 300px;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space;
    gap: 10px;
    padding: 10px;
}
.card_divisor:nth-child(2){
    object-fit: cover;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    object-fit: cover;
}
.card_divisor button{
    width: 100%;
    padding: 10px 5px ;
    background: var(--lente);
    color: var(--tela);
    font-weight: 900;
    border-radius: 100px;
}
.section_glow{
    display: flex;
    width: 100%;
    justify-content: center !important;
    padding: 10px;
}
.hero-parallax {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  margin-top: 50px;
}

.hero-image {
  width: 90vw;
  max-width: none;
  height: auto;
  transition: width 0.2s ease-out;
}

.lasts-jobs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.lasts-jobs .tittle{
    padding: 50px 0;
}
.grid {
    display: block;
}

.grid-item {
    position: relative;
    width: 33%; /* ou calc(33.333% - 10px) */
    margin-bottom: 10px;
    float: left; /* IMPORTANTE para o Masonry funcionar */
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    transition: all .2s ease-in-out;
}
.grid-item:hover{
    transform: scale(1.02);
    cursor: pointer;
}
.grid-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 30px;
}
.grid-item h1{
    position: absolute;
    bottom: 30px; left: 30px ;
    font-size: 1rem;
}


@media (max-width: 480px) {
    .grid-item {
        width: 100%;
    }
}

@media(max-width:756px){
    .grid-item img{
        border-radius: 10px;
    }
    .hidden-mobile{
        display: none;
    }
    #main_section_container p{
        width: 100%;
    }
    #main_section_container h1{
        font-size: 3rem;
    }
    #main_section_container{
        text-align: center;
        width: 100vw;
    }
    #section_second_container iframe{
        width: 90%;
        height: 500px;
    }
    .hero-parallax {
        display: none;
    }
    .card-container{
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .card_job{
        width: 90%;
        flex-direction: column !important;
    }
    .card_divisor button{
        padding: 10px 30px;
    }
    .card_job img{
        display: none;
    }
    .section_glow img{
    width:90% !important;
    border-radius: 30px;
}
}


.preview-video{
    width: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 5px;
    background: #000;
    z-index: 99999999999999999999;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden !important;
}
.preview-video i{
    padding: 10px;
    position: fixed;
    top: 10px;
    right: 10px;
    background: var(--ketchup);
    color: var(--tela);
    z-index: 999;
    border-radius: 100px;
}
.preview-video video{
    width: 100%;
    height: 100%;
    padding: 0;margin: 0;
}
