* {
  box-sizing: border-box;
  font-family: "Poppins";
  margin: 0;
  padding: 0;
}
html{
  scroll-behavior: smooth;
}
body {
  background-color: #374b22;
}

.header-container {
  display: flex;
  justify-content: center; 
  align-items: center;
  padding-top: 30px;
}

.nav-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 150px;
}

.nav-header .header-a {
  margin: 0 52px; 
}

.header-a {
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
  color: #ede4de;
  margin: 20px;
  text-decoration: none;
  font-size: 25px;
  font-weight: 500;
  transition: .4s ease;
}
.header-a::selection{
    background-color: transparent;
}
.header-a:hover{
    color: #EDC39E;
}

#main{
    padding: 0em 0em 27em 0em;
}

.main-content {
  display: flex;
  align-items: center;
}

.name {
  color: #ede4de;
  margin-top: 140px;
  margin-left: 300px;
}
.tittle {
  font-size: 80px;
  text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}
.subTitle {
  font-size: 30px;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
}

.links {
  display: flex;
  gap: 0px 40px;
  margin-top: 20px;
  font-size: 30px;
  text-decoration: none;
}

.btn1 {
  background-color: #ede4de;
  border-radius: 8px;
  padding: 16px 32px;
  /* offset-x | offset-y | blur-radius | spread-radius | color */
  box-shadow: 0px 4px 15px 12px rgba(0, 0, 0, .2);
  cursor: pointer;
  text-decoration: none;
  color: #374b22;
  font-weight: 700;
  transition: .4s ease;
}
.btn1:hover{
  background-color: #514028;
  color: #EDC39E;
  box-shadow: 0px 4px 20px 12px rgba(0, 0, 0, .4);
  transform:scale(0.9);
}

.btn2 {
  background-color: #ede4de;
  border-radius: 8px;
  padding: 16px 32px;
  box-shadow: 0px 4px 15px 12px rgba(0, 0, 0, .2);
  cursor: pointer;
  text-decoration: none;
  color: #374b22;
  font-weight: 700;
  transition: .4s ease;
}
.btn2:hover{
  background-color: #EDC39E;
  color: #514028;
  box-shadow: 0px 4px 20px 12px rgba(0, 0, 0, .4);
  transform:scale(0.9);
}

/* Section Sobre */
/* (top, right, bottom, left) */
#sobre{
  background-color: #EDECED;
  padding: 1em 15em 6em 15em;
  text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}
.sobre-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-indent: 1em;
}
.paragrafo{
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  padding-bottom: 1em;
}
.text-sobre{
  display: flex;
  justify-content: center;
  font-weight: 700;
  font-size: 60px;
  color: #374b22;
  padding: 1em 0em 1em 0em;
}


/* Section projetos com modal  */

.text-trabalho{
  display: flex;
  justify-content: center;
  padding: 100px 0px 20px 0px;
  font-size: 60px;
  color: #EDC39E;
  text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.pOtherWorks{
  display: flex;
  align-items: center;
  flex-direction: column;
  text-indent: 1em;
  padding: 0px 0px 40px 0px;
}
.pAnotherWorks{
  font-size: 20px;
  color: #ede4de;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.programBtn{
  background-color: #ede4de;
  border-radius: 8px;
  padding: 16px 32px;
  /* offset-x | offset-y | blur-radius | spread-radius | color */
  box-shadow: 0px 4px 15px 12px rgba(0, 0, 0, .2);
  cursor: pointer;
  text-decoration: none;
  color: #374b22;
  font-weight: 700;
  transition: .2s ease;
  border: none;
}
.programBtn:hover{
  background-color: #514028;
  color: #EDC39E;
  box-shadow: 0px 4px 20px 12px rgba(0, 0, 0, .4);
  transform:scale(0.9);
}

.designBtn{
  background-color: #ede4de;
  border-radius: 8px;
  padding: 16px 32px;
  /* offset-x | offset-y | blur-radius | spread-radius | color */
  box-shadow: 0px 4px 15px 12px rgba(0, 0, 0, .2);
  cursor: pointer;
  text-decoration: none;
  color: #374b22;
  font-weight: 700;
  transition: .2s ease;
  border: none;
}
.designBtn:hover{
  background-color: #EDC39E;
  color: #514028;
  box-shadow: 0px 4px 20px 12px rgba(0, 0, 0, .4);
  transform:scale(0.9);
}

.trabalhos-content{
  padding: 100px 0px 120px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
/* Modal */
.modal-dialog{
  max-width: 1000px;
  width: 100%;
}
.modal-header{
  border: none;
  background-color: #f7f7f7;
}

.modal-body{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #EDECED;
  color: #212529;
}
.imgStyle{
  width: 700px;
  padding: 10px 0px 16px 0px;
}

.imgWork{
  width: 500px;
}
.imgWork,.btnOpenModal{
  border-radius: 16px;
}
.btnOpenModal{
  border: none;
  box-shadow: 10px 10px 20px 12px rgba(0, 0, 0, 0.2);
}
#openM{
  transition: opacity 0.3s ease;
}
#openM:hover{
  opacity: 0.7;

}
.modal-footer{
  border: none;
  background-color: #f7f7f7;
}
.btn-secondary{
  font-weight: bold;
  background-color: #514028;
  color: #ede4de;
  border: none;
}
.btn-secondary:hover{
  background-color: #EDC39E;
  color: #374b22;
}

/* Section Contato */
#contato{
  background-color: #EDECED;
  padding: 1em 15em 10em 15em;
}
.text-contato{
  display: flex;
  justify-content: center;
  padding: 100px 0px 30px 0px;
  font-size: 60px;
  color: #374b22;
  text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}
.contatos{
  text-align: center;
}
.contatosP{
  font-size: 20px;
  color: #212529;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.contatosLinks{
  font-size: 30px;
  text-decoration: none;
  padding-top: 30px;
}
.contatoBtn{
  background-color: #ede4de;
  border-radius: 8px;
  padding: 16px 32px;
  box-shadow: 0px 4px 15px 12px rgba(0, 0, 0, .2);
  cursor: pointer;
  text-decoration: none;
  color: #374b22;
  font-weight: 700;
  transition: .2s ease;
  border: none;
  margin-right: 30px;
  transition: .3s ease;
  transition: .4s ease;
}

.contatoBtn:hover{
  transform:scale(0.9);
  background-color: #374b22;
  color: #ede4de;
}
.contatoLinkBTN{
  text-decoration: none;
  color: #374b22;
}
.contatoLinkBTN:hover{
  color: #ede4de;
}


/* responsividade */
@media screen and (max-width: 414px) {
  .header-container {
    padding-top: 20px;
    flex-direction: column;
  }

  .logo {
    width: 120px;
  }

  .nav-header {
    flex-direction: column;
  }

  .nav-header .header-a {
    margin: 10px 0;
    font-size: 20px;
  }

  .name {
    margin-top: 100px;
    margin-left: 0;
    text-align: center;
  }

  .tittle {
    font-size: 50px;
  }

  .subTitle {
    font-size: 20px;
  }

  .links {
    flex-direction: column;
    gap: 20px 0;
    margin-top: 10px;
  }

  .btn1, .btn2 {
    font-size: 20px;
  }

  #sobre {
    padding: 1em 2em 4em 2em;
  }

  .text-sobre {
    font-size: 40px;
  }

  .paragrafo {
    font-size: 18px;
  }

  .text-trabalho {
    font-size: 40px;
    padding: 50px 0px 20px 0px;
  }

  .pOtherWorks {
    padding: 0px 0px 20px 0px;
  }

  .pAnotherWorks {
    font-size: 18px;
  }

  .trabalhos-content {
    flex-direction: column;
    padding: 50px 0px 60px 0px;
  }

  .modal-dialog {
    max-width: 350px;
  }

  .imgStyle {
    width: 100%;
    padding: 10px 0px 16px 0px;
  }

  .imgWork {
    width: 100%;
  }

  #contato {
    padding: 1em 2em 5em 2em;
  }

  .text-contato {
    font-size: 40px;
    padding: 50px 0px 20px 0px;
  }

  .contatosP {
    font-size: 18px;
  }

  .contatoBtn {
    padding: 12px 24px;
    font-size: 18px;
    margin-right: 15px;
  }
}
