@charset "UTF-8";
.btn-styled {
  background: #155693;
  background: linear-gradient(90deg, #155693 0%, #1c79b3 48%, #239ed5 93%);
  color: #fff;
  border-radius: 10px;
  border: none;
  transition: all 0.35s ease-in-out;
}
.btn-styled:hover {
  background: #316fa8;
  background: linear-gradient(90deg, #1f3244 0%, #6e9dbb 48%, #7aafc7 93%);
  color: #fff;
}

.btn-outline-info {
  color: #67bce0 !important;
  background: transparent !important;
  transition: all 0.35s ease-in-out;
}
.btn-outline-info:hover {
  background: #67bce0 !important;
  color: #fff !important;
}

.btn-whatsapp {
  position: fixed;
  right: 30px;
  bottom: 80px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.35s ease-in-out;
}
.btn-whatsapp:hover {
  transform: translateY(-5px);
}

@media screen and (max-width: 768px) {
  .btn-whatsapp {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
  }
}
.card {
  border-radius: 20px;
  border: none !important;
}

.footer p {
  font-size: 0.8rem;
  color: #284962;
}

.footer {
  background-color: #f8f9fb !important;
}

:root {
  --color-white: #fff;
  --color-light: hsl(206, 33%, 96%);
  --color-black: #000;
  --color-night: hsl(214, 100%, 10%);
  --color-purple: hsl(291, 64%, 42%);
  --color-indigo: #67bce0;
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.container {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 2rem;
}

.brand-link {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: inherit;
  border: none;
  outline: none;
  color: var(--color-black);
  text-rendering: optimizeLegibility;
}
.brand-link span {
  color: #98f3ac;
}

.navbar {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: var(--color-black);
  background: var(--color-white);
  box-shadow: var(--shadow-large);
}
.navbar .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.navbar .burger {
  position: relative;
  display: none;
  cursor: pointer;
  width: 2rem;
  height: 1rem;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: none;
  transform: rotate(0deg);
  transition: 0.35s ease-in-out;
}
.navbar .burger-line {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: var(--color-black);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.navbar .burger-line:nth-child(1) {
  top: 0;
}
.navbar .burger-line:nth-child(2), .navbar .burger-line:nth-child(3) {
  top: 0.5rem;
}
.navbar .burger-line:nth-child(4) {
  top: 1rem;
}
.navbar .burger.active .burger-line:nth-child(1), .navbar .burger.active .burger-line:nth-child(4) {
  top: 1.25rem;
  width: 0%;
  left: 50%;
}
.navbar .burger.active .burger-line:nth-child(2) {
  transform: rotate(45deg);
}
.navbar .burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg);
}
.navbar .menu .menu-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.navbar .menu .menu-inner .menu-item {
  position: relative;
}
.navbar .menu .menu-inner .menu-item:not(:last-of-type) .menu-link {
  font-family: inherit;
  overflow: hidden;
  font-size: 1rem;
  line-height: inherit;
  border: none;
  display: inline-block;
  color: var(--color-black);
  text-rendering: optimizeLegibility;
  transition: all 0.35s ease-in-out;
}
.navbar .menu .menu-inner .menu-item:not(:last-of-type) .menu-link::before {
  content: "";
  width: 100%;
  position: absolute;
  height: 2px;
  background: #239dd3;
  transition: 0.2s ease-in-out;
  transform: scaleX(0);
  bottom: 0;
  left: 0;
}
.navbar .menu .menu-inner .menu-item:not(:last-of-type) .menu-link.active, .navbar .menu .menu-inner .menu-item:not(:last-of-type) .menu-link:hover {
  border: none;
  outline: none;
  color: var(--color-indigo);
}
.navbar .menu .menu-inner .menu-item:not(:last-of-type) .menu-link.active::before, .navbar .menu .menu-inner .menu-item:not(:last-of-type) .menu-link:hover::before {
  transform: scaleX(1);
}

@media only screen and (max-width: 768px) {
  .navbar .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .navbar .menu {
    width: 100%;
    max-height: 0rem;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.35s ease;
  }
  .navbar .menu.active {
    opacity: 1;
    visibility: visible;
  }
  .navbar .menu .menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 0.75rem;
    padding: 1rem 0;
  }
}
.card-wrapper {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .card-wrapper {
    width: 100%;
  }
}
.form-wrapper {
  width: 40%;
  border-radius: 10px;
}

.form-wrapper input {
  border: solid 2px #C8DBEC;
}

@media screen and (max-width: 768px) {
  .form-wrapper {
    width: 100%;
    border-radius: 10px;
  }
}
.card-wrapper {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .card-wrapper {
    width: 100%;
  }
}
.bg-banner {
  background-image: url("/img/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0;
  width: 100%;
}

.banner {
  text-align: center;
}

.banner-title {
  color: #67bce0;
}

.banner-subtitle-text {
  font-size: 1rem;
  font-weight: lighter;
}

.banner-subtitle {
  color: #fff;
  font-weight: 600;
  margin-top: 2rem !important;
}

/*Querm somos*/
.bg-quem-somos {
  background-image: url("/img/bg-quem-somos.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0;
  width: 100%;
}

/*background serviços*/
.bg-servicos {
  background-image: url("/img/banner-servicos.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem;
  width: 100%;
}

.bg-servicos h3 {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .bg-servicos h3 {
    width: 100%;
  }

  .bg-servicos {
    padding: 1rem;
  }
}
/*background Contato*/
.bg-contato {
  background-image: url("/img/bg-cadastro.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0;
  width: 100%;
}

.dark-blue {
  color: #0d4685;
}

.blue {
  color: #239dd3;
}

.light-blue {
  color: #67bce0;
}

.light-green {
  background-color: #eef7ff;
}

.grey {
  color: #445461 !important;
}

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

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

li {
  list-style: none;
}

body {
  font-family: "Outfit", sans-serif;
}

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