@charset "UTF-8";
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 1320px;
    min-width: 1320px;
  }
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@-webkit-keyframes flash {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes flash {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.margin-top-sm {
  margin-top: clamp(10px, 2vw, 20px);
}

.margin-top-md {
  margin-top: 40px;
}

.margin-top-lg {
  margin-top: clamp(30px, 6vw, 60px);
}

.margin-top-xl {
  margin-top: clamp(60px, 8vw, 80px);
}

.margin-top-xxl {
  margin-top: clamp(40px, 10vw, 120px);
}

.padding-x-md {
  padding: 60px 0;
}

.font-12 {
  font-size: clamp(10px, 1vw, 12px);
  line-height: 14px;
}

.font-14 {
  font-size: clamp(14px, 1.2vw, 14px);
  line-height: 18px;
}

.font-16 {
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 23px;
}

.font-18 {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 24px;
}

.font-20 {
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 28px;
}

.font-22 {
  font-size: clamp(20px, 2vw, 22px);
  line-height: 30px;
}

.font-24 {
  font-size: clamp(22px, 2.2vw, 24px);
  line-height: 26px;
}

.font-26 {
  font-size: clamp(24px, 2.4vw, 26px);
  line-height: 32px;
}

.font-28 {
  font-size: clamp(26px, 2.6vw, 28px);
  line-height: 30px;
}

.font-30 {
  font-size: clamp(28px, 2.8vw, 30px);
  line-height: 32px;
}

.font-32 {
  font-size: clamp(30px, 3vw, 32px);
  line-height: 34px;
}

.font-34 {
  font-size: clamp(32px, 3.2vw, 34px);
  line-height: 36px;
}

/* Classes de Cor */
.color-white {
  color: #fff;
}

.color-gray {
  color: #747474;
}

.color-blue {
  color: #214BA0;
}

.color-black {
  color: #000;
}

/* Classes de Background */
.bg-white {
  background-color: #fff;
}

.bg-gray {
  background-color: #747474;
}

.bg-blue {
  background-color: #214BA0;
}

.bg-black {
  background-color: #000;
}

/* Classes de Font Weight */
.font-weight-100 {
  font-weight: 100;
}

.font-weight-200 {
  font-weight: 200;
}

.font-weight-300 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400;
}

/* Normal */
.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-800 {
  font-weight: 800;
}

.font-weight-900 {
  font-weight: 900;
}

/* Desktop: Alinhamento normal */
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

/* Responsivo: Mudança de alinhamento em telas menores */
@media (max-width: 768px) {
  .text-left-sm {
    text-align: left;
  }
  .text-center-sm {
    text-align: center;
  }
  .text-right-sm {
    text-align: right;
  }
}
@media (max-width: 480px) {
  .text-left-xs {
    text-align: left;
  }
  .text-center-xs {
    text-align: center;
  }
  .text-right-xs {
    text-align: right;
  }
}
.breadcrumb {
  font-size: 16px;
  color: #214BA0;
  font-weight: bold;
}
.breadcrumb span {
  margin: 0 4px;
}
.breadcrumb a,
.breadcrumb span {
  color: #747474;
  font-weight: 400;
}

.title-1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4.1rem;
}

.subtitle-1 {
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 18px;
}

.preset-text-1 {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.18px;
}

.arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 40px;
  color: #cdcdcd;
  cursor: pointer;
  z-index: 99;
}
.arrow.custom-prev {
  left: 0;
}
@media screen and (min-width: 992px) {
  .arrow.custom-prev {
    left: -30px;
  }
}
.arrow.custom-next {
  right: 0;
}
@media screen and (min-width: 992px) {
  .arrow.custom-next {
    right: -30px;
  }
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  html {
    font-size: 58%;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 50%;
  }
}

body {
  display: inline-block;
  vertical-align: top;
  width: 100% !important;
  max-width: 100%;
  color: #000000 !important;
  height: 100% !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
body.active {
  overflow: hidden;
}

*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:focus, *:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.clearfix {
  clear: both;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none !important;
}

input,
select,
textarea,
button {
  outline: none !important;
}

[data-scroll-animation] {
  opacity: 0;
}
[data-scroll-animation].animated {
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

li {
  list-style: none;
}

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

a:hover {
  text-decoration: none !important;
}

ul,
p {
  margin: 0;
  padding: 0;
}

.topbar {
  background: #214BA0;
  padding: 15px 0;
}
.topbar .row-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.topbar .row-bar a {
  font-size: 12px;
  color: #fff;
}

header {
  background: #214BA0;
}
header .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #88A7E6;
  padding: 15px 0;
}

body.home header {
  top: 66px;
  background: none;
  position: absolute;
  z-index: 99;
  width: 100%;
  padding: 0;
}
body.home header .header {
  border-top: 0;
  padding: 0;
}
@media screen and (max-width: 991px) {
  body.home header {
    background: linear-gradient(135deg, #0D2C6C 19.47%, #4773CD 90.14%);
    padding: 15px 0;
    position: relative;
    top: 0;
  }
}

@media screen and (max-width: 1199px) {
  nav.menu-desktop {
    display: none;
  }
}
nav.menu-desktop ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
nav.menu-desktop ul li a {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
nav.menu-desktop ul li a:hover {
  color: #58ECFF;
}
nav.menu-desktop ul li.current-page-ancestor a, nav.menu-desktop ul li.current-menu-item a {
  color: #58ECFF;
}
nav.menu-desktop ul li.link-simular a {
  background-color: #063346;
  color: #fff;
  width: 152px;
  height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url("../img/icon-menu-simular.svg");
  background-repeat: no-repeat;
  background-position: right 35px center;
  padding-right: 20px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
nav.menu-desktop ul li.link-simular a:hover {
  background-color: #04212d;
  background-position: right 30px center;
}

.menu-mobile {
  position: fixed;
  height: 100%;
  width: 100%;
  background: linear-gradient(4deg, #0D2C6C -0.53%, #4773CD 40.14%);
  top: 150px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 40px;
  z-index: 999;
}
@media screen and (max-width: 991px) {
  .menu-mobile {
    top: 154px;
  }
}
@media screen and (min-width: 992px) {
  .menu-mobile {
    display: none;
  }
}
.menu-mobile.active {
  visibility: visible;
  opacity: 1;
}
.menu-mobile > nav > ul {
  margin-bottom: 40px;
}
.menu-mobile > nav > ul > li {
  text-align: center;
  margin-top: 20px;
  position: relative;
}
.menu-mobile > nav > ul > li > a {
  font-size: 20px;
  text-align: center;
  color: #fff;
  font-weight: 700;
}
.menu-mobile > nav > ul > li.current-menu-item::before {
  content: "";
  width: 30%;
  height: 2px;
  background-color: #214BA0;
  left: 50%;
  -webkit-transform: translate(-50%, 30px);
  transform: translate(-50%, 30px);
  position: absolute;
  opacity: 1;
}
.menu-mobile > nav > ul > li.login-link > a {
  background: #214BA0;
  padding: 10px 23px;
  color: #fff;
  border-radius: 5px;
  font-size: 15px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-mobile > nav > ul > li.login-link > a:after {
  display: none;
}
.menu-mobile > nav > ul > li.login-link > a:hover {
  background: #000;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.menu-mobile > nav > ul > li.current-menu-item a {
  color: #58ECFF;
}
.menu-mobile > nav > ul > li.link-simular a {
  background-color: #063346;
  color: #fff;
  width: 152px;
  height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url("../img/icon-menu-simular.svg");
  background-repeat: no-repeat;
  background-position: right 35px center;
  margin: 0 auto;
  padding-right: 20px;
}

footer {
  margin-top: 100px;
  background: #214BA0;
  padding: 55px 0 20px 0;
}
@media screen and (max-width: 991px) {
  footer {
    margin-top: 60px;
  }
}

.topfooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px 20px;
}
@media screen and (max-width: 991px) {
  .topfooter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.topfooter .infos-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 10px;
  color: #fff;
}
.topfooter .infos-footer .icon {
  background: #16243E;
  width: 41px;
  height: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
}
.topfooter .infos-footer .text-phone {
  font-size: 25px;
}
.topfooter .infos-footer .text-mail {
  font-size: 20px;
}
.topfooter .infos-footer .text-address {
  font-size: 14px;
  line-height: 14px;
}

.mid-footer {
  border-top: 1px solid #3D77EC;
  margin-top: 50px;
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .mid-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.mid-footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 10px;
}
.mid-footer .social p {
  font-size: 20px;
  color: #fff;
}
.mid-footer .social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
}
.mid-footer .social ul li {
  font-size: 30px;
  color: #fff;
}
.mid-footer .title-menu {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 5px;
}
.mid-footer .menu-ft {
  font-size: 15px;
  font-weight: 300;
}
.mid-footer .menu-ft li a {
  display: inline-block;
  margin-bottom: 5px;
}

.bottom-footer {
  border-top: 1px solid #3D77EC;
  margin-top: 20px;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .bottom-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.bottom-footer .nexos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 3px;
}
.bottom-footer .nexos a {
  margin-top: -8px;
}
.bottom-footer .nexos img {
  width: 90px;
}

.button-nav {
  display: none;
  z-index: 999;
}
@media screen and (max-width: 1199px) {
  .button-nav {
    display: block;
  }
}
.button-nav .btn-burguer .icon-bar:nth-of-type(2) {
  top: 1px;
}
.button-nav .btn-burguer .icon-bar:nth-of-type(3) {
  top: 2px;
  margin-bottom: 0;
}
.button-nav .btn-burguer .icon-bar:nth-of-type(4) {
  top: 3px;
}
.button-nav .btn-burguer .icon-bar {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button-nav .btn-burguer.active .icon-bar:nth-of-type(1) {
  top: 7px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff;
}
.button-nav .btn-burguer.active .icon-bar:nth-of-type(2) {
  background: transparent;
}
.button-nav .btn-burguer.active .icon-bar:nth-of-type(3) {
  top: -9px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #fff;
}

.btn-burguer {
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  float: left;
  z-index: 999999;
  position: relative;
  width: 30px;
}

.btn-burguer .icon-bar {
  background: #fff;
  display: table;
  margin: 0 auto;
  margin-bottom: 6px;
  width: 30px;
  height: 2px;
  border-radius: 3px;
}

.hero {
  position: relative;
  padding-bottom: 200px;
  overflow-x: clip;
}
@media screen and (max-width: 1199px) {
  .hero {
    background: linear-gradient(135deg, #0D2C6C 19.47%, #4773CD 90.14%);
    padding-bottom: 80px;
    border-radius: 0 0 500px 0;
  }
}
@media screen and (max-width: 991px) {
  .hero {
    border-radius: 0 0 100px 0;
    padding-bottom: 50px;
  }
}
.hero .container {
  position: relative;
}
.hero .content-text {
  color: #fff;
  margin-top: 140px;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 1199px) {
  .hero .content-text {
    margin-top: 100px;
  }
}
@media screen and (max-width: 991px) {
  .hero .content-text {
    margin-top: 30px;
  }
}
.hero .content-text .title {
  font-size: 5.5rem;
  line-height: 6.5rem;
  font-weight: 300;
}
@media (max-width: 1440px) {
  .hero .content-text .title {
    font-size: 4.5rem;
    line-height: 5.5rem;
  }
}
.hero .content-text .text {
  font-size: 20px;
  font-weight: 300;
  margin-top: 20px;
}
.hero .content-text .text p + p {
  margin-top: 15px;
}
.hero .content-text .button-1 a {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border: 1px solid #fff;
  padding: 13px 30px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hero .content-text .button-1 a:hover {
  background: #fff;
  color: #214BA0;
}
.hero .image-featured {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  height: 540px;
  width: 47%;
  z-index: 99;
  margin-top: 80px;
}
@media screen and (max-width: 1199px) {
  .hero .image-featured {
    margin-top: 70px;
  }
}
@media screen and (max-width: 991px) {
  .hero .image-featured {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin-top: 0;
  }
}
.hero .image-featured .image {
  height: 100%;
}
.hero .image-featured img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero .details-hero {
  position: absolute;
  top: 0;
  height: 760px;
  left: -30%;
  width: 1800px;
}
@media (max-width: 1440px) {
  .hero .details-hero {
    width: 135%;
    height: 720px;
  }
}
@media (max-width: 1199px) {
  .hero .details-hero {
    display: none;
  }
}
.hero .details-hero img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}

@media screen and (max-width: 1199px) {
  .section-parceiros {
    margin-top: 50px;
  }
}

.lista-parceiros {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.seguros-content {
  position: relative;
  padding: 0 20px;
}

@media screen and (min-width: 1200px) {
  .lista-seguros {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.lista-seguros .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}
.lista-seguros .item {
  padding: 0 15px;
  height: auto;
}
.lista-seguros .item .inner-item {
  -webkit-box-shadow: 0 0 15px 3px #dbdbdb;
  box-shadow: 0 0 15px 3px #dbdbdb;
  padding: 30px 20px 55px 20px;
  text-align: center;
  width: 100%;
  position: relative;
  height: 100%;
}
.lista-seguros .item .icon {
  display: table;
  margin: 0 auto;
}
.lista-seguros .item .title {
  color: #214BA0;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 29px;
  margin-bottom: 20px;
}
.lista-seguros .item .text {
  font-size: 15px;
  color: #747474;
  line-height: 20px;
  font-weight: 300;
  margin-top: 20px;
}
.lista-seguros .item .link a {
  color: #214BA0;
  font-size: 15px;
  font-weight: 300;
  margin-top: 5px;
  display: inline-block;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section-quemsomos {
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 991px) {
  .section-quemsomos {
    padding-bottom: 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .section-quemsomos .image-box {
    height: 403px;
    position: absolute;
    left: 0;
    top: 0;
    width: 49%;
  }
  .section-quemsomos .image-box .image {
    height: 100%;
    width: 100%;
  }
  .section-quemsomos .image-box img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
  }
}
@media screen and (max-width: 991px) {
  .section-quemsomos .image-box {
    margin-top: 40px;
  }
}
.section-quemsomos .image-box .image {
  position: relative;
}
.section-quemsomos .content-text {
  margin-top: 70px;
}
@media (max-width: 1440px) {
  .section-quemsomos .content-text {
    margin-top: 0px;
  }
}
.section-quemsomos .icon-trofeu {
  position: absolute;
  right: -58px;
  top: -80px;
}
@media screen and (max-width: 991px) {
  .section-quemsomos .icon-trofeu {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: auto;
    bottom: -70px;
    left: 50%;
    right: auto;
    width: 140px;
  }
}

.content-empresas {
  padding: 0 20px;
  position: relative;
}

.lista-empresas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .lista-empresas {
    padding: 0 20px;
  }
}
.lista-empresas .slick-track {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
}
@media screen and (max-width: 991px) {
  .lista-empresas .slick-track {
    gap: 0;
  }
}
.lista-empresas .item {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .lista-empresas .item {
    padding: 0 10px;
  }
}
@media screen and (min-width: 992px) {
  .lista-empresas .item {
    width: calc(33.3333333333% - 20px);
  }
}
.lista-empresas .item .image {
  height: 210px;
  padding-right: 55px;
}
@media screen and (max-width: 991px) {
  .lista-empresas .item .image {
    padding-right: 0;
  }
}
.lista-empresas .item .image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.lista-empresas .item .content-text {
  display: inline-block;
  padding-left: 70px;
  position: relative;
  margin-top: -95px;
}
@media screen and (max-width: 991px) {
  .lista-empresas .item .content-text {
    padding-left: 0;
    margin-top: 0;
  }
}
.lista-empresas .item .content-text .inner-content {
  padding: 15px;
  background: #fff;
  -webkit-box-shadow: 0 0 15px 3px #dbdbdb;
  box-shadow: 0 0 15px 3px #dbdbdb;
  height: 100%;
}
.lista-empresas .item .content-text .title {
  font-size: 18px;
  padding-right: 55px;
  margin-bottom: 15px;
}
.lista-empresas .item .content-text .text {
  font-size: 15px;
}
.lista-empresas .item .content-text .link a {
  width: 55px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #214BA0;
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  letter-spacing: -6px;
  padding-right: 6px;
  color: #fff;
}
.lista-empresas .item .content-text .link a i {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.lista-empresas .item .content-text .link a:hover {
  background: #063346;
}
.lista-empresas .item .content-text .link a:hover i + i {
  margin-left: 5px;
}

.section-facaparte {
  margin-top: 90px;
}
@media screen and (max-width: 991px) {
  .section-facaparte {
    margin-top: 40px;
  }
}
.section-facaparte .title-1 {
  font-size: 3rem;
  line-height: 4rem;
}
.section-facaparte .row-coluna {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .section-facaparte .row-coluna {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.section-facaparte .row-coluna .coluna {
  min-width: 0;
}
.section-facaparte .row-coluna .coluna.cl-1 {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .section-facaparte .row-coluna .coluna.cl-1 {
    text-align: right;
  }
}
.section-facaparte .row-coluna .coluna.cl-1 .text {
  font-size: 20px;
}
.section-facaparte .row-coluna .coluna.cl-2 .link a {
  font-size: 14px;
  color: #fff;
  background: #214BA0;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 10px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.section-facaparte .row-coluna .coluna.cl-2 .link a i {
  font-size: 34px;
}
.section-facaparte .row-coluna .coluna.cl-3 svg {
  display: table;
  margin: 0 auto;
}

.blog-image img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  height: 340px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}

.social-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.social-share .facebook {
  background: #1877f2;
}
.social-share .x {
  background: #000;
}
.social-share .linkedin {
  background: #0077b5;
}
.social-share .email {
  background: #666;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 10px;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.blog-content p + p {
  margin-top: 10px;
}
.blog-content ul {
  padding-left: 20px;
}
.blog-content figure,
.blog-content img {
  margin: 20px 0;
}
.blog-content li {
  margin-bottom: 5px;
  list-style: disc;
}

.blog-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog-navigation a {
  text-decoration: none;
  font-weight: bold;
  color: #0073aa;
}

.blog-navigation a:hover {
  text-decoration: underline;
}

.pagination {
  text-align: center;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
}
.pagination span,
.pagination a {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #0073aa;
  font-size: 16px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.pagination span:hover,
.pagination a:hover {
  background-color: #214BA0;
  color: #fff;
}
.pagination .current {
  background-color: #214BA0;
  color: #fff;
  font-weight: bold;
}

.section-seguros {
  padding: 40px 0;
}
.section-seguros .content-page {
  margin-top: 80px;
}
.section-seguros .content-page .text p {
  margin-bottom: 1rem;
}
.section-seguros .content-page .text a {
  color: #4A86FF;
  font-style: italic;
  text-decoration: underline;
}
.section-seguros .content-page .text ul {
  margin: 15px 20px;
}
.section-seguros .content-page .text ul li {
  list-style: disc;
}
.section-seguros .content-page .text ul li + li {
  margin-top: 5px;
}
.section-seguros .content-page .button-download {
  display: inline-block;
  margin-top: 20px;
}
.section-seguros .content-page .button-download a {
  border-radius: 5px;
  border: 1px solid #D5E3FF;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 46px;
  padding: 0 25px;
  color: #214BA0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-seguros .content-page .button-download a:hover {
  background: #214BA0;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .section-seguros .image-featured {
    margin-top: 20px;
  }
}

.menu-seguro {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .menu-seguro {
    padding-right: 100px;
  }
}
.menu-seguro ul {
  display: grid;
  gap: 10px 0;
}
@media screen and (min-width: 1200px) {
  .menu-seguro ul {
    grid-template-columns: repeat(3, 3fr);
  }
}
@media screen and (min-width: 992px) {
  .menu-seguro ul {
    grid-template-columns: repeat(2, 2fr);
    gap: 25px 30px;
  }
}
.menu-seguro ul li a {
  border-radius: 5px;
  padding: 10px 20px;
  color: #214BA0;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  -webkit-box-shadow: 0 0 5px 0px #bbbbbb;
  box-shadow: 0 0 5px 0px #bbbbbb;
  height: 100%;
  height: 58px;
}
.menu-seguro ul li a.active, .menu-seguro ul li a:hover {
  background: #214BA0;
  color: #fff;
}

.form-template {
  margin-top: 10px;
}
.form-template .item {
  margin-top: 15px;
  width: 100%;
}
.form-template .foneItem {
  position: relative;
  width: 100%;
}
.form-template .foneItem .code {
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 44px;
  border-radius: 3px;
  background: #F1F1F1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9;
  font-size: 15px;
  color: #7B7B7B;
}
.form-template .foneItem input {
  padding: 0 15px 0 70px !important;
}
.form-template label {
  display: block;
  font-size: 15px;
  font-weight: 300;
  color: #747474;
  margin-bottom: 5px;
}
.form-template input[type=text],
.form-template input[type=email],
.form-template input[type=phone] {
  border-radius: 5px;
  border: 1px solid #EDEDED;
  height: 45px;
  background: #FFF;
  width: 100%;
  padding: 0 15px;
  font-size: 15px;
}
.form-template select {
  border-radius: 5px;
  border: 1px solid #EDEDED;
  height: 45px;
  background: #FFF;
  width: 100%;
  padding: 0 45px 0 15px;
  font-size: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/chevron-down.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
}
.form-template select:valid {
  color: #000;
}
.form-template input[type=submit] {
  display: table;
  margin: 0 auto;
  width: 227px;
  height: 42px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 3px;
  background: #214BA0;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-top: 50px;
  border: none;
}
.form-template input[type=submit]:hover {
  background: #173c85;
}
.form-template .date {
  text-align: center;
}
.form-template .date::-webkit-input-placeholder {
  text-align: center;
  font-size: 15px;
  color: #C1C1C1;
  font-weight: 300;
}
.form-template .date::-moz-placeholder {
  text-align: center;
  font-size: 15px;
  color: #C1C1C1;
  font-weight: 300;
}
.form-template .date::-ms-input-placeholder {
  text-align: center;
  font-size: 15px;
  color: #C1C1C1;
  font-weight: 300;
}
.form-template .date::placeholder {
  text-align: center;
  font-size: 15px;
  color: #C1C1C1;
  font-weight: 300;
}
.form-template .accept a {
  color: #214BA0;
  font-size: 14px;
}
.form-template .accept label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.form-template .accept input {
  border-radius: 3px;
  border: 1px solid #D1D1D1;
  width: 28px;
  height: 28px;
  background: #FFF;
  cursor: pointer;
}
.form-template .multifile .qbutton {
  display: inline-block;
  background-image: url(../img/icon-clipper.svg);
  background-position: left 20px center;
  background-repeat: no-repeat;
  width: 165px;
  padding: 0 15px 0 35px;
  height: 45px;
  border: 1px solid #EDEDED;
  border-radius: 5px;
}
.form-template .multifile .qbutton:hover {
  background-color: #214BA0;
  color: #fff;
}
.form-template .multifile .mfcf7-zl-multifile-name {
  font-size: 14px;
}

.section-page {
  padding: 30px;
}
.section-page p {
  margin-bottom: 1em;
}
.section-page h2 {
  font-size: 24px;
  color: #214BA0;
  margin-bottom: 0.2em;
  margin-top: 1.5em;
}
.section-page a {
  color: #214BA0;
}
.section-page ul {
  margin: 15px;
}
.section-page ul li {
  list-style: disc;
}


/* Estilizando a mensagem de sucesso do Contact Form 7 */
.wpcf7-form.sent .wpcf7-response-output {
  background-color: #e6f4ea; /* Verde claro para fundo */
  border: 2px solid #28a745; /* Borda verde */
  color: #28a745; /* Cor do texto verde escura */
  font-size: 16px;
  font-weight: 600;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: fadeIn 0.5s ease-in-out;
}

/* Adicionando um ícone de check antes da mensagem */
.wpcf7-form.sent .wpcf7-response-output::before {
  content: "\2714"; /* Ícone de checkmark Unicode */
  font-size: 20px;
  color: #28a745;
}

/* Animação de entrada */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Estilizando mensagens de erro, para contraste (opcional) */
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
  background-color: #f8d7da;
  border: 2px solid #dc3545;
  color: #dc3545;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 8px;
  text-align: center;
}

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