* {
  font-family: 'Ubuntu Mono', monospace;
}

/* Menu de Navegação ========================================================================================= */
nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
  background-color: #f7ce3e;
  height: 75px;
}

nav div {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
}

nav img {
  width: 122px;
  border-right: 1px solid #1a2930;
}

nav a {
  font-size: 9.5px;
  padding: 0 15px;
  color: #1a2930;
  font-weight: bold;
  border-right: 1px solid #1a2930;
}

nav a:hover {
  color: #f7ce3e;
  background-color: #1a2930;
  text-decoration: none;
  transition: 0.5s;
  border-radius: 50px;
}

/* Banner de Apresentação ========================================================================================= */
.meuBanner {
  height: 400px;
  background-image: linear-gradient(rgba(24,42,47,0.9),rgba(24,42,47,0.9)), url("images/header3web.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #f7ce3e;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

.meuBanner h1 {
  padding: 5px 15px;
  text-align: center;
  font-size: 38px;
}

.meuBanner p {
  font-size: 15px;
  text-align: center;
  width: 290px;
}

.meuBanner img {
  margin-top: 40px;
}

/* Sobre ========================================================================================= */
.meuSobre {
  color: #1a2930;
  height: 500px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  background-color: #f7ce3e;
}

.meuSobre h1 {
  text-align: center;
  padding: 30px 0;
  font-size: 22px;
}

.meuSobre p {
  text-align: center;
  font-size: 13.5px;
  padding: 0 10px;
}

.meuSobre img {
  margin-top: 40px;
}

/* Serviços ========================================================================================= */
.meuServ {
  height: 1000px;
  color: #c5c1c0;
  background-color: #1a2930;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  align-items: center;
}

.meuServ div {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

.meuServ img {
  padding: 15px 0;
}

.meuServ h2 {
  color: #f7ce3e;
  padding: 15px 0;
}

.meuServ p {
  padding: 10px 20px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
}

.meuServ ul {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

.meuServ li {
  font-size: 12px;
  padding: 5px 25px;
}

.meuServSite {
  border-bottom: 1px dashed #f7ce3e;
}

/* Contato ========================================================================================= */
.meuContato {
  height: 700px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  align-items: center;
  background-color: #f7ce3e;
  color: #1a2930;
}

.meuContato h1 {
  font-size: 35px;
}

.meuContatoFlex {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.meuContatoFlex img {
  order: 1;
  width: 90px;
  padding: 20px 0;
}

.meuContatoFlex form {
  width: 250px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}

.meuContatoFlex button {
  color: #f7ce3e;
  background-color: #1a2930;
  font-weight: bold;
}

.meuContatoFlex button:hover {
  color: #1a2930;
  background-color: #f7ce3e;
  transition: 0.5s;
}

textarea {
  height: 180px;
}

.meuContatoFlex form > * {
  margin: 10px 0;
  border: 1px solid #1a2930;
}

/* Footer ========================================================================================= */
footer {
  font-size: 9px;
  background-color: #1a2930;
  color: #c5c1c0;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

footer a {
  color: #f7ce3e;
}

footer p {
  margin-bottom: 0;
}

/* Media Queries =O ========================================================================================= */

/* 410px de Width pra cima =================================================================================== */
@media (min-width: 410px) {

  nav img {
    width: 170px;
  }

  nav a {
    font-size: 13px;
  }

  .meuBanner {
    height: 550px;
  }

  .meuBanner h1 {
    font-size: 55px;
  }

  .meuBanner p {
    font-size: 20px;
    width: 290px;
  }

  .meuSobre h1 {
    font-size: 25px;
  }

  .meuSobre p {
    font-size: 16px;
  }

  .meuServ p {
    font-size: 15px;
  }

  .meuServ li {
    font-size: 14px;
  }

  footer {
    font-size: 10px;
  }


}

/* 576px de Width pra cima  ========================================================================= */
@media (min-width: 576px) {

  nav {
    height: 110px;
  }

  nav img {
    width: 250px;
  }

  nav a {
    font-size: 18px;
  }

  .meuBanner {
    height: 650px;
  }

  .meuBanner h1 {
    font-size: 62px;
  }

  .meuBanner p {
    font-size: 22px;
    width: 350px;
  }

  .meuSobre {
    height: 620px;
  }

  .meuSobre h1 {
    font-size: 30px;
  }

  .meuSobre p {
    font-size: 19px;
    padding: 0 25px;
  }

  .meuServ {
    height: 1100px;
  }

  .meuServ p {
    font-size: 18px;
  }

  .meuServ li {
    font-size: 16px;
  }

  .meuContato {
    height: 800px;
  }

  .meuContato h1 {
    font-size: 42px;
  }

  .meuContatoFlex img {
    width: 120px;
  }

  .meuContatoFlex form {
    width: 350px;
  }

  .meuContatoFlex input, .meuContatoFlex button {
    height: 40px;
  }

  footer {
    font-size: 12px;
  }

}

/* 768px de Width pra cima ============================================================= */
@media (min-width: 768px) {

  nav {
    height: 100px;
  }

  nav img {
    width: 240px;
  }

  nav a {
    font-size: 18px;
    padding: 0 28px;
  }

  .meuBanner {
    height: 600px;
  }

  .meuBanner h1 {
    font-size: 70px;
  }

  .meuBanner p {
    font-size: 22px;
    width: 450px;
  }

  .meuSobre {
    height: 670px;
  }

  .meuSobre h1 {
    font-size: 35px;
  }

  .meuSobre p {
    font-size: 22px;
    padding: 0 25px;
    width: 800px;
  }

  .meuServ {
    height: 1150px;
  }

  .meuServ p {
    font-size: 18px;
  }

  .meuServ li {
    font-size: 16px;
  }

  .meuContato {
    height: 900px;
    font-size: 20px;
  }

  .meuContato h1 {
    font-size: 45px;
  }

  .meuContatoFlex img {
    width: 140px;
  }

  textarea {
    height: 220px;
  }

  footer {
    font-size: 15px;
  }

}

/* 1366px de Width pra cima ================================================================ */
@media (min-width: 1366px) {

  .meuServ {
    height: 800px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }

  .meuServ div {
    height: 573px;
    width: 500px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
  }

  .meuServSite {
    border-right: 1px dashed #f7ce3e;
    border-bottom: none;
  }

  .meuContato {
    height: 700px;
  }

  .meuContato h1 {
    font-size: 50px;
  }

  .meuContatoFlex {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }

  .meuContatoFlex > * {
    margin: 0 40px;
  }

  .meuContatoFlex img {
    order: 0;
    width: 180px;
  }

  .meuContatoFlex form {
    width: 380px;
  }

}

/* 1920px de Width pra cima  ========================================================== */
@media (min-width: 1920px) {

  nav {
    height: 140px;
  }

  nav img {
    width: 320px;
  }

  nav a {
    font-size: 25px;
    padding: 0 28px;
  }

  .meuBanner h1 {
    font-size: 100px;
  }

  .meuSobre p {
    font-size: 23px;
    width: 1000px;
  }

}
