/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Estilos globais */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  overflow-x: hidden;
  color: #475569;
}

main {
  width: 100%;
  overflow: hidden;
  padding-top: 96px;
}

.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 1399.98px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  max-width: 100%;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.row.center-v {
  align-items: center;
}
.row.center-w {
  justify-content: center;
}

.row > * {
  max-width: 100%;
  flex-wrap: wrap;
  padding: 0 20px;
}

.col {
  flex: 0 0 auto;
  width: 100%;
}
.col-30 {
  width: 30%;
}
@media (max-width: 767.98px) {
  .col-30 {
    width: 100%;
  }
}
.col-33 {
  width: 33.333333%;
}
@media (max-width: 767.98px) {
  .col-33 {
    width: 100%;
  }
}
.col-40 {
  width: 40%;
}
@media (max-width: 767.98px) {
  .col-40 {
    width: 100%;
  }
}
.col-50 {
  width: 50%;
}
@media (max-width: 767.98px) {
  .col-50 {
    width: 100%;
  }
}
.col-60 {
  width: 60%;
}
@media (max-width: 767.98px) {
  .col-60 {
    width: 100%;
  }
}
.col-70 {
  width: 70%;
}
@media (max-width: 767.98px) {
  .col-70 {
    width: 100%;
  }
}
.col-80 {
  width: 80%;
}
@media (max-width: 767.98px) {
  .col-80 {
    width: 100%;
  }
}
.col-content {
  width: 70%;
}
@media (max-width: 1399.98px) {
  .col-content {
    width: 80%;
  }
}
@media (max-width: 991.98px) {
  .col-content {
    width: 90%;
  }
}
@media (max-width: 767.98px) {
  .col-content {
    width: 100%;
  }
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.btn {
  background: #475E96;
  border: 2px solid #5874BA;
  border-radius: 8px;
  color: #ffffff !important;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 40px;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
@media (max-width: 991.98px) {
  .btn {
    background: #5874BA;
    font-size: 1rem !important;
    height: 50px;
  }
}
.btn:hover {
  background-color: #5874BA;
  color: #ffffff !important;
}
@media (max-width: 991.98px) {
  .btn:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #475E96 !important;
  }
}

.btn-branco {
  background-color: white;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  color: #0F172A;
  cursor: pointer;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  padding: 8px 12px;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.btn-branco svg path {
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.btn-branco:hover {
  background-color: #475E96;
  border-color: #475E96;
  color: #ffffff;
}
.btn-branco:hover svg path {
  fill: #ffffff;
}

header {
  border-bottom: 1px solid rgb(226, 232, 240);
  background-color: #ffffff;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  z-index: 20;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
header .container, header .row {
  height: 100%;
}
@media (max-width: 991.98px) {
  header .col-30 {
    width: 80%;
  }
}
@media (max-width: 991.98px) {
  header .col-70 {
    width: 20%;
  }
}
header .logo {
  max-width: 100%;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
header .abre-menu {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
}
@media (max-width: 991.98px) {
  header .abre-menu {
    display: block;
    cursor: pointer;
  }
}
@media (max-width: 991.98px) {
  header nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    max-width: 500px;
    background: #475E96;
    height: 100%;
    transition: all 0.4s ease-in-out;
    transition-property: all;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
  }
  header nav.open {
    right: 0;
  }
}
header nav .close-menu {
  display: none;
}
@media (max-width: 991.98px) {
  header nav .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    cursor: pointer;
  }
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  header nav ul {
    flex-direction: column;
    padding: 190px 30px 0;
    align-items: flex-end;
  }
}
header nav ul li {
  padding-left: 40px;
}
@media (max-width: 991.98px) {
  header nav ul li {
    margin-top: 40px;
    text-align: right;
  }
}
header nav ul li .nav-link {
  color: #0F172A;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
@media (max-width: 991.98px) {
  header nav ul li .nav-link {
    color: #ffffff;
    font-size: 1.5rem;
  }
}
header nav ul li .nav-link:hover, header nav ul li .nav-link.active {
  color: #475E96;
}
@media (max-width: 991.98px) {
  header nav ul li .nav-link:hover, header nav ul li .nav-link.active {
    color: #ffffff;
  }
}

#banner {
  background: url(../img/bg-banner.jpg) no-repeat center/cover;
  height: 460px;
}
#banner .container, #banner .row {
  height: 100%;
}
#banner .row {
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1399.98px) {
  #banner .col-60 {
    width: 70%;
  }
}
@media (max-width: 991.98px) {
  #banner .col-60 {
    width: 80%;
  }
}
#banner h1 {
  margin: 0 auto 30px;
  text-align: center;
}
#banner h1 img {
  max-width: 100%;
}
#banner p {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 160%;
  text-align: center;
}

#nossas-empresas {
  padding: 80px 0;
}
@media (max-width: 767.98px) {
  #nossas-empresas {
    padding: 80px 0 36px;
  }
}
#nossas-empresas h2 {
  color: #0F172A;
  font-weight: 500;
  font-size: 2rem;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 18px;
}
#nossas-empresas p {
  color: #475569;
  font-weight: 400;
  font-size: 1rem;
  line-height: 160%;
  text-align: center;
  margin-bottom: 42px;
}
#nossas-empresas .card {
  border: 1px solid #E4ECFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.0392156863);
}
@media (max-width: 767.98px) {
  #nossas-empresas .card {
    margin-bottom: 42px;
  }
}
#nossas-empresas .card .faixa {
  background: linear-gradient(90deg, #3A86EE 0%, #13B883 101.62%);
  height: 16px;
}
#nossas-empresas .card .text {
  padding: 16px 32px 32px;
}
#nossas-empresas .card .text img {
  display: block;
  margin-bottom: 16px;
}
#nossas-empresas .card .text p {
  text-align: left;
  display: block;
  margin-bottom: 20px;
  height: 90px;
}
@media (max-width: 1399.98px) {
  #nossas-empresas .card .text p {
    height: 110px;
  }
}
@media (max-width: 991.98px) {
  #nossas-empresas .card .text p {
    height: 150px;
  }
}
@media (max-width: 767.98px) {
  #nossas-empresas .card .text p {
    height: auto;
  }
}

#nossa-missao {
  background-color: #F2F5F9;
  padding: 80px 0;
}
#nossa-missao h2 {
  color: #0F172A;
  font-weight: 500;
  font-size: 2rem;
  line-height: 110%;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
#nossa-missao h2::after {
  content: "";
  background: linear-gradient(90deg, #3A86EE 0%, #13B883 101.62%);
  height: 4px;
  width: 116px;
  display: block;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 58px);
}
#nossa-missao p {
  color: #475569;
  font-weight: 400;
  font-size: 1rem;
  line-height: 160%;
  text-align: center;
  margin-bottom: 42px;
}
#nossa-missao .col-cards {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #DEE6F0;
}
@media (max-width: 767.98px) {
  #nossa-missao .col-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
#nossa-missao .col-cards .card {
  background-color: #ffffff;
  border: 1px solid #E4ECFF;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.0392156863);
  padding: 32px;
  text-align: center;
}
#nossa-missao .col-cards .card img {
  display: block;
  margin: 0 auto 24px;
}
#nossa-missao .col-cards .card h3 {
  color: #0F172A;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 110%;
  margin-bottom: 24px;
}
#nossa-missao .col-cards .card p {
  color: #475569;
  font-weight: 400;
  font-size: 1rem;
  line-height: 147%;
  margin: 0;
}
#nossa-missao .col-infos {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
@media (max-width: 767.98px) {
  #nossa-missao .col-infos {
    grid-template-columns: repeat(1, 1fr);
  }
}
#nossa-missao .col-infos .info {
  text-align: center;
}
#nossa-missao .col-infos .info img {
  display: block;
  margin: 0 auto 24px;
}
#nossa-missao .col-infos .info h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 110%;
  margin-bottom: 16px;
}
#nossa-missao .col-infos .info h3.celeste {
  color: #3B84F3;
}
#nossa-missao .col-infos .info h3.green {
  color: #12B982;
}
#nossa-missao .col-infos .info h3.blue {
  color: #475F97;
}
#nossa-missao .col-infos .info p {
  color: #475569;
  font-weight: 400;
  font-size: 1rem;
  line-height: 147%;
  margin: 0;
}

footer {
  background-color: #1E293B;
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  footer .col-40, footer .col-30 {
    width: 33.3333%;
  }
}
@media (max-width: 850.98px) {
  footer .col-40, footer .col-30 {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
    text-align: center;
  }
}
footer .logo {
  max-width: 100%;
  display: block;
}
footer h4 {
  color: #ffffff;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
  margin: 10px 0 20px;
}
footer .redes {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 850.98px) {
  footer .redes {
    margin-bottom: 20px;
  }
}
footer .redes a svg {
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
footer .redes a:hover svg {
  transform: scale(1.2);
}
footer h3 {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 110%;
  margin-bottom: 20px;
}
footer .link {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
footer .link:hover {
  transform: scale(1.1);
}
footer .assinatura {
  margin-top: 40px;
}
footer .assinatura .col {
  border-top: 1px solid #DEE6F0;
  text-align: center;
  padding-top: 40px;
}
footer .assinatura .col p {
  color: #ffffff;
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
}

.whats-flutuante {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  opacity: 0;
  transform: scale(0);
}
@media (max-width: 574.98px) {
  .whats-flutuante {
    bottom: 15px;
    right: 15px;
  }
}
.whats-flutuante img {
  width: 80px;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
@media (max-width: 574.98px) {
  .whats-flutuante img {
    width: 60px;
  }
}
.whats-flutuante:hover img {
  transform: scale(1.1);
}/*# sourceMappingURL=styles.css.map */