* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

select, input, textarea, button, fieldset {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
}

figure {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  line-height: 0;
}

ul, li, dt {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  font-family: "Barlow", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:focus {
  outline: 0;
}

body {
  background: #ffffff;
  color: #454545;
}

body, input, textarea, button {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

fieldset {
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-block-start: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
  padding-block-end: 0;
}

/* Custom ScrollBar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #174288;
}

::-webkit-scrollbar-thumb {
  background: #33669A;
}

::-webkit-scrollbar-thumb:hover {
  background: #33669A;
}

.container {
  width: 85vw;
  margin: 0 auto;
  padding: 1rem 0;
}
@media screen and (min-width: 1440px) {
  .container {
    width: 75vw;
  }
}

.headerfix {
  padding-top: 86px !important;
}
@media screen and (max-width: 480px) {
  .headerfix {
    padding-top: 56px !important;
  }
}

.flex {
  display: flex;
}
.flex.align-center {
  align-items: center;
}
.flex.align-start {
  align-items: flex-start;
}
.flex.justify-center {
  justify-content: center;
}
.flex.justify-between {
  justify-content: space-between;
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font: 600 1rem/1.5 "Hind", sans-serif;
  cursor: pointer;
}
.btn.outline {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn.filled {
  color: #ffffff;
}
.btn.primary {
  background: #174288;
}
.btn.secondary {
  background: #FF8F2E;
}
@media screen and (max-width: 480px) {
  .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

.title {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 600;
  color: #174288;
}

.cta-orcamento-float {
  gap: 1rem;
  padding: 1rem 2rem;
  background: #3EA01B;
  border-radius: 0 0 12px 12px;
  color: #ffffff;
  position: fixed;
  top: 75vh;
  left: -7.5%;
  z-index: 9;
  transform: rotate(-90deg);
}
.cta-orcamento-float h2 {
  font: 600 1rem/1.5 "Barlow", sans-serif;
  text-transform: uppercase;
}
.cta-orcamento-float .orc {
  gap: 1rem;
}
.cta-orcamento-float .tel {
  display: none;
}
@media screen and (max-width: 480px) {
  .cta-orcamento-float {
    width: 100%;
    left: 0;
    top: 78px;
    transform: rotate(0);
  }
  .cta-orcamento-float h2 {
    font: 600 0.875rem/1.5 "Barlow", sans-serif;
  }
  .cta-orcamento-float .tel {
    font: 600 0.875rem/1.5 "Barlow", sans-serif;
    display: block;
  }
}

.cta-telefone-float {
  padding: 0.5rem;
  background: #174288;
  border-radius: 0 0 12px 12px;
  color: #ffffff;
  text-align: center;
  width: 35%;
  position: fixed;
  top: 106px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 9;
}
.cta-telefone-float a {
  width: 100%;
  text-align: center;
  font: 500 1rem/1.5 "Barlow", sans-serif;
}
@media screen and (max-width: 480px) {
  .cta-telefone-float {
    display: none;
  }
}

.social-media-float {
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: #33669A;
  border-radius: 12px 0 0 12px;
  color: #ffffff;
  position: fixed;
  top: 25vh;
  right: 0;
  z-index: 9;
}
.btn-whatsapp {
  position: fixed;
  z-index: 9;
  right: 125px;
  bottom: 20px;
}
.btn-whatsapp #whats {
  background-color: #35C369;
  border-radius: 50%;
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.5);
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-whatsapp #whats i {
  color: #fff;
  font-size: 34px;
  left: -1px;
  position: relative;
}
.btn-whatsapp.active, .btn-whatsapp:hover {
  transform: translateY(-10px);
}
.btn-whatsapp .box-popup {
  display: none;
  position: absolute;
  bottom: calc(100% + 30px);
  background: #fff;
  padding: 20px;
  /* width: 200px; */
  text-align: center;
  border-radius: 20px;
  left: calc(50% - 107.5px);
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.5);
}
.btn-whatsapp .box-popup .box-opcoes a {
  display: block;
  width: 175px;
  background: #eee;
  border-radius: 30px;
  color: #174288;
  padding: 10px;
  transition: 0.2s;
}
.btn-whatsapp .box-popup .box-opcoes a:last-child {
  margin-top: 12px;
}
.btn-whatsapp .box-popup .box-opcoes a:hover {
  background: #174288;
  color: #fff;
}
.btn-whatsapp .box-popup::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -20px;
  right: calc(50% - 10px);
  display: block;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}
@media screen and (max-width: 480px) {
  .btn-whatsapp {
    right: 75px;
  }
  .btn-whatsapp #whats {
    width: 45px;
    height: 45px;
  }
  .btn-whatsapp #whats i {
    font-size: 1.5rem;
  }
  .btn-whatsapp .box-popup {
    bottom: calc(100% + 15px);
    left: calc(50% - 95px);
  }
  .btn-whatsapp .box-popup .box-opcoes a {
    width: 150px;
  }
}

div.go4269172405 {
  display: none !important;
}

#header {
  width: 100%;
  background: #174288;
  color: #ffffff;
  position: fixed;
  top: 0;
  z-index: 99;
}
#header .header-wrapp .logo {
  width: 15%;
}
#header .header-wrapp .logo img {
  width: 100%;
}
#header .header-wrapp .nav {
  gap: 5rem;
  height: 75px;
}
#header .header-wrapp .nav-menu {
  gap: 2rem;
  height: 100%;
  vertical-align: middle;
}
#header .header-wrapp .nav-menu-item {
  height: 100%;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.24;
  position: relative;
  display: flex;
  align-items: center;
}
#header .header-wrapp .nav-menu-item:hover:after {
  width: 100%;
  height: 4px;
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  background: #FF8F2E;
}
#header .header-wrapp .nav-menu-item:hover .nav-menu-submenu {
  position: absolute;
  z-index: 15;
  background: #174288;
  padding: 1rem 0.5rem;
  bottom: -7rem;
  left: -25%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#header .header-wrapp .nav-menu-item:hover .nav-menu-submenu:hover {
  display: flex;
}
#header .header-wrapp .nav-menu-item:hover .nav-menu-submenu .nav-menu-item:hover:after {
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  background: #FF8F2E;
}
#header .header-wrapp .nav-menu-submenu {
  display: none;
}
#header .header-wrapp #toggle {
  display: none;
}
#header .header-wrapp .hamburger {
  position: absolute;
  display: none;
  right: 7.5%;
  margin-left: -2em;
  width: 2em;
  height: 38px;
  z-index: 25;
}
#header .header-wrapp .hamburger div {
  position: relative;
  width: 2em;
  height: 4px;
  border-radius: 3px;
  background-color: #f8982b;
  margin-top: 8px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 786px) {
  #header .header-wrapp .logo {
    width: 35%;
  }
  #header .header-wrapp .hamburger {
    display: block;
  }
  #header .header-wrapp .nav {
    position: fixed;
    z-index: 20;
    top: 90px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    background: #174288;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  #header .header-wrapp .nav ul {
    height: unset;
    padding-left: 5vh;
    padding-top: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }
  #header .header-wrapp .nav ul li {
    height: unset;
  }
  #header .header-wrapp .nav button {
    padding-left: 5vh;
  }
  #header .header-wrapp #toggle:checked + .hamburger .top-bun {
    transform: rotate(-45deg);
    margin-top: 24px;
  }
  #header .header-wrapp #toggle:checked + .hamburger .bottom-bun {
    opacity: 0;
    transform: rotate(45deg);
  }
  #header .header-wrapp #toggle:checked + .hamburger .meat {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  #header .header-wrapp #toggle:checked + .hamburger + .nav {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 480px) {
  #header .header-wrapp .logo {
    width: 50%;
  }
  #header .header-wrapp .hamburger {
    display: block;
  }
  #header .header-wrapp .nav {
    position: fixed;
    z-index: 20;
    top: 70px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    background: #174288;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  #header .header-wrapp .nav ul {
    height: unset;
    padding-left: 5vh;
    padding-top: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }
  #header .header-wrapp .nav ul li {
    height: unset;
  }
  #header .header-wrapp .nav button {
    padding-left: 5vh;
  }
  #header .header-wrapp #toggle:checked + .hamburger .top-bun {
    transform: rotate(-45deg);
    margin-top: 24px;
  }
  #header .header-wrapp #toggle:checked + .hamburger .bottom-bun {
    opacity: 0;
    transform: rotate(45deg);
  }
  #header .header-wrapp #toggle:checked + .hamburger .meat {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  #header .header-wrapp #toggle:checked + .hamburger + .nav {
    visibility: visible;
    opacity: 1;
  }
}

#footer {
  background: #E9E9E9;
  padding: 1rem 0;
  padding-top: 5rem;
  margin-top: -3.5rem;
  z-index: 0;
}
#footer .footer-wrapp-top {
  margin: 1rem 0;
}
#footer .footer-wrapp-top .social-icons {
  gap: 1rem;
}
#footer .footer-wrapp-nav {
  margin: 1rem 0;
  gap: 7.5rem;
}
#footer .footer-wrapp-nav-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#footer .footer-wrapp-nav-menu h3 {
  font: 600 1.25rem/1.5 "Barlow", sans-serif;
  color: #174288;
  margin: 0.5rem 0;
}
#footer .footer-wrapp-nav-menu li {
  width: 100%;
}
#footer .footer-wrapp-nav-menu li h4 {
  font: 600 1.125rem/1 "Barlow", sans-serif;
  margin-bottom: 0.25rem;
}
#footer .footer-wrapp-bottom {
  margin-top: 2.5rem;
}
@media screen and (max-width: 786px) {
  #footer .footer-wrapp-top, #footer .footer-wrapp-bottom {
    row-gap: 1.5rem;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  #footer .footer-wrapp-nav {
    gap: 2rem;
    flex-wrap: wrap;
  }
  #footer .footer-wrapp-bottom {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  #footer .footer-wrapp-top, #footer .footer-wrapp-bottom {
    row-gap: 1.5rem;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  #footer .footer-wrapp-nav {
    gap: 2rem;
    flex-wrap: wrap;
  }
  #footer .footer-wrapp-bottom {
    text-align: center;
  }
}

.hero {
  margin-bottom: 2rem;
}
.hero-banner {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
}
.hero-banner figure {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-banner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-banner-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-banner-content h1 {
  color: #ffffff;
  width: 50%;
  font: 600 3rem/1.25 "Barlow", sans-serif;
}
.hero-banner-content h1 span {
  display: block;
  font: 600 1rem/1.5 "Hind", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-banner-content footer {
  gap: 1.5rem;
}
.hero .swiper-button-prev, .hero .swiper-button-next {
  width: 35px;
  height: 35px;
  background: #33669A;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .swiper-button-prev:after, .hero .swiper-button-next:after {
  font-size: 0.75rem;
  color: #ffffff;
}
@media screen and (max-width: 480px) {
  .hero-banner {
    height: 50vh;
  }
  .hero-banner figure img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 75%;
       object-position: 75%;
  }
  .hero-banner-content h1 {
    width: 75%;
    font-size: 1.5rem;
  }
  .hero-banner-content h1 span {
    font-size: 0.875rem;
  }
  .hero .swiper-button-prev, .hero .swiper-button-next {
    display: none;
  }
}

.about {
  gap: 3rem;
}
.about-text {
  width: 55%;
}
.about-text h2 {
  width: 100%;
  font: 600 2.25rem/1.25 "Barlow", sans-serif;
  color: #174288;
}
.about-text p {
  width: 95%;
  margin: 1rem 0;
  font: 400 1.125rem/1.35 "Hind", sans-serif;
  color: #696969;
}
.about-text button {
  margin-top: 1rem;
}
.about-image {
  width: 45%;
}
.about-image img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .about {
    flex-direction: column;
  }
  .about-text {
    width: 100%;
  }
  .about-image {
    width: 95%;
  }
  .about-image img {
    width: 100%;
  }
}

.services {
  background: #FF8F2E;
}
.services-wrapp header {
  margin-bottom: 1rem;
}
.services-wrapp header h2 {
  font: 600 2rem/1.5 "Barlow", sans-serif;
  color: #ffffff;
  text-align: center;
}
.services-wrapp-cards {
  margin: 2rem 0;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.services-wrapp-cards-card {
  width: calc(20% - 2.5rem);
  height: 212px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  background: #174288;
  border-radius: 12px;
  padding: 1.25rem;
}
.services-wrapp-cards-card img {
  width: 50%;
  filter: brightness(1.5);
}
.services-wrapp-cards-card h3 {
  font: 600 1rem/1.2 "Barlow", sans-serif;
  color: #ffffff;
  text-align: center;
}
.services-wrapp footer {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .services-wrapp-cards {
    gap: 1rem;
  }
  .services-wrapp-cards-card {
    width: calc(50% - 1rem);
  }
}

.partners {
  width: 100%;
  position: relative;
  padding: 2rem 0;
}
.partners_header {
  width: 100%;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners_header h2 {
  font: 600 2.25rem/1.25 "Barlow", sans-serif;
  color: #174288;
}
.partners_slider {
  width: 100%;
  margin: 2rem 0;
}
.partners_slider_grid {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 4px;
}
.partners_slider_grid_item {
  width: calc(25% - 0.875rem);
  height: 204px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners_slider_grid_item .item_icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners_slider_grid_item .item_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.partners_slider .swiper {
  padding-bottom: 1rem;
}
.partners_slider .swiper-pagination {
  bottom: 0;
}
.partners_slider .swiper-pagination-bullet {
  width: 18px;
  height: 6px;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid #33669A;
}
.partners_slider .swiper-pagination-bullet-active {
  background-color: #33669A;
}
@media (min-width: 1920px) {
  .partners_slider_grid {
    padding: 0;
  }
  .partners_slider_grid_item {
    padding: 2rem 1.5rem;
  }
  .partners_slider_grid_item .item_icon {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .partners_slider_grid {
    gap: 8px;
  }
  .partners_slider_grid_item {
    width: calc(33.3333333333% - 8px);
    height: 112px;
    padding: 1.5rem 0.5rem;
  }
  .partners_slider_grid_item .item_icon {
    width: 100%;
    height: 100%;
  }
  .partners_slider_grid_item .item_icon img {
    width: 100%;
    height: 100%;
  }
}

.cta-orcamento {
  padding: 1rem 2.5rem;
  margin: 2rem auto;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.cta-orcamento h2 {
  font: 600 1.75rem/1.2 "Barlow", sans-serif;
  color: #ffffff;
}
.cta-orcamento.primary {
  background: #174288;
}
.cta-orcamento.secondary {
  background: #FF8F2E;
}
.cta-orcamento.overlay {
  margin: 0 auto;
  margin-top: -2rem;
}
@media screen and (max-width: 480px) {
  .cta-orcamento {
    padding: 0.75rem 1rem;
  }
  .cta-orcamento h2 {
    font: 600 1rem/1.2 "Barlow", sans-serif;
    color: #ffffff;
  }
}

.banner {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.banner-image {
  width: 100%;
}
.banner-image img {
  width: 100%;
}
.banner-content {
  flex-direction: column;
  position: absolute;
  width: 100%;
  color: #ffffff;
}
.banner-content h1 {
  font: 600 2.25rem/1.5 "Barlow", sans-serif;
  text-transform: uppercase;
}
.banner-content p {
  width: 70%;
  text-align: center;
  font: 400 1.375rem/1.25 "Barlow", sans-serif;
}
@media screen and (max-width: 480px) {
  .banner {
    height: 50vh;
  }
  .banner-image {
    height: 100%;
  }
  .banner-image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .banner-content {
    text-align: center;
  }
  .banner-content h1 {
    font-size: 1.5rem;
    line-height: 1.25;
  }
  .banner-content p {
    width: 85%;
    font-size: 1rem;
  }
}

.description-text {
  width: 55%;
}
.description-text h2 {
  width: 85%;
  font: 600 2.25rem/1.25 "Barlow", sans-serif;
  color: #174288;
  margin-bottom: 1rem;
}
.description-text p {
  width: 90%;
  margin: 1.5rem 0;
}
.description-text footer .btn {
  margin-top: 1rem;
}
.description-image {
  width: 40%;
}
.description-image img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .description {
    flex-direction: column-reverse;
  }
  .description-text, .description-image {
    width: 100%;
  }
}

.method {
  background: #174288;
  color: #ffffff;
  padding: 2rem 1rem;
  padding-bottom: 5rem;
}
.method-title h2 {
  margin: 1rem 0;
  font: 600 2rem/1.5 "Barlow", sans-serif;
  text-transform: uppercase;
}
.method-steps {
  gap: 3.5rem;
}
.method-steps-step {
  width: calc(25% - 5rem);
  height: 250px;
  position: relative;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 2rem;
  padding-top: 5rem;
}
.method-steps-step:not(:last-of-type)::after {
  content: "";
  width: 35%;
  height: 14px;
  background: #FF8F2E;
  position: absolute;
  left: 12.5rem;
  top: 7.5rem;
}
.method-steps-step h3 {
  height: 25px;
  font: 700 1.5rem/1 "Barlow", sans-serif;
  text-transform: uppercase;
  color: #FF8F2E;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-title {
  margin: 2rem 0;
}
.contact-title h1 {
  text-align: center;
  font: 600 2rem/1.25 "Barlow", sans-serif;
  color: #174288;
}
.contact-title h1 span {
  display: block;
  font-size: 1.35rem;
  font-weight: 400;
  color: #FF8F2E;
}
.contact-form {
  width: 75%;
}
.contact-form form {
  clear: both;
  width: 100%;
}
.contact-form form aside.flex {
  gap: 2.5rem;
}
.contact-form form aside fieldset {
  width: 50%;
}
.contact-form form textarea {
  resize: none;
}
.contact-form .input-box {
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  height: 72px;
  display: block;
  position: relative;
  margin: 0.5rem 0;
}
.contact-form .input-box.select {
  height: unset;
  margin-top: 1rem;
}
.contact-form .input-box.select .input-text {
  height: unset;
  font-size: 1rem;
  padding-top: 0.75rem;
}
.contact-form .input-box.select .select-label {
  color: #174288;
}
.contact-form .input-box.focus .input-label {
  color: #174288;
  transform: perspective(1px) scale(0.75) translate3d(0, -18px, 0);
}
.contact-form .input-box.focus .underline-focus {
  transform: scaleX(1);
}
.contact-form .input-box.focus.textarea {
  overflow-y: hidden;
  height: 200px; /* approximate max height */
  padding: 0 0 60px;
}
.contact-form .input-box.focus.textarea .input-text {
  max-height: 200px;
  margin-top: 45px;
  padding-top: 0;
}
.contact-form .input-box.textarea {
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.contact-form .input-box.textarea .input-text {
  resize: none;
  overflow: hidden;
}
.contact-form .input-box .input-label {
  position: absolute;
  line-height: 48px;
  opacity: 1;
  color: #174288;
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  top: 24px;
  transform: scale(1) translate3d(0, 0, 0);
  transform-origin: left top 0;
}
.contact-form .input-box .input-text {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  background-color: transparent;
  color: #33669A;
  box-sizing: border-box;
  padding-top: 36px;
  box-shadow: none;
  padding-left: 0;
  font-size: 18px;
}
.contact-form .input-box .underline {
  border: 0;
  border-bottom: solid 1px #e0e0e0;
  position: absolute;
  width: 100%;
  bottom: 8px;
  margin: 0;
  box-sizing: content-box;
  height: 0;
}
.contact-form .input-box .underline-focus {
  border-style: none none solid;
  border-bottom-width: 2px;
  position: absolute;
  width: 100%;
  bottom: 8px;
  margin: 0;
  box-sizing: content-box;
  height: 0;
  border-color: #174288;
  transform: scaleX(0);
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
.contact-form .btn {
  margin-top: 1rem;
}
@media screen and (max-width: 480px) {
  .contact-form aside {
    flex-direction: column;
  }
  .contact-form aside fieldset {
    width: 100%;
  }
}

.places {
  background: #FF8F2E;
  color: #ffffff;
  padding: 2rem;
}
.places header {
  font: 600 1.75rem/1.25 "Barlow", sans-serif;
  text-align: center;
  padding-bottom: 2rem;
}
.places-map {
  gap: 5rem;
  padding-bottom: 5rem;
}
.places-map-locals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.places-map-locals-local h2 {
  font: 600 1.75rem/1.25 "Barlow", sans-serif;
}
.places-map-locals-local h3 {
  font: 400 0.865rem/1.5 "Hind", sans-serif;
}
.places-map-locals-local h4 {
  font: 400 0.865rem/1.5 "Hind", sans-serif;
}
.places-map figure {
  width: 35%;
}
.places-map figure img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .places-map {
    flex-direction: column;
  }
}

.quem-somos {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
}
.quem-somos-desc {
  margin: 2rem 0;
  padding: 5rem 0;
}
.quem-somos-desc p {
  width: 75%;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 1rem;
}
.quem-somos-estrutura {
  padding-bottom: 3.5rem;
}

.servicesPage h3 {
  margin: 2rem 0;
}
.servicesPage-cards, .servicesPage-ambients {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.servicesPage-cards-card, .servicesPage-ambients-card {
  width: calc(25% - 1.5rem);
  height: 325px;
  padding: 2rem 1rem;
  background-color: #FF8F2E;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #ffffff;
}
.servicesPage-cards-card img, .servicesPage-ambients-card img {
  width: 75px;
  height: 75px;
  filter: brightness(1.5);
}
@media screen and (max-width: 480px) {
  .servicesPage-cards, .servicesPage-ambients {
    gap: 1rem;
  }
  .servicesPage-cards-card, .servicesPage-ambients-card {
    width: 100%;
    height: 300px;
    gap: 1rem;
    padding: 1rem;
  }
  .servicesPage-cards-card h2, .servicesPage-ambients-card h2 {
    font-size: 1.5rem;
  }
}

.pageBlog-wrapper {
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.pageBlog-card {
  width: calc(33.3333333333% - 1.5rem);
  background: #174288;
  border-radius: 18px;
}
.pageBlog-card img {
  width: 100%;
  border-radius: 18px;
}
.pageBlog-card-description {
  padding: 1rem;
}
.pageBlog-card-description h2 {
  font-size: 1.25rem;
  color: #FF8F2E;
  margin-bottom: 1rem;
}
.pageBlog-card-description .text {
  color: #ffffff;
}/*# sourceMappingURL=styles.css.map */