/* Header wordmark: SVG stays crisp at every display density. */
#header .logo { flex-shrink: 0; }
#header .logo img {
  width: 210px;
  max-width: 100%;
  max-height: none;
  height: auto;
  margin-right: 0;
}

#header > .container-fluid.container-xl,
.hero-home__layout,
.hero-home__metrics-inner,
.service-section .container,
.trust-section .container {
  width: calc(100% - 64px);
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
}

#header .logo {
  animation: header-enter-from-left 1.2s cubic-bezier(.22, 1, .36, 1) .08s both;
}

#header .navbar > ul > li {
  animation: header-item-enter-from-right 1s cubic-bezier(.22, 1, .36, 1) both;
}

#header .navbar > ul > li:nth-child(1) { animation-delay: .16s; }
#header .navbar > ul > li:nth-child(2) { animation-delay: .26s; }
#header .navbar > ul > li:nth-child(3) { animation-delay: .36s; }
#header .navbar > ul > li:nth-child(4) { animation-delay: .46s; }
#header .navbar > ul > li:nth-child(5) { animation-delay: .56s; }
#header .navbar > ul > li:nth-child(6) { animation-delay: .66s; }
#header .navbar > ul > li:nth-child(7) { animation-delay: .76s; }
#header .navbar > ul > li:nth-child(8) { animation-delay: .86s; }

@keyframes header-enter-from-left {
  from { opacity: 0; transform: translate3d(-55px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes header-item-enter-from-right {
  from { opacity: 0; transform: translate3d(38px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 575px) {
  #header .logo img { width: 180px; }
}

/* Home opening: scoped to avoid changing the other page banners. */
.hero.hero-home {
  display: block;
  height: auto;
  min-height: 0;
  padding: 116px 0 0;
  background: #0b2549;
  isolation: isolate;
}

.hero.hero-home::before {
  background: radial-gradient(ellipse at 78% 48%, #12518566 0, transparent 58%);
  opacity: 1;
  pointer-events: none;
}

.hero-home #particles-js {
  inset: 0;
  opacity: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(110deg, #000 0%, #0005 26%, #0005 43%, #000 68%);
  mask-image: linear-gradient(110deg, #000 0%, #0005 26%, #0005 43%, #000 68%);
}

.hero-home__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  min-height: 600px;
}

.hero-home__content {
  position: relative;
  z-index: 2;
  padding: 40px 0 70px;
}

.hero-home h1 {
  margin: 0 0 26px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(38px, 3.6vw, 60px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.045em;
  text-transform: none;
  animation: hero-enter-from-top 1.15s cubic-bezier(.22, 1, .36, 1) .12s both;
}

.hero-home h1 span {
  display: block;
  color: #36c0f4;
  font-weight: inherit;
}

.hero-home p.hero-home__description {
  max-width: 510px;
  margin: 0 0 32px;
  color: #36c0f4;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.025em;
  animation: hero-enter-from-top 1.15s cubic-bezier(.22, 1, .36, 1) .3s both;
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-home__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  transition: background .2s, border-color .2s, transform .2s;
}

.hero-home__button--primary {
  animation: hero-enter-from-bottom 1.1s cubic-bezier(.22, 1, .36, 1) .48s both;
}

.hero-home__button--secondary {
  animation: hero-enter-from-bottom 1.1s cubic-bezier(.22, 1, .36, 1) .62s both;
}

.hero-home__button--primary {
  background: #31baf0;
  color: #082340;
  box-shadow: 0 8px 32px #0099de22;
}

.hero-home__button--primary:hover {
  background: #72d5fb;
  color: #082340;
  transform: translateY(-2px);
}

.hero-home__button--secondary {
  border-color: #8babc366;
  color: #fff;
  background: #0b254966;
}

.hero-home__button--secondary:hover {
  border-color: #9cdaf4;
  background: #183b60;
  color: #fff;
}

.hero-home a:focus-visible {
  outline: 3px solid #9cdaf4;
  outline-offset: 5px;
}

.hero-home p.hero-home__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 0;
  color: #acbfd4;
  font-size: 12px;
  line-height: 1.7;
  animation: hero-enter-from-bottom 1.1s cubic-bezier(.22, 1, .36, 1) .76s both;
}

.hero-home__note i {
  color: #36c0f4;
  font-size: 17px;
}

.hero-home__visual {
  align-self: end;
  position: relative;
  margin-left: -24px;
  isolation: isolate;
  animation: hero-enter-from-right 1.3s cubic-bezier(.22, 1, .36, 1) .22s both;
}

@keyframes hero-enter-from-top {
  from { opacity: 0; transform: translate3d(0, -38px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes hero-enter-from-right {
  from { opacity: 0; transform: translate3d(60px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes hero-enter-from-bottom {
  from { opacity: 0; transform: translate3d(0, 38px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero-home__visual::before {
  content: "";
  position: absolute;
  inset: 7% -9% 3%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(ellipse, #0099de55 0%, #0099de22 42%, transparent 70%);
  animation: hero-aura 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-home__visual::after {
  content: "";
  position: absolute;
  inset: 15% 1% 14%;
  z-index: -1;
  border: 1px solid #42caff36;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 0%, #a2eeff 0 2px, #36c0f455 3px, transparent 8px),
    radial-gradient(circle at 50% 100%, #74ddff 0 2px, transparent 7px);
  box-shadow: 0 0 35px #0099de12, inset 0 0 35px #0099de12;
  animation: hero-orbit 32s linear infinite;
  pointer-events: none;
}

@keyframes hero-aura {
  from { opacity: .65; transform: scale(.94); }
  to { opacity: 1; transform: scale(1.06); }
}

@keyframes hero-orbit {
  from { transform: rotate(-24deg) scaleX(.92); }
  to { transform: rotate(336deg) scaleX(.92); }
}

.hero-home__visual img {
  display: block;
  width: 100%;
  max-height: 650px;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 85%, transparent 100%);
}

.hero-home__metrics {
  position: relative;
  z-index: 2;
  border-top: 1px solid #ffffff1f;
  background: #0b315de8;
  backdrop-filter: blur(8px);
}

.hero-home__metrics-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 18px;
  padding-bottom: 18px;
}

.hero-home__metric {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  padding: 4px 22px;
  color: #f5faff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.hero-home__metric + .hero-home__metric {
  border-left: 1px solid #ffffff24;
}

.hero-home__metric strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 43px;
  padding: 7px 14px;
  border: 1px solid #ffffff73;
  border-radius: 10px;
  background: #ffffff0d;
  flex: 0 0 auto;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
  text-shadow: none;
  white-space: nowrap;
}

.hero-home__metric-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #ffffff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: none;
}

.hero-home__metric-icon--filled {
  fill: currentColor;
  stroke: none;
}

.hero-home__metric-value {
  color: #ffffff;
  white-space: nowrap;
}

.hero.hero-home .hero-home__metric .hero-home__metric-value,
.hero.hero-home .hero-home__metric .hero-home__metric-value span {
  color: #ffffff;
}

.hero-home__metric-value--years {
  display: inline-flex;
  gap: 6px;
}

.hero-home__metric > span {
  max-width: 220px;
  color: #f5faff;
}

@media (min-width: 1600px) {
  .hero-home__layout { min-height: 660px; }
}

@media (max-width: 1199px) {
  .hero-home__layout { min-height: 520px; }
  .hero-home h1 { font-size: 42px; }
  .hero-home__button { padding: 14px 18px; font-size: 13px; }
}

@media (min-width: 576px) and (max-width: 1399px) {
  #header > .container-fluid.container-xl,
  .hero-home__layout,
  .hero-home__metrics-inner,
  .service-section .container,
  .trust-section .container {
    width: calc(100% - 64px);
    max-width: none;
  }

  .hero-home__layout {
    column-gap: 32px;
  }

  .hero-home__visual {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .hero.hero-home { padding-top: 116px; }
  .hero-home__layout { grid-template-columns: 1fr; min-height: 0; }
  .hero-home__content { padding: 24px 0 0; }
  .hero-home h1 { font-size: clamp(34px, 6vw, 52px); }
  .hero-home__visual { margin: 0 auto; width: min(100%, 440px); }
  .hero-home__visual img { max-height: 460px; }
  .hero-home #particles-js { opacity: .6; }
  .hero-home__metric { padding-inline: 12px; }
}

@media (max-width: 575px) {
  #header > .container-fluid.container-xl,
  .hero-home__layout,
  .hero-home__metrics-inner,
  .service-section .container,
  .trust-section .container {
    width: calc(100% - 32px);
    padding-right: 0;
    padding-left: 0;
  }

  .hero-home__content { padding-top: 12px; }
  .hero-home h1 { font-size: clamp(29px, 7.8vw, 42px); }
  .hero-home p.hero-home__description { font-size: 24px; line-height: 1.45; margin-bottom: 26px; }
  .hero-home__actions { gap: 12px; }
  .hero-home__button { width: 100%; min-height: 52px; }
  .hero-home p.hero-home__note { font-size: 11px; align-items: flex-start; }
  .hero-home__visual { width: min(100%, 350px); margin-top: 12px; }
  .hero-home__visual img { max-height: 390px; }
  .hero-home__metrics-inner { grid-template-columns: repeat(2, 1fr); padding-top: 12px; padding-bottom: 12px; }
  .hero-home__metric { gap: 5px; min-height: 76px; padding: 10px 8px; font-size: 11px; }
  .hero-home__metric strong { gap: 22px; font-size: 21px; }
  .hero-home__metric > span { max-width: 150px; }
  .hero-home__metric + .hero-home__metric { border-left: 0; }
  .hero-home__metric:nth-child(even) { border-left: 1px solid #ffffff2e; }
  .hero-home__metric:nth-child(n+3) { border-top: 1px solid #ffffff2e; }
}

@media (prefers-reduced-motion: reduce) {
  #header .logo,
  #header .navbar > ul > li { animation: none; }
  .hero-home h1,
  .hero-home p.hero-home__description,
  .hero-home__button,
  .hero-home p.hero-home__note,
  .hero-home__visual { animation: none; }
  .hero-home__visual::before, .hero-home__visual::after { animation: none; }
  .hero-home__button { transition: none; }
  .hero-home__button:hover { transform: none; }
}

/* Trust and authority: proof comes after the service offer. */
.trust-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 166px 0 104px;
  background:
    radial-gradient(circle at 8% 82%, #eaf7fd 0, transparent 23%),
    radial-gradient(circle at 92% 16%, #eef9fe 0, transparent 24%),
    #fff;
}

.trust-section::before,
.trust-section::after {
  content: "";
  position: absolute;
  border: 1px solid #dceef7;
  border-radius: 50%;
  pointer-events: none;
}

.trust-section::before {
  width: 300px;
  height: 300px;
  right: -190px;
  top: 160px;
}

.trust-section::after {
  width: 180px;
  height: 180px;
  left: -115px;
  bottom: 70px;
}

.trust-section__cta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  min-height: 148px;
  margin: 0;
  padding: 30px 42px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(115deg, #09284e 0 72%, #0b5d8d 100%);
  box-shadow: 0 22px 50px #09284e24;
  color: #fff;
}

.trust-section__cta::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: 12%;
  top: -130px;
  border: 1px solid #71d2fa33;
  border-radius: 50%;
}

.trust-section__cta-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 34px;
}

.trust-section__cta-kicker {
  grid-row: 1 / span 2;
  padding-right: 34px;
  border-right: 1px solid #ffffff2e;
  color: #43c7f5;
  font: 700 14px/1.4 "Plus Jakarta Sans", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-section__cta-copy strong {
  color: #fff;
  font: 700 22px/1.25 "Plus Jakarta Sans", sans-serif;
}

.trust-section__cta-copy p {
  margin: 5px 0 0;
  color: #d6e7f4;
  font: 400 14px/1.55 "Plus Jakarta Sans", sans-serif;
}

.trust-section__cta-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 10px;
  background: #36c0f4;
  color: #08284c;
  font: 700 14px/1 "Plus Jakarta Sans", sans-serif;
  transition: background .25s ease, transform .25s ease;
}

.trust-section__cta-button:hover {
  background: #fff;
  color: #08284c;
  transform: translateY(-2px);
}

.trust-section__testimonial {
  position: relative;
  z-index: 1;
  margin-bottom: 104px;
}

.trust-section__testimonial-heading {
  max-width: 660px;
  margin: 0 auto 30px;
  text-align: center;
}

.trust-section__testimonial-heading span {
  display: inline-block;
  margin-bottom: 13px;
  color: #079bdc;
  font: 700 13px/1.4 "Plus Jakarta Sans", sans-serif;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.trust-section__testimonial-heading h2 {
  margin: 0;
  color: #09284e;
  font: 700 clamp(28px, 2.5vw, 40px)/1.2 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.035em;
  text-transform: none;
}

.trust-section__testimonial .trust-section__video-box {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 208px 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 26%, #39c6f540 0, transparent 20%),
    radial-gradient(circle at 18% 84%, #36c0f426 0, transparent 22%),
    linear-gradient(120deg, #09284e 0%, #0b3c68 58%, #0a5b88 100%);
  box-shadow: 0 22px 52px #09284e1f;
}

.trust-section__video-box::before,
.trust-section__video-box::after {
  content: "";
  position: absolute;
  border: 1px solid #75d8fb33;
  border-radius: 50%;
  pointer-events: none;
}

.trust-section__video-box::before {
  width: 320px;
  height: 320px;
  right: 8%;
  top: -160px;
}

.trust-section__video-box::after {
  width: 220px;
  height: 220px;
  bottom: -110px;
  left: 9%;
}

.trust-section__video-caption {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 8%;
  max-width: 360px;
  transform: translateY(-50%);
  color: #fff;
}

.trust-section__video-caption span {
  display: block;
  margin-bottom: 14px;
  color: #52cdf7;
  font: 700 13px/1.4 "Plus Jakarta Sans", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trust-section__video-caption p {
  margin: 0;
  color: #fff;
  font: 700 clamp(25px, 2.5vw, 38px)/1.2 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.03em;
}

.trust-section__testimonial .trust-section__video-box .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.trust-section__heading {
  width: min(780px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.trust-section__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #079bdc;
  font: 700 13px/1.4 "Plus Jakarta Sans", sans-serif;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.trust-section__heading h2 {
  margin: 0;
  color: #09284e;
  font: 700 clamp(34px, 3vw, 50px)/1.15 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.04em;
  text-transform: none;
}

.trust-section__heading p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #526a83;
  font: 400 16px/1.75 "Plus Jakarta Sans", sans-serif;
}

.trust-section__pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #c5e0ef;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 44px #09284e0d;
}

.trust-pillar {
  position: relative;
  min-height: 270px;
  padding: 34px 30px;
}

.trust-pillar + .trust-pillar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: #d7e8f2;
}

.trust-pillar__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
  border-radius: 14px;
  background: #eaf7fd;
  color: #079bdc;
}

.trust-pillar__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-pillar h3 {
  margin: 0 0 12px;
  color: #09284e;
  font: 700 19px/1.35 "Plus Jakarta Sans", sans-serif;
}

.trust-pillar p {
  margin: 0;
  color: #5b7188;
  font: 400 14px/1.7 "Plus Jakarta Sans", sans-serif;
}

.trust-section__segments {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid #dceaf2;
}

.trust-section__segments > span {
  flex: 0 0 auto;
  color: #526a83;
  font: 600 13px/1.4 "Plus Jakarta Sans", sans-serif;
}

.trust-section__segments ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-section__segments li {
  padding: 9px 16px;
  border: 1px solid #c9e1ef;
  border-radius: 999px;
  background: #f7fbfe;
  color: #244a6d;
  font: 600 13px/1 "Plus Jakarta Sans", sans-serif;
}

@media (max-width: 991px) {
  .trust-section { padding: 154px 0 80px; }
  .trust-section__cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trust-section__cta-button { justify-self: start; }
  .trust-section__testimonial { margin-bottom: 80px; }
  .trust-section__testimonial .trust-section__video-box { padding: 168px 0; }
  .trust-section__pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-pillar:nth-child(3)::before { display: none; }
  .trust-pillar:nth-child(n+3) { border-top: 1px solid #d7e8f2; }
}

@media (max-width: 575px) {
  .trust-section { padding: 168px 0 64px; }
  .trust-section__cta {
    padding: 30px 24px;
    border-radius: 20px;
  }
  .trust-section__cta-copy {
    display: block;
  }
  .trust-section__cta-kicker {
    display: block;
    margin-bottom: 16px;
    padding: 0;
    border: 0;
  }
  .trust-section__cta-copy strong { display: block; font-size: 20px; }
  .trust-section__cta-button { width: 100%; gap: 16px; }
  .trust-section__testimonial { margin-bottom: 64px; }
  .trust-section__testimonial-heading { margin-bottom: 24px; text-align: left; }
  .trust-section__testimonial-heading h2 { font-size: 28px; }
  .trust-section__testimonial .trust-section__video-box { padding: 110px 0; border-radius: 18px; }
  .trust-section__video-caption { right: 20px; left: 20px; max-width: 280px; }
  .trust-section__video-caption p { font-size: 23px; }
  .trust-section__heading { margin-bottom: 36px; text-align: left; }
  .trust-section__heading h2 { font-size: 32px; }
  .trust-section__heading p { font-size: 15px; line-height: 1.65; }
  .trust-section__pillars { grid-template-columns: 1fr; }
  .trust-pillar { min-height: 0; padding: 28px 24px; }
  .trust-pillar + .trust-pillar::before { display: none; }
  .trust-pillar:nth-child(n+2) { border-top: 1px solid #d7e8f2; }
  .trust-section__segments { display: block; margin-top: 32px; padding-top: 28px; }
  .trust-section__segments > span { display: block; margin-bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-section__cta-button { transition: none; }
  .trust-section__cta-button:hover { transform: none; }
}

/* Home services: light counterpart to the dark opening section. */
.service-section {
  position: relative;
  z-index: 3;
  isolation: isolate;
  overflow: visible;
  overflow-x: clip; /* o círculo decorativo (::before, right: -190px) criava rolagem lateral */
  background:
    radial-gradient(circle at 54% 12%, transparent 0 28px, #c7e2f15c 29px 30px, transparent 31px),
    radial-gradient(circle at 72% 14%, transparent 0 82px, #cfe6f266 83px 84px, transparent 85px),
    radial-gradient(circle at 88% 64%, transparent 0 54px, #c5e0ef57 55px 56px, transparent 57px),
    radial-gradient(circle at 45% 88%, transparent 0 112px, #c8e2ef59 113px 114px, transparent 115px),
    radial-gradient(circle at 30% 70%, transparent 0 44px, #cbe4f25c 45px 46px, transparent 47px),
    radial-gradient(circle at 16% 42%, transparent 0 58px, #d4eaf466 59px 60px, transparent 61px),
    radial-gradient(circle at 7% 74%, transparent 0 34px, #c9e3f15c 35px 36px, transparent 37px),
    radial-gradient(circle at 63% 90%, transparent 0 62px, #c7e1ef52 63px 64px, transparent 65px),
    radial-gradient(circle at 92% 10%, #dceef8 0, transparent 27%),
    radial-gradient(circle at 0 88%, #e5f3fa 0, transparent 24%),
    #f4f8fc;
}

.service-section::before,
.service-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid #cde4f1;
  border-radius: 50%;
  pointer-events: none;
}

.service-section::before {
  width: 520px;
  height: 520px;
  top: -360px;
  right: -190px;
}

.service-section::after {
  width: 360px;
  height: 360px;
  bottom: -280px;
  left: -150px;
}

.service-section.space {
  padding-top: 92px;
  padding-bottom: 170px;
}

.service-section .service-container-wrapper,
.service-section .container {
  position: relative;
  z-index: 1;
}

.service-section .trust-section__bridge {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
}

/* Na página de Serviços, a chamada fica no fluxo da própria seção. */
.service-section.service-section--page.space { padding-bottom: 92px; }
.service-section.service-section--page .trust-section__bridge {
  position: relative;
  transform: none;
  margin-top: 56px;
}

.service-section .title-wrap {
  display: block;
  max-width: 760px;
  margin-bottom: 44px !important;
}

.service-section .section-title .subtitle {
  margin-bottom: 14px;
  color: #0099de;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.5;
}

.service-section .section-title .title {
  color: #09284e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.04em;
  text-transform: none;
}

.service-section__intro {
  max-width: 720px;
  margin: 20px 0 0;
  color: #526a83;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.service-section #serviceSliderOne .swiper-wrapper {
  align-items: stretch;
}

.service-section #serviceSliderOne .swiper-slide {
  height: auto;
}

.service-section .service-card.style1 {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 350px;
  padding: 28px;
  border: 1px solid #a9cee3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px #09284e0d;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-section .service-card.style1 .icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
  border: 1px solid #c8dfef;
  border-radius: 10px;
  background: #f8fbfe;
  line-height: 1;
  transition: background .25s ease, border-color .25s ease;
}

.service-section .service-card.style1 .icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(37%) saturate(2577%) hue-rotate(183deg) brightness(91%) contrast(99%);
}

.service-section .service-card.style1 .body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-section .service-card.style1 .body h3 {
  margin: 0 0 8px;
}

.service-section .service-card.style1 .body h3 a {
  color: #09284e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}

.service-section .service-card.style1 .body p {
  margin: 0 0 24px;
  color: #526a83;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.service-section .service-card.style1 .body .link-btn.style1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 17px 0 0;
  border: 0;
  border-top: 1px solid #c8dfef;
  border-radius: 0;
  background: transparent;
  color: #09284e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.service-section .service-card.style1 .body .link-btn.style1 span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.service-section .service-card.style1:hover,
.service-section .service-card.style1.is-featured {
  border-color: #24afe7;
  background: #19a9e5;
  box-shadow: 0 18px 44px #0099de2e;
  /* Keep every card aligned while the active state changes. */
  transform: none;
}

.service-section .service-card.style1:hover .icon,
.service-section .service-card.style1.is-featured .icon {
  border-color: #ffffff80;
  background: #ffffff12;
  transform: none;
}

.service-section .service-card.style1:hover .icon img,
.service-section .service-card.style1.is-featured .icon img {
  filter: brightness(0) invert(1);
}

.service-section .service-card.style1:hover .body h3 a,
.service-section .service-card.style1:hover .body p,
.service-section .service-card.style1:hover .body .link-btn.style1,
.service-section .service-card.style1.is-featured .body h3 a,
.service-section .service-card.style1.is-featured .body p,
.service-section .service-card.style1.is-featured .body .link-btn.style1 {
  color: #fff;
}

.service-section .service-card.style1:hover .body .link-btn.style1,
.service-section .service-card.style1.is-featured .body .link-btn.style1 {
  border-color: #ffffff66;
  background: transparent;
}

@keyframes service-section-enter {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.service-section.service-entrance-ready .section-title .subtitle,
.service-section.service-entrance-ready .section-title .title,
.service-section.service-entrance-ready .service-section__intro,
.service-section.service-entrance-ready .service-card.style1 {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.service-section.service-entrance-ready.service-entrance-revealed .section-title .subtitle,
.service-section.service-entrance-ready.service-entrance-revealed .section-title .title,
.service-section.service-entrance-ready.service-entrance-revealed .service-section__intro,
.service-section.service-entrance-ready.service-entrance-revealed .service-card.style1 {
  animation: service-section-enter .62s cubic-bezier(.22, 1, .36, 1) both;
}

.service-section.service-entrance-ready.service-entrance-revealed .section-title .subtitle { animation-delay: 0ms; }
.service-section.service-entrance-ready.service-entrance-revealed .section-title .title { animation-delay: 120ms; }
.service-section.service-entrance-ready.service-entrance-revealed .service-section__intro { animation-delay: 240ms; }
.service-section.service-entrance-ready.service-entrance-revealed .service-card.style1 { animation-delay: var(--service-entrance-delay, 360ms); }

@media (max-width: 767px) {
.service-section.space {
  padding-top: 68px;
  padding-bottom: 118px;
  }

  .service-section .title-wrap {
    margin-bottom: 32px !important;
  }

  .service-section .section-title .title {
    font-size: clamp(31px, 8vw, 42px);
  }

  .service-section__intro {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.65;
  }

  .service-section .service-card.style1 {
    min-height: 330px;
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-section .service-card.style1 {
    transition: none;
  }

  .service-section .service-card.style1:hover,
  .service-section .service-card.style1.is-featured {
    transform: none;
  }
}


/* Números do hero em destaque: sem caixinha, valor grande e unidades em azul-claro. */
.hero.hero-home .hero-home__metrics--big .hero-home__metrics-inner { padding-top: 26px; padding-bottom: 26px; }
.hero.hero-home .hero-home__metrics--big .hero-home__metric { gap: 6px; }
.hero.hero-home .hero-home__metrics--big .hero-home__metric strong { display: inline-flex; align-items: baseline; gap: 2px; min-width: 0; min-height: 0; padding: 0; border: 0; border-radius: 0; background: none; color: #fff; font-size: clamp(30px, 3vw, 46px); font-weight: 800; letter-spacing: -.045em; }
.hero.hero-home .hero-home__metrics--big .hero-home__metric-plus { color: #36c0f4; }
.hero.hero-home .hero-home__metrics--big .counter-number { color: #fff; } /* o template pinta .counter-number com a cor do tema */
.hero.hero-home .hero-home__metrics--big .hero-home__metric-unit { margin-left: 7px; color: #36c0f4; font-size: .5em; font-weight: 700; letter-spacing: -.01em; }
.hero.hero-home .hero-home__metrics--big .hero-home__metric-unit--before { margin: 0 6px 0 2px; }
.hero.hero-home .hero-home__metrics--big .hero-home__metric > span { color: #b8cbe0; font-size: 13.5px; font-weight: 600; }
@media (max-width: 991px) {
  .hero.hero-home .hero-home__metrics--big .hero-home__metric strong { font-size: 28px; }
}
@media (max-width: 575px) {
  .hero.hero-home .hero-home__metrics--big .hero-home__metrics-inner { padding-top: 14px; padding-bottom: 14px; }
  .hero.hero-home .hero-home__metrics--big .hero-home__metric { min-height: 86px; }
  .hero.hero-home .hero-home__metrics--big .hero-home__metric strong { font-size: 24px; }
  .hero.hero-home .hero-home__metrics--big .hero-home__metric > span { font-size: 11.5px; }
}
