@charset "UTF-8";
/* Mobile: até 639px */
@media (max-width: 670px) {
  header.header_content {
    align-items: center;
  }
  header.header_content .sidebar {
    display: none !important;
  }
  header.header_content .sidebar_menu[active=true] {
    display: flex !important;
    opacity: 1;
  }
  header.header_content .toggle_burguer {
    display: flex !important;
  }
  section.footer_content {
    flex-direction: column !important;
    align-items: center;
  }
  section.footer_content .redes_sociais {
    height: 80px !important;
    gap: 50px !important;
  }
  section.footer_content .navegacao {
    display: none !important;
  }
  section.projetos {
    height: auto !important;
    padding-bottom: 35px;
  }
  section.projetos > h1 {
    text-align: center;
    font-size: 2.5rem !important;
  }
  section.projetos .list_projects {
    justify-content: center !important;
  }
  section.projetos .list_projects .item {
    width: 70% !important;
  }
  section.projetos .list_projects .item .title {
    text-align: left;
  }
  section.sobre {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
    height: auto !important;
  }
  section.sobre .title {
    font-size: 2.5rem !important;
  }
  section.sobre .lista_valores {
    flex-direction: column !important;
    align-items: center;
    gap: 20px;
  }
  section.sobre .lista_valores div {
    width: 100% !important;
  }
  section.sobre .lista_valores div h1 {
    font-size: 2.5rem;
  }
  section.concessionarias {
    padding-bottom: 30px !important;
  }
  section.concessionarias > h1 {
    font-size: 2.5rem !important;
  }
  section.concessionarias .lista_concessionarias img {
    width: 190px;
    height: 70px;
  }
  section.projeto .project_content div.right_content {
    padding: 0;
  }
}
@media (max-width: 590px) {
  section.projetos {
    padding-top: 15px !important;
  }
  section.projetos > h1 {
    font-size: 2rem !important;
  }
  section.projetos .list_projects .item .title {
    font-size: 1.5rem !important;
  }
  section.sobre .title {
    font-size: 2rem !important;
  }
  section.concessionarias > h1 {
    font-size: 2rem !important;
    padding-top: 15px;
  }
}
/* Tablet: 640px a 1023px */
@media (max-width: 920px) {
  header.header_content {
    padding: 0 25px;
  }
  header.header_content .sidebar {
    padding: 0 25px;
  }
  section.sobre .lista_valores div .description {
    padding: 0 25px !important;
  }
  section.concessionarias .lista_concessionarias img {
    width: 245px;
    height: 90px;
    margin: 0 15px;
  }
  section.projeto .project_content {
    flex-direction: column-reverse;
  }
  section.projeto .project_content div.left_content {
    width: 100%;
  }
  section.projeto .project_content div.right_content {
    width: 100%;
    padding: 30px;
  }
}
@media (max-width: 790px) {
  .container {
    padding: 0 15px !important;
  }
  section.footer_content {
    justify-content: space-between;
    padding-inline-end: 25px;
    padding: 35px !important;
  }
  section.footer_content .redes_sociais div {
    width: 45px;
    height: 45px;
  }
  section.banner {
    align-items: center;
    justify-content: center;
  }
  section.projetos .list_projects {
    justify-content: flex-start;
    gap: 30px;
  }
  section.concessionarias .lista_concessionarias img {
    width: 235px;
    height: 85px;
  }
  section.projects {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
    justify-content: center;
  }
  section.descricao_sobre {
    margin: 30px 30px !important;
  }
  section.contato form button {
    margin-top: 20px;
  }
}
/* Desktop: 1024px+ */
@media (max-width: 1366px) {
  .container {
    padding: 0 55px;
  }
  header.header_content {
    height: 120px;
  }
  header.header_content a .logo {
    width: 160px;
    height: 75px;
  }
  section.footer_content {
    padding-bottom: 35px;
  }
  section.footer_content .navegacao {
    gap: 15px;
  }
  section.sobre .lista_valores div .description {
    padding: 0 55px !important;
  }
  section.concessionarias .lista_concessionarias img {
    width: 275px;
  }
  section.projects {
    gap: 10px;
  }
}
@media (max-width: 1024px) {
  section.projeto .project_content div.left_content {
    padding: 0px 10px;
  }
  section.projeto .project_content div.right_content {
    padding: 0px 10px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  padding: 0 115px;
}

.top_header {
  height: 150px;
  position: relative;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

header.header_content {
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #1368a9;
  position: fixed;
  opacity: 0.7;
  z-index: 1;
  transition: height 0.5s, opacity 0.5s, background-color 0.5s;
}
header.header_content[active=true] {
  opacity: 1;
}
header.header_content[scroll=on] {
  opacity: 1;
  height: 120px;
}
header.header_content a {
  display: flex;
  align-items: center;
  justify-content: center;
}
header.header_content a .logo {
  width: 240px;
  height: 110px;
  margin: auto 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
header.header_content .sidebar {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0 85px;
}
header.header_content .sidebar li {
  margin: 0 45px;
}
header.header_content .sidebar li:last-of-type {
  margin-right: 0;
}
header.header_content .sidebar li a {
  font-size: 1.5rem;
  color: #fff;
}
header.header_content .sidebar_menu {
  position: absolute !important;
  background-color: #1368a9 !important;
  width: 100vw;
  top: 0;
  height: 100vh;
  left: 0;
  display: none;
  opacity: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
header.header_content .sidebar_menu a {
  font-size: 2.5rem;
  color: #fff;
}
header.header_content .toggle_burguer {
  width: 60px;
  height: 40px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10;
  position: absolute;
  right: 30px;
  top: 30px;
}
header.header_content .toggle_burguer span {
  width: 60px;
  height: 7px;
  border-radius: 5px;
  background-color: #fff;
  transition: transform 0.5s;
}
header.header_content .toggle_burguer[active=true] span.top {
  transform: translateY(15px);
}
header.header_content .toggle_burguer[active=true] span.top.close {
  transform: translateY(15px) rotate(45deg);
}
header.header_content .toggle_burguer[active=true] span.middle {
  display: none;
}
header.header_content .toggle_burguer[active=true] span.bottom {
  transform: translateY(-18px);
}
header.header_content .toggle_burguer[active=true] span.bottom.close {
  transform: translateY(-18px) rotate(-45deg);
}

section.footer_content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background-color: #1368a9;
  padding-top: 25px;
  padding-bottom: 25px;
}
section.footer_content a {
  cursor: pointer;
}
section.footer_content a .logo {
  width: 220px;
  height: 110px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
section.footer_content .navegacao {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 25px;
}
section.footer_content .navegacao li a {
  color: #fff;
}
section.footer_content .redes_sociais {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 25px;
  width: 240px;
  height: 100px;
}
section.footer_content .redes_sociais div {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
section.footer_content .redes_sociais div.youtube svg {
  width: 65px;
  height: 70px;
}
section.footer_content .contato div.whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
section.footer_content .contato div.whatsapp svg {
  width: 25px;
  height: 20px;
  fill: #fff;
}
section.footer_content .contato div.telefone {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.footer_content .contato div.telefone svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}
section.footer_content .contato div a {
  color: #fff;
}

section.banner {
  height: 80vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}
section.banner .text_content {
  width: 600px;
  max-width: 100%;
  height: auto;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 25vh;
}
section.banner .text_content h1 {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: bold;
}
section.banner .text_content h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 1366px) {
  section.banner {
    height: 65vh;
  }
}
section.projetos {
  width: 100%;
  min-height: 80vh;
  padding-top: 35px;
  margin-bottom: 35px;
}
section.projetos > h1 {
  font-size: 3rem;
  margin: 15px 0;
}
section.projetos .list_projects {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 35px;
}
section.projetos .list_projects .item {
  width: 300px;
  border: 3px solid #ec9756;
  border-radius: 5px;
}
section.projetos .list_projects .item .imagem_destaque {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
}
section.projetos .list_projects .item div {
  padding: 0 10px;
}
section.projetos .list_projects .item div .title {
  margin-top: 15px;
  margin-bottom: 5px;
}
section.projetos .list_projects .item div .subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
section.projetos .list_projects .item div .description {
  font-size: 1.2rem;
}
section.projetos .list_projects .item div .saiba_mais {
  margin: 20px 0;
  width: 60%;
  background-color: #ec9756;
  border-radius: 5px;
  color: #fff;
  padding: 10px;
}
section.projetos .list_projects .item div .saiba_mais a {
  font-size: 1.2rem;
  color: #fff;
  padding: 0 10px;
}
section.sobre {
  width: 100%;
  height: 80vh;
  background-color: #1368a9;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
section.sobre .title {
  font-size: 3rem;
  text-align: center;
  padding-bottom: 25px;
}
section.sobre .lista_valores {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
section.sobre .lista_valores div {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
section.sobre .lista_valores div .icon {
  width: 90px;
  height: 90px;
}
section.sobre .lista_valores div .icon svg {
  width: 100%;
  height: 100%;
  fill: #ec9756;
}
section.sobre .lista_valores div .description {
  width: 100%;
  padding: 0 55px;
  text-align: justify;
  overflow-wrap: break-word;
  hyphens: auto;
}
section.concessionarias {
  padding-bottom: 60px;
}
section.concessionarias h1 {
  font-size: 3rem;
  text-align: center;
  padding-bottom: 25px;
  padding-top: 25px;
  color: #1368a9;
}
section.concessionarias .lista_concessionarias {
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
}
section.concessionarias .lista_concessionarias img {
  width: 280px;
  height: 100px;
  object-fit: cover;
  object-position: center;
  margin: 0 25px;
}
section.contato {
  margin-top: 60px !important;
}
section.contato h1 {
  font-size: 3rem;
}
section.contato h2 {
  font-size: 1.8rem;
  font-weight: 300;
  width: 40%;
  margin: 25px 0;
}
section.contato .contact {
  margin: 20px 0px;
  background: #ec9756;
  padding: 10px 15px;
  width: 260px;
  border-radius: 5px;
}
section.contato .contact a {
  color: #fff;
  font-size: 22px;
}

section.projects {
  display: flex;
  flex-direction: row;
  gap: 35px;
  flex-wrap: wrap;
  padding-top: 35px;
}
section.projects .item {
  width: 300px;
  border: 3px solid #ec9756;
  border-radius: 5px;
}
section.projects .item .imagem_destaque {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
}
section.projects .item div {
  padding: 0 10px;
}
section.projects .item div .title {
  margin-top: 15px;
  margin-bottom: 5px;
}
section.projects .item div .subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
section.projects .item div .description {
  font-size: 1.2rem;
}
section.projects .item div .saiba_mais {
  margin: 20px 0;
  width: 60%;
  background-color: #ec9756;
  border-radius: 5px;
  color: #fff;
  padding: 10px;
}
section.projects .item div .saiba_mais a {
  font-size: 1.2rem;
  color: #fff;
  padding: 0 10px;
}

section.projeto h1 {
  font-size: 3.5rem;
  font-weight: bold;
  padding: 20px 0px;
  text-align: center;
}
section.projeto .project_content {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
section.projeto .project_content div {
  width: 80%;
}
section.projeto .project_content div.left_content {
  padding: 0 30px;
}
section.projeto .project_content div.left_content p {
  margin-bottom: 5px;
}
section.projeto .project_content div.right_content {
  padding: 10px 60px;
  padding-top: 0;
}
section.projeto .project_content div.right_content .destaque {
  width: 100%;
  height: 420px;
}
section.galeria {
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin: 30px 0;
}
section.galeria .item {
  width: 300px;
  height: 190px;
  margin-right: 10px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

section.banner_sobre {
  width: 100%;
  height: 80vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.banner_sobre .text_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 130px;
}
section.banner_sobre .text_content h1 {
  color: #fff;
  font-size: 3rem;
  text-align: center;
}
section.banner_sobre .text_content h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
}
section.descricao_sobre {
  margin: 30px 80px;
}
section.descricao_sobre p {
  margin-bottom: 10px;
  text-align: justify;
}

section.banner_contato {
  width: 100%;
  height: 80vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.banner_contato .text_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 130px;
}
section.banner_contato .text_content h1 {
  color: #fff;
  font-size: 3rem;
  text-align: center;
}
section.banner_contato .text_content h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
}
section.load_form {
  width: 100vw;
  height: 100vh;
  top: 0;
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
section.load_form h1 {
  color: #000;
  font-size: 2rem;
  width: 40%;
  height: 50px;
  border-radius: 8px;
  background: #fbfafa;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.contato {
  margin-top: 20px;
}
section.contato .formulario h1 {
  text-align: center;
}
section.contato .formulario form {
  margin: 35px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
section.contato .formulario form .label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 100%;
}
section.contato .formulario form .label label.error.fail-alert {
  color: red;
  margin-bottom: 15px;
}
section.contato .formulario form .label input {
  width: 700px;
  max-width: 100%;
  height: 35px;
  padding: 5px 15px;
  margin-bottom: 10px;
  font-size: 16px;
}
section.contato .formulario form .label textarea {
  width: 700px;
  max-width: 100%;
  height: 95px;
  padding: 5px 15px;
  margin-bottom: 10px;
  font-size: 16px;
}
section.contato .formulario form button {
  width: 250px;
  height: 45px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  background: #ec9756;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

dialog {
  opacity: 0;
  position: fixed;
  top: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
}
dialog .modal_content {
  opacity: 0;
}
dialog[open] {
  opacity: 1;
  transition: 0.5s;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  z-index: 100;
}
dialog[open] .modal_content {
  border: none;
  min-width: 400px;
  padding: 25px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.55);
  opacity: 1;
  transition: 1s;
  background-color: #fff;
}
dialog[open] .modal_content i {
  font-size: 2.5rem;
  color: green;
  margin-right: 5px;
  display: none;
}
dialog[open] .modal_content p {
  margin: 0;
  font-size: 1.5rem;
}
dialog[open]::backdrop {
  background-color: rgba(0, 0, 0, 0.4);
}

/*# sourceMappingURL=style.css.map */
