* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

html, body {
  height: auto;
  overflow-y: auto;
}

a {
    text-decoration: none;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.home .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15); /* ajuste aqui */
    z-index: 1;
}

.home .bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("assets/bg_edit.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    transform: scale(1);
    transform-origin: center;
    will-change: transform;
}

.navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 90px;
}

.navigation,
.home-description {
    position: relative;
    z-index: 10;
}

.navigation img {
    width: 150px;
    height: 150px;
}

.nav-buttons {
    display: flex;
    width: 570px;
    height: 50px;
    border-radius: 32px;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 2;
    background-color: rgba(41, 41, 41, 0.8);

}

.nav-buttons a{
    text-decoration: none;
}

.nav-buttons p{
    color: #F5F5F5;
    font-size: 11pt;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: normal; /* lembrar de variar quando necessário */
    cursor: pointer;
    transition: 0.5s;
}

.nav-buttons p:hover {
    font-weight: 700;
    transition: 0.5s;
}

.home-description {
    margin-top: 350px;
    padding:0 90px;
}

.home-description h1 {
    font-family: "Inter", sans-serif;
    font-size: 60pt;
    font-weight: 600;
    width: 650px;
    line-height: 90%;
    /* line-height: -70; */
    letter-spacing: -6%;
    color: #ffffff;
}

.home-description h2 {
    font-family: "Inter", sans-serif;
    font-size: 24pt;
    font-weight: 300;
    width: 650px;
    line-height: 90%;
    letter-spacing: -6%;
    color: #CACACA;
    padding: 35px 0;
}

.label-empresa {
    color:#C3FB7D
}

.home-description .btn-more {
    width: 261px;
    height: 70px;
    margin-top: 16px;
    background-color: #C3FB7D;
    border-radius: 36px;
    border: none;

    color: #424242;
    font-family: "Inter", sans-serif;
    font-size: 16pt;
    font-weight: 900;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    overflow: hidden;
}

.arrow {
    width: 18px;
    height: 15px;

    transition: 
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* animação no hover */
.home-description .btn-more:hover .arrow {
    transform: translateX(15px);
    opacity: 0;
}

.home-description .btn-more:active {
    background-color: #c2fb7dc6;
}


/* background noise na folha */
.noise-bg {
  position: relative;
}

.noise-bg::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("assets/noise.png"); 
  opacity: 0.18; 
  mix-blend-mode: darken;
  z-index: 9999;
}

/* responsividade */
@media (max-width: 2560px) {
    .navigation img {
        width: 200px;
        height: 200px;
    }
    
    .home-description {
        margin-top: 450px;
        padding:0 90px;
    }

    .home-description h1 {
        font-size: 70pt;
        width: 750px;
       
    }

    .home-description h2 {
        font-size: 34pt;
        width: 750px;
    }

    .nav-buttons {
        width: 670px;

    }

    .nav-buttons p{
        font-size: 12pt;
        
    }
  
}

@media (max-width: 1920px) {
    .navigation img {
        width: 150px;
        height: 150px;
    }
    
    .home-description {
        margin-top: 350px;
        padding:0 90px;
    }

    .home-description h1 {
        font-size: 60pt;
        width: 650px;
       
    }

    .home-description h2 {
        font-size: 24pt;
        width: 650px;
    }

    .nav-buttons {
        width: 570px;

    }

    .nav-buttons p{
        font-size: 11pt;
        
    }

}

@media (max-width: 1883px) {
    .home-description {
        margin-top: 450px;
        padding:0 90px;
    }
}

/* telas muito grandes */
@media (max-width: 1600px) {
  
}

@media (max-width: 1440px) {
     .home-description {
        margin-top: 500px;
        padding:0 90px;
    }

}

/* laptops médios */
@media (max-width: 1280px) {
    .home-description {
        margin-top: 250px;
        padding:0 90px;
    }

    .home-description h1 {
        font-size: 40pt;
        width: 450px;
       
    }

    .home-description h2 {
        font-size: 14pt;
        width: 450px;
    }

    .home-description .btn-more {
        width: 231px;
        height: 60px;
        font-size: 13pt;

    }

}

/* tablets */
@media (max-width: 900px) {
    .navigation {
        flex-direction: column;
  
    }

    .home-description {
        margin-top: 500px;
    }
}

/* mobile grande */
@media (max-width: 770px) {
    .home-description {
        margin-top: 450px;
        padding:0 90px;
    }

    .home-description h1 {
        font-size: 50pt;
        width: 550px;
       
    }

    .home-description h2 {
        font-size: 16pt;
        width: 450px;
    }

    .home-description .btn-more {
        width: 261px;
        height: 60px;
        font-size: 13pt;

    }
}

/* @media (max-width: 768px) {
  
} */

/* mobile pequeno */
@media (max-width: 480px) {
   .nav-buttons {
        display: none; 
   }

   .navigation img {
        width: 250px;
        height: 250px;
    }

    .home-description {
        padding:0 45px;
    }

    .home-description h1 {
        font-size: 38pt;
        width: 410px;
       
    }

    .home-description h2 {
        font-size: 18pt;
        width: 410px;

    }

    .home-description .btn-more {
        width: 231px;
        height: 60px;
        font-size: 14pt;

    }
}

@media (max-width: 425px) {
    .home-description {
        margin-top: 500px;
    }

    .home-description h1 {
        font-size: 35pt;
        width: 410px;
       
    }

    .home-description h2 {
        font-size: 16pt;
        width: 410px;

    }

    .home-description .btn-more {
        width: 231px;
        height: 60px;
        font-size: 14pt;

    }  
}


/* mini devices (iphone antigo) */
@media (max-width: 390px) {
    .home-description h1 {
        font-size: 32pt;
        width: 400px;
       
    }

    .home-description h2 {
        font-size: 12pt;
        width: 400px;

    }

}

@media (max-width: 375px) {
  .home-description h1 {
        font-size: 30pt;
        width: 350px;
       
    }

    .home-description h2 {
        font-size: 12pt;
        width: 300px;

    }

}