@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: "Open Sans", sans-serif;
}
.container {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
  }
}
.w50 {
  width: 50%;
}

/* Header */
header {
  background-color: #fff;
  width: 1200px;
  height: 60px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  header {
    width: 100%;
  }
  .nav-bar {
    padding: 0;
  }
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0rem;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 150px;
  height: 50px;
  cursor: pointer;
}
.nav-list {
  display: flex;
  align-items: center;
}
.nav-list ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1.5rem;
}
.nav-item {
  margin: 0 0px;
}
.nav-link {
  text-decoration: none;
  font-size: 1.15rem;
  color: #000;
  font-weight: 400;
}
.orcamento-link {
  border: 1px solid #16365e;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}
.mobile-menu-icon {
  display: none;
}
.icon {
  width: 25px;
  margin-bottom: 10px;
}
.mobile-menu {
  display: none;
  background-color: #fff;
  transition: 1s;
  position: absolute;
  width: 100%;
  height: 300px;
  top: 65px;
  z-index: 999;
}

@media screen and (max-width: 730px) {
  .nav-bar {
    padding: 1rem 0.7rem;
    align-items: center;
    transition: 1s;
  }
  .nav-item {
    display: none;
  }
  .mobile-menu-icon {
    display: block;
  }
  .mobile-menu-icon button {
    background-color: #fff;
    border: none;
    cursor: pointer;
  }
  .mobile-menu ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 0rem;
  }
  .mobile-menu .nav-item {
    display: block;
    padding-top: 2.2rem;
  }
  .mobile-menu .nav-link {
    color: #16365e;
  }
  .open {
    display: block;
    transition: 1s;
  }
}
/* fim do header */

/* Baner - chamada */
.baner-chamada > .container {
  height: 400px;
  background-image: url(../imagens/bg-servicos.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  .baner-chamada > .container {
    text-align: center;
  }
}

.baner-chamada > .container > .titulo-chamada {
  color: #fff;
  font-size: 3rem;
  text-transform: uppercase;
  
}

/* Sobre */
.sobre > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sobre > .container h2 {
  color: #16365e;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding: 30px 0;
}
.sobre > .container p {
  color: #16365e;
  font-size: 15px;
  font-weight: normal;
  padding: 10px 5px;
  line-height: 25px;
}

/* nossoa serviços */
.container-servico > .container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1200px) {
  .container-servico > .container {
    padding: 0 1%;
  }
}
.sericos-card,
.sericos-card02 {
  display: flex;
  border: 1px solid #e2e5e7;
  padding: 20px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 3px 4px 4px -3px rgba(135, 135, 135, 1);
  -moz-box-shadow: 3px 4px 4px -3px rgba(135, 135, 135, 1);
  box-shadow: 3px 4px 4px -3px rgba(135, 135, 135, 1);
}
.sericos-card02 {
  flex-direction: row-reverse;
}
@media (max-width: 967px) {
  .sericos-card,
  .sericos-card02 {
    flex-direction: column-reverse;
    width: 100%;
  }
  .sericos-card02 {
    flex-direction: column-reverse;
  }
  .card-sobre,
  .card-sobre02 {
    margin-top: 20px;
    width: 100%;
  }
}

.card h2 {
  color: #16365e;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  text-transform: uppercase;
}
.card p {
  color: #16365e;
  font-size: 1rem;
  font-weight: normal;
  margin-top: 20px;
  line-height: 35px;
}
.card-sobre02 p {
  padding-left: 40px;
}
@media (max-width: 967px) {
  .card-sobre02 p {
    padding-left: 0;
  }
}
.card-img {
  display: flex;
  justify-content: flex-end;
}
.card-img02 {
  display: flex;
  justify-content: flex-start;
}
.card-img img,
.card-img02 img {
  border-radius: 10px;
  min-width: 350px;
  width: 100%;
}
@media (max-width: 967px) {
  .card-img,
  .card-img02 {
    width: 100%;
    justify-content: center;
  }
  .card-img img,
  .card-img02 img {
    margin: 0 auto;
    display: block;
  }
}
/* Orcamento */
.orcamento > .container {
  padding: 30px 5px;
  margin-top: 40px;
  border-radius: 9px;
}
.orcamento > .container h2 {
  color: #000;
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  padding: 10px 0;
  text-transform: uppercase;
}
.orcamento > .container p {
  color: #000;
  font-size: 15px;
  font-weight: normal;
  padding: 10px 5px;
  line-height: 25px;
}
.orcamento > .container a {
  font-size: 20px;
  border: 1px solid #16365e;
  padding: 10px 20px;
  border-radius: 9px;
  color: #e98750;
  margin: 20px 5px;
  display: inline-block;
  cursor: pointer;
  -webkit-box-shadow: 3px 4px 6px -3px rgba(135, 135, 135, 1);
  -moz-box-shadow: 3px 4px 6px -3px rgba(135, 135, 135, 1);
  box-shadow: 3px 4px 6px -3px rgba(135, 135, 135, 1);
}
@media screen and (max-width: 415px) {
  .orcamento > .container a {
    font-size: 18px;
    padding: 15px 20px;
  }
}
@media screen and (max-width: 375px) {
  .orcamento > .container a {
    font-size: 16px;
    padding: 15px 20px;
  }
}
@media screen and (max-width: 339px) {
  .orcamento > .container a {
    font-size: 15px;
    padding: 15px 5px;
  }
}
.orcamento > .container a:hover {
  border: 1px solid #000;
  background-color: #e98750;
  color: #fff;
  transition: 1s;
}
/* Footer */
footer {
  background-color: #16365e;
  padding: 40px 0px 0px px;
  margin-top: 60px;
}
footer > .container {
  display: flex;
  justify-content: space-between;
  padding: 20px 5px;
}
@media screen and (max-width: 850px) {
  footer > .container {
    flex-direction: column;
  }
}
footer > .container h3 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 30px 0;
}
footer > .container > .contato p {
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  line-height: 25px;
}
.nav-footer ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  line-height: 35px;
  text-transform: capitalize;
}
footer > .container > .horario p {
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  line-height: 25px;
}
footer > .direitos {
  background-color: #0b1b2e;
  padding: 10px 0;
}
footer > .direitos p {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
}
