.sectionOne {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  box-shadow: inset 0px -200px 100px #000000;
  position: relative;
  background-size: cover;
  background-position: center;
}

.navigationWrapper {
    position: sticky;
    top: 0;
    z-index: 100;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.textGroup {
  margin: 50px 0px;
}

.buttonsGroup {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.title {
  font-size: 65px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 7px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.description {
  font-size: 25px;
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/*sectionTwo*/

.sectionTwo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
  background-color: #000;
}

.titleSmaller {
  font-size: 41px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ffffff;
}

.sectionTwoDescription {
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  color: #cccccc;
}

.buttonSectionTwo {
  display: flex;
  justify-content: center; 
  align-items: center;
  padding: 7px;
  transition: all 0.3s ease-out;
  cursor: pointer;
}

.buttonSectionTwo:hover {
  background-color: rgba(100, 100, 100, 0.2);
  border-radius: 3px;
}

.buttonSectionTwoText {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
}

/* Responsividade */
@media (max-width: 1024px) {
  .title {
    font-size: 50px;
  }
  
  .description {
    font-size: 20px;
  }
  
  .titleSmaller {
    font-size: 32px;
  }
  
  .sectionTwo {
    height: auto;
    padding: 40px 20px;
  }
  
  .sectionTwo .content {
    flex-direction: column;
    text-align: center;
  }
  
  .sectionTwoDescription {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .sectionOne {
    height: auto;
    min-height: 100vh;
    padding: 80px 20px 40px;
  }
  
  .content {
    width: 100%;
  }
  
  .textGroup {
    margin: 30px 0px;
  }
  
  .title {
    font-size: 36px;
    line-height: 1.2;
  }
  
  .description {
    font-size: 18px;
  }
  
  .buttonsGroup {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .sectionTwo {
    padding: 30px 20px;
  }
  
  .sectionTwo .content {
    width: 100%;
  }
  
  .sectionTwo .content > div {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .titleSmaller {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .sectionTwoDescription {
    font-size: 13px;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sectionOne {
    padding: 60px 15px 30px;
  }
  
  .textGroup {
    margin: 20px 0px;
  }
  
  .title {
    font-size: 28px;
  }
  
  .description {
    font-size: 16px;
  }
  
  .sectionTwo {
    padding: 25px 15px;
  }
  
  .titleSmaller {
    font-size: 20px;
  }
  
  .sectionTwoDescription {
    font-size: 12px;
  }
}

