@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,*::after, *::before{
    margin: 0;
    padding: 0;

}
a{
    text-decoration: none;
}
.img-cover{
    width: 100%;
    height: auto;
}

.hero{
    background-image: url(../assets/image/bg.webp);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.section{
    padding-inline: 10px;
    padding-block: 20px;
}
body{
    font-family: "Montserrat",sans-serif;
}

.container{
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 1200px;
}
.h1{
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 900;
    color: white;
}
.h1 span{
    color: yellow;
    font-weight: 900;
}
.about-text{
    font-size: 1.2em;
    padding-block: 20px;
    color: white;
}
.btn{
    display: flex;
    margin: auto;
    cursor: pointer;
   width: 300px;
   padding-inline: 20px;
   padding-block: 8px;
   margin-block: 20px;
   border-radius: 8px;
   text-transform: uppercase;
   font-weight: 900;
   font-size: 1.2em;
}
.btn-green{
    background-color: green;
    color: white;
}


    /* Estilo do fundo escurecido */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
    }

    /* Estilo do pop-up */
    .popup-box {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      max-width: 400px;
      text-align: center;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }

    /* Botão de fechar */
    .popup-close {
      margin-top: 20px;
      padding: 10px 20px;
      border: none;
      background-color: rgb(77, 77, 77);
      color: white;
      border-radius: 5px;
      cursor: pointer;
      width: 150px;
    }
