@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/open-sans-latin.woff2') format('woff2');
}

:root {
  --blue: #0070d8;
  --blue-dark: #005db6;
  --navy: #484848;
  --navy-deep: #292c30;
  --ink: #3f4348;
  --muted: #687078;
  --line: #e2e6ea;
  --bg: #f5f7f9;
  --white: #fff;
  --shadow: 0 12px 32px rgba(28, 53, 74, .12);
  --radius: 6px;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  overflow-x: hidden;
}
.nav,
.nav a,
.nav button,
.button,
.btn,
.topbar { font-family: "Montserrat", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(var(--max), calc(100% - 40px)); margin: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 120;
  min-height: 36px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 36px;
}
.topbar a { transition: opacity .2s ease; }
.topbar a:hover { opacity: .78; }
.toplinks { display: flex; align-items: center; gap: 20px; }

.main-header {
  position: sticky;
  top: 36px;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(18, 61, 97, .08);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 112px;
  padding: 10px 0;
}
.logo { display: inline-flex; align-items: center; flex: 0 1 auto; min-width: 0; }
.logo img { display: block; width: 230px; max-height: 100px; object-fit: contain; }
.nav { display: flex; align-items: center; justify-content: flex-end; gap: 5px; }
.nav a {
  position: relative;
  padding: 14px 11px;
  color: #454545;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav a::after {
  position: absolute;
  right: 11px;
  bottom: 8px;
  left: 11px;
  height: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(.25);
  transition: opacity .2s ease, transform .2s ease;
}
.nav a:hover,
.nav a.active { color: var(--blue); }
.nav a:hover::after,
.nav a.active::after { opacity: 1; transform: scaleX(1); }
.menu-btn {
  display: none;
  border: 1px solid var(--blue);
  border-radius: 3px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  font: inherit;
  font-weight: 800;
  flex: 0 0 auto;
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: 555px;
  overflow: hidden;
  background: linear-gradient(120deg, #183447, #0c6696);
  color: var(--white);
  padding: 92px 0 84px;
}
.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  background: linear-gradient(transparent, rgba(5, 27, 43, .16));
  content: "";
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
}
.hero-grid > div:first-child {
  width: min(680px, 100%);
  max-width: 100%;
  min-width: 0;
  padding: 28px 38px 32px;
  background: rgba(39, 47, 51, .64);
  text-align: right;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
}
.eyebrow { display: none; }
.hero h1 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 39px);
  font-weight: 700;
  line-height: 1.18;
}
.hero p {
  max-width: 640px;
  margin: 0 0 20px auto;
  color: var(--white);
  font-size: 18px;
  line-height: 1.7;
}
.hero-card { display: none; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero .cta-row { justify-content: flex-end; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 43px;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 10px 19px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  line-height: 1.3;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
  max-width: 100%;
  white-space: normal;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--blue); color: var(--white); }
.btn.primary:hover { background: var(--blue-dark); }
.btn.secondary { border-color: rgba(255, 255, 255, .75); background: rgba(60, 64, 65, .72); color: var(--white); }
.btn.secondary:hover { background: rgba(35, 40, 42, .88); }
.btn.light { background: var(--white); color: var(--blue); box-shadow: var(--shadow); }
.btn.outline { border-color: var(--blue); background: var(--white); color: var(--blue); }

.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 92% 4%, rgba(0, 112, 216, .15), transparent 46%),
    linear-gradient(145deg, #fff 0%, #fafdff 48%, #eaf5fb 100%);
  padding: 78px 0;
}
.section > .container { position: relative; z-index: 1; }
.section::before {
  position: absolute;
  z-index: 0;
  top: -225px;
  right: -225px;
  width: 720px;
  height: 490px;
  border: 1px solid rgba(0, 112, 216, .2);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(0, 112, 216, .06),
    0 0 0 92px rgba(0, 112, 216, .035),
    0 0 70px rgba(0, 112, 216, .09);
  content: "";
  pointer-events: none;
  transform: rotate(-13deg);
}
.section::after {
  position: absolute;
  z-index: 0;
  bottom: -90px;
  left: -10%;
  width: 68%;
  height: 245px;
  border-radius: 50%;
  background: linear-gradient(100deg, rgba(0, 112, 216, .14), rgba(126, 210, 246, .055) 58%, transparent);
  content: "";
  filter: blur(10px);
  pointer-events: none;
  transform: rotate(7deg);
}
.section.alt {
  background:
    radial-gradient(ellipse at 8% 88%, rgba(0, 112, 216, .15), transparent 43%),
    linear-gradient(155deg, #edf6fb 0%, #f8fbfd 56%, #e6f2f8 100%);
}
.section.alt::before {
  top: -245px;
  right: auto;
  left: -235px;
  transform: rotate(16deg);
}
.section.alt::after { right: -12%; left: auto; transform: rotate(-7deg); }
.section-title { max-width: 830px; margin: 0 auto 40px; text-align: center; }
.section-title.left { margin-left: 0; text-align: left; }
.section-title h2,
.page-title h1,
.content h2,
.feature-box h2 {
  margin: 0 0 15px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.25;
}
.section-title h2,
.page-title h1 { font-size: clamp(30px, 3.5vw, 43px); }
.section-title p,
.page-title p { margin: 0; color: var(--muted); font-size: 17px; }

.grid { display: grid; gap: 24px; }
.grid.cards { grid-template-columns: repeat(4, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 7px 24px rgba(22, 50, 72, .07);
  padding: 25px;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transition: opacity .25s ease;
}
.card:hover { border-color: #8ebdd4; background: #eef7fb; box-shadow: var(--shadow); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  margin-bottom: 17px;
  border-radius: 50%;
  background: #eaf6fd;
  color: var(--blue);
  font-size: 22px;
}
.card h3 { margin: 0 0 11px; color: var(--navy-deep); font-size: 18px; line-height: 1.4; }
.card p { margin: 0 0 16px; color: var(--muted); line-height: 1.7; }
.mini-link { color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

.feature { display: grid; grid-template-columns: .95fr 1.05fr; gap: 42px; align-items: center; }
.feature-box {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 4px solid var(--blue);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 38px;
}
.feature-box h2 { font-size: 34px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.stat { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 18px; text-align: center; }
.stat strong { color: var(--blue); font-size: 29px; }

.page-hero {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 86% 20%, rgba(73, 185, 237, .3), transparent 36%),
    linear-gradient(118deg, #172f40 0%, #124f74 58%, #0879b4 100%);
  color: var(--white);
  padding: 66px 0;
}
.page-title { max-width: 850px; }
.page-title h1 { color: var(--white); }
.page-title p { color: rgba(255, 255, 255, .9); }
.breadcrumb { margin-bottom: 14px; color: rgba(255, 255, 255, .78); font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

.content { max-width: 920px; margin: auto; }
.content h2 { font-size: 32px; }
.content p,
.content li { color: #59636d; font-size: 16px; }
.content ul { padding-left: 22px; }
.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}
.info-item { padding: 5px 18px; border-right: 1px solid var(--line); }
.info-item:last-child { border-right: 0; }
.info-item strong { display: block; margin-bottom: 5px; color: var(--blue); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }

.form-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: start; }
.form {
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px;
}
.form label { display: block; margin: 14px 0 6px; color: var(--navy-deep); font-weight: 700; }
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid #cfd6dc;
  border-radius: 2px;
  background: var(--white);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}
.form input:focus,
.form select:focus,
.form textarea:focus { outline: 2px solid rgba(7, 137, 212, .18); border-color: var(--blue); }
.form textarea { min-height: 130px; resize: vertical; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form small { color: var(--muted); }
.checks { display: grid; gap: 8px; margin: 12px 0; }
.checks label { display: flex; gap: 10px; align-items: flex-start; margin: 0; font-weight: 600; }
.checks input { width: auto; margin-top: 5px; }
.turnstile-wrap { min-height: 65px; display: flex; align-items: center; justify-content: center; margin: 18px 0 8px; }
form button:disabled,
form input[type="submit"]:disabled { cursor: not-allowed; opacity: .55; }
.notice { margin: 16px 0; border: 1px solid #d7e9f4; border-radius: var(--radius); background: #eef8fd; padding: 16px; color: #34566c; }
.success-box { border-color: #b7e4c7; background: #eaf8f0; }
.submission-success-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(76, 195, 133, .18), transparent 27%),
    radial-gradient(circle at 84% 76%, rgba(0, 112, 216, .13), transparent 32%),
    linear-gradient(145deg, #f8fcff, #eaf5fa);
}
.submission-success-section::before,
.submission-success-section::after {
  position: absolute;
  border: 1px solid rgba(0, 112, 216, .13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.submission-success-section::before { top: -290px; right: -180px; width: 620px; height: 620px; }
.submission-success-section::after { bottom: -380px; left: -190px; width: 710px; height: 710px; }
.submission-success {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  margin: 0 auto;
  border: 1px solid rgba(0, 112, 216, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 25px 72px rgba(8, 48, 77, .14);
  padding: 54px 48px;
  text-align: center;
}
.submission-success-icon { display: grid; width: 64px; height: 64px; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: #e3f8eb; color: #16814a; }
.submission-success-icon svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.3; }
.submission-success-kicker { display: block; margin-bottom: 13px; color: #16814a; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.submission-success h1 { margin: 0; color: var(--premium-navy); font-family: "Montserrat", Arial, sans-serif; font-size: clamp(31px, 4.1vw, 46px); line-height: 1.14; }
.submission-success p { max-width: 560px; margin: 22px auto 0; color: #587082; font-size: 17px; line-height: 1.7; }
.submission-success .submission-success-note { margin-top: 9px; color: #7890a1; font-size: 14px; }
.submission-success-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.submission-success-secondary { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; border: 1px solid #c5d6e1; border-radius: 4px; padding: 15px 22px; color: var(--premium-navy); font-size: 13px; font-weight: 700; }
.submission-success-secondary:hover { border-color: var(--premium-blue); background: #f0f8fc; color: var(--premium-blue); }
@media (max-width: 640px) {
  .submission-success-section { padding: 64px 0; }
  .submission-success { padding: 40px 22px; }
  .submission-success p { font-size: 15px; }
  .submission-success-actions { flex-direction: column; }
  .submission-success-actions > * { width: 100%; }
}

/* Proteções para telas estreitas: o conteúdo permanece dentro da largura do
   aparelho e os avisos flutuantes não exigem rolagem lateral. */
@media (max-width: 640px) {
  html, body { width: 100%; max-width: 100%; overflow-x: clip; }
  .container,
  .unified-main-header .container { width: calc(100% - 28px); max-width: calc(100vw - 28px); min-width: 0; }
  .privacy-banner { right: 14px; left: 14px; width: auto; max-width: none; }
  .submission-success,
  .submission-success-actions,
  .submission-success-actions > * { max-width: 100%; }
}

.footer { background: var(--navy-deep); color: #dcebf4; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr 1fr .75fr; gap: 34px; }
.footer h3,
.footer h4 { margin-top: 0; color: var(--white); }
.footer h3 { font-family: "Montserrat", Arial, sans-serif; font-size: 22px; font-weight: 600; }
.footer h4 { font-size: 13px; letter-spacing: .09em; text-transform: uppercase; }
.footer p { color: #c7dae6; }
.footer a { display: block; margin: 7px 0; color: #dcebf4; transition: color .2s ease; }
.footer a:hover { color: #0070d8; }
.footer-bottom { margin-top: 34px; border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 20px; color: #9db9ca; font-size: 12px; text-align: center; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { border-radius: 20px; background: #eaf6fd; color: var(--blue-dark); padding: 7px 11px; font-size: 12px; font-weight: 700; }
.alert { border-bottom: 1px solid #c9e7f7; background: #eaf7fd; color: var(--navy); }
.alert .container { display: flex; justify-content: center; gap: 10px; padding: 11px 0; text-align: center; font-weight: 700; }
.privacy-banner {
  position: fixed;
  z-index: 99;
  right: 24px;
  bottom: 24px;
  display: none;
  width: min(440px, calc(100% - 48px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .16);
  padding: 22px;
}
.privacy-banner.show { display: block; }
.privacy-banner p { margin: 7px 0 17px; }
.privacy-banner .actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.privacy-settings-link { border: 0; background: transparent; color: inherit; cursor: pointer; font: inherit; font-size: inherit; text-transform: inherit; opacity: .85; }
.privacy-settings-link:hover { color: var(--blue); opacity: 1; }
.tablelike { display: grid; gap: 12px; }
.tablelike div { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 14px; }
.print-note { display: none; }

@media (max-width: 1040px) {
  .header-row { gap: 18px; }
  .logo img { width: 175px; }
  .nav a { padding-right: 7px; padding-left: 7px; font-size: 11px; letter-spacing: .08em; }
  .grid.cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .topbar .container { justify-content: center; padding: 7px 0; }
  .topbar .container > div:first-child { display: none; }
  .toplinks { justify-content: center; gap: 13px; }
  .toplinks a:nth-last-child(-n+2) { display: none; }
  .header-row { min-height: 106px; }
  .logo img { width: 180px; max-height: 90px; }
  .menu-btn { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 8px 20px 16px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 4px; }
  .nav a::after { right: auto; bottom: 7px; left: 4px; width: 32px; }
  .hero { min-height: 500px; padding: 70px 0; background-position: 42% center; }
  .hero-grid { justify-items: stretch; }
  .hero-grid > div:first-child { margin-left: auto; }
  .feature,
  .form-wrap { grid-template-columns: 1fr; }
  .grid.three,
  .grid.two,
  .info-strip,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-item { border-right: 0; }
}

@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 30px)); }
  .toplinks a:first-child,
  .toplinks a:nth-child(2) { display: none; }
  .header-row { min-height: 94px; }
  .hero { min-height: 470px; padding: 48px 0; }
  .hero-grid > div:first-child { width: 100%; padding: 24px 22px 27px; text-align: left; }
  .hero h1 { max-width: 100%; font-size: 29px; overflow-wrap: break-word; }
  .hero p { max-width: 100%; font-size: 16px; overflow-wrap: break-word; }
  .hero .cta-row { justify-content: flex-start; }
  .section { padding: 56px 0; }
  .grid.cards,
  .grid.three,
  .grid.two,
  .info-strip,
  .footer-grid,
  .stats { grid-template-columns: 1fr; }
  .feature-box { min-height: 0; padding: 28px 25px; }
  .page-hero { min-height: 250px; padding: 50px 0; }
  .form .row { grid-template-columns: 1fr; }
  .privacy-banner { right: 15px; left: 15px; bottom: 15px; width: auto; max-width: none; overflow: hidden; }
  .privacy-banner .actions { justify-content: stretch; }
  .privacy-banner .actions .btn { flex: 1 1 120px; }
}

@media print {
  .topbar,
  .main-header,
  .footer,
  .cta-row,
  .form,
  .privacy-banner { display: none; }
  .print-note { display: block; }
  .section,
  .page-hero { min-height: 0; padding: 20px 0; }
  .card { box-shadow: none; }
}

.home-page {
  --max: 1200px;
  --premium-blue: #0070d8;
  --premium-blue-light: #168bea;
  --premium-navy: #484848;
  --premium-navy-2: #35393e;
  --premium-ink: #3d4247;
  --premium-soft: #eef4fa;
  --home-photo-overlay: linear-gradient(90deg, rgba(6, 24, 38, .68) 0%, rgba(7, 38, 58, .58) 45%, rgba(7, 48, 73, .52) 100%);
  --home-photo-vignette: linear-gradient(0deg, rgba(4, 18, 29, .16), transparent 46%);
  --home-neutral-photo-overlay: linear-gradient(90deg, rgba(12, 24, 34, .74) 0%, rgba(15, 37, 54, .56) 34%, rgba(16, 55, 76, .26) 59%, rgba(16, 55, 76, .07) 82%, transparent 100%);
  --home-neutral-photo-vignette: linear-gradient(0deg, rgba(8, 23, 35, .18), transparent 44%);
  --home-final-hero-overlay: linear-gradient(90deg, rgba(8, 38, 61, .86) 0%, rgba(10, 48, 73, .78) 38%, rgba(14, 59, 87, .68) 68%, rgba(17, 66, 96, .62) 100%);
  --home-final-hero-vignette: linear-gradient(0deg, rgba(5, 27, 45, .32), rgba(5, 27, 45, .12) 44%, rgba(5, 27, 45, .18));
  --home-wide-overlay: var(--home-photo-overlay);
  --home-wide-vignette: var(--home-photo-vignette);
  color: var(--premium-ink);
  background: #fff;
}
.home-page .container { width: min(var(--max), calc(100% - 48px)); }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 11px 16px;
  background: #fff;
  color: var(--premium-navy);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--premium-blue-light); }
.home-page .topbar { position: sticky; top: 178px; z-index: 95; min-height: 68px; background: #0070d8; box-shadow: 0 8px 24px rgba(7, 46, 74, .13); }
.home-page .topbar-inner { min-height: 68px; justify-content: space-between; gap: 24px; }
.home-page .topbar .container,
.home-page .main-header .container { width: min(1200px, calc(100% - 48px)); }
.topbar-contact,
.home-page .toplinks { display: flex; flex: 1; align-items: center; gap: 15px; }
.topbar-contact { justify-content: flex-start; }
.home-page .toplinks { justify-content: flex-end; }
.topbar-item { display: inline-flex; align-items: center; gap: 5px; color: #fff; font-size: 12px; font-weight: 800; white-space: nowrap; }
.topbar-item svg { width: 15px; height: 15px; flex: 0 0 15px; fill: currentColor; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.topbar-item .barcode-icon { width: 16px; stroke-width: 1.5; }
.topbar-app-card {
  order: 5;
  min-width: 222px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 6px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 10px 28px rgba(7, 46, 74, .12);
  padding: 7px 8px 7px 14px;
  color: var(--premium-navy);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.topbar-app-card:hover,
.topbar-app-card:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(7, 46, 74, .18);
}
.topbar-app-copy { display: grid; gap: 2px; min-width: 0; line-height: 1.15; }
.topbar-app-copy strong { color: var(--premium-blue); font-size: 13px; font-weight: 850; letter-spacing: .01em; }
.topbar-app-copy small { color: #526676; font-size: 11px; font-weight: 750; white-space: nowrap; }
.topbar-app-qr {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #fff;
  padding: 3px;
}
.topbar-app-qr img { width: 100%; height: 100%; display: block; object-fit: contain; }
.top-socials { display: flex; align-items: center; gap: 8px; margin-left: 4px; }
.social-link {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.social-link:hover { border-color: #fff; background: rgba(255, 255, 255, .2); transform: translateY(-1px); }
.social-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-link .social-fill { fill: currentColor; stroke: none; }
.home-page .main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .76);
  box-shadow: none;
  backdrop-filter: blur(16px) saturate(135%);
  transition: box-shadow .25s ease, background .25s ease;
}
.home-page .main-header.is-scrolled { background: rgba(255, 255, 255, .76); box-shadow: 0 12px 35px rgba(6, 44, 76, .14); }
.home-page .header-row { min-height: 178px; padding: 8px 0; gap: 42px; }
.home-page .logo img { width: 280px; max-height: 150px; transform: translateX(-30px) scale(1.12); transform-origin: left center; }
.corporate-nav { gap: 10px; }
.corporate-nav > a,
.corporate-nav .nav-trigger {
  border: 0;
  background: transparent;
  color: #464646;
  padding: 13px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.corporate-nav .nav-trigger::after { content: "⌄"; margin-left: 5px; color: #7c8c98; font-size: 12px; }
.corporate-nav > a::after { display: none; }
.corporate-nav > a:hover,
.corporate-nav > a.active,
.corporate-nav .nav-trigger.active,
.corporate-nav .nav-trigger:hover,
.corporate-nav .nav-group.open .nav-trigger { color: var(--premium-blue); }
.corporate-nav > .nav-cta {
  margin-left: 6px;
  border-radius: 2px;
  background: var(--premium-blue);
  color: #fff;
  padding: 14px 16px;
  letter-spacing: .04em;
}
.corporate-nav > .nav-cta:hover { background: var(--premium-navy); color: #fff; }
.nav-group { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 19px);
  left: 50%;
  z-index: 20;
  display: grid;
  width: 280px;
  padding: 12px;
  border: 1px solid #e3edf3;
  background: rgba(255, 255, 255, .99);
  box-shadow: 0 24px 60px rgba(5, 39, 65, .16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-dropdown-right { right: -115px; left: auto; transform: translate(0, 10px); }
.nav-dropdown::before {
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  height: 20px;
  content: "";
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.open .nav-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-group:hover .nav-dropdown-right,
.nav-group:focus-within .nav-dropdown-right,
.nav-group.open .nav-dropdown-right { transform: translate(0, 0); }
.nav-dropdown a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid #edf1f4;
  border-radius: 0;
  padding: 12px 13px;
  color: var(--premium-ink);
  letter-spacing: 0;
  text-transform: none;
}
.nav-dropdown a:last-child { border-bottom: 0; }
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: #f3f9fc; }
.nav-dropdown a strong { color: var(--premium-navy); font-size: 13px; }
.nav-dropdown a small { color: #738492; font-size: 11px; font-weight: 600; }
.nav-mega { left: auto; right: -220px; grid-template-columns: 1fr 1fr; width: 570px; }
.nav-group:hover .nav-mega,
.nav-group:focus-within .nav-mega,
.nav-group.open .nav-mega { transform: translate(0, 0); }
.nav-mega { transform: translate(0, 10px); }
.nav-mega a:nth-last-child(-n+2) { border-bottom: 0; }

.corporate-hero {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--premium-navy);
  color: #fff;
}
.hero-media,
.hero-overlay { position: absolute; inset: 0; }
.hero-media {
  background: url('../img/hero-condominio.webp') center 54% / cover no-repeat;
  transform: scale(1.025);
  transition: transform .2s linear;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 31, 35, .82) 0%, rgba(36, 40, 45, .66) 42%, rgba(35, 51, 65, .28) 73%, rgba(25, 38, 50, .12) 100%),
    linear-gradient(0deg, rgba(28, 31, 35, .3), transparent 45%);
}
.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 29, 35, .78) 0%, rgba(27, 37, 46, .60) 32%, rgba(25, 46, 61, .32) 58%, rgba(19, 42, 58, .04) 76%, transparent 100%),
    linear-gradient(0deg, rgba(22, 29, 35, .16), transparent 38%);
}
.corporate-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  pointer-events: none;
}
.corporate-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, .65fr);
  gap: 70px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 96px;
}
.corporate-hero-copy { max-width: 730px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--premium-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker > span { width: 28px; height: 2px; background: currentColor; }
.kicker-light { color: #0070d8; }
.corporate-hero .kicker-light { color: #168bea; }
.corporate-hero h1 {
  max-width: 720px;
  margin: 0 0 24px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
}
.corporate-hero h1 em {
  color: #168bea;
  font-style: normal;
  font-weight: 700;
}
.home-page .corporate-hero h1 em {
  text-shadow: 0 2px 14px rgba(4, 20, 31, .55), 0 1px 2px rgba(4, 20, 31, .42);
}
.corporate-hero-copy > p { max-width: 660px; margin: 0; color: rgba(255, 255, 255, .82); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 12px 21px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-lg { min-height: 56px; padding: 15px 25px; }
.button-primary { background: var(--premium-blue); color: #fff; }
.button-primary:hover { background: #079be9; }
.button-ghost { border-color: rgba(255, 255, 255, .42); background: rgba(255, 255, 255, .07); color: #fff; backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .14); }
.button-dark { background: var(--premium-navy); color: #fff; }
.button-dark:hover { background: var(--premium-blue); }
.button-light { background: #fff; color: var(--premium-navy); }
.button-light:hover { background: #dff4ff; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: rgba(255, 255, 255, .74); font-size: 12px; font-weight: 700; }
.hero-assurances span::before { color: #0070d8; content: "✓"; margin-right: 7px; }
.corporate-hero-grid.without-notice { grid-template-columns: minmax(0, 1fr); }
.hero-command {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(4, 42, 69, .66);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}
.command-head { display: flex; align-items: center; gap: 9px; border-bottom: 1px solid rgba(255, 255, 255, .14); padding: 16px 20px; font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.command-head small { margin-left: auto; color: rgba(255, 255, 255, .55); }
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #39d98a; box-shadow: 0 0 0 5px rgba(57, 217, 138, .12); }
.command-main { display: flex; flex-direction: column; gap: 5px; padding: 25px 22px; }
.command-main span { color: rgba(255, 255, 255, .62); font-size: 12px; }
.command-main strong { max-width: 290px; font-family: "Montserrat", Arial, sans-serif; font-size: 23px; font-weight: 600; line-height: 1.35; }
.command-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255, 255, 255, .12); border-bottom: 1px solid rgba(255, 255, 255, .12); }
.command-grid > div { display: flex; flex-direction: column; min-height: 123px; padding: 18px; border-right: 1px solid rgba(255, 255, 255, .12); border-bottom: 1px solid rgba(255, 255, 255, .12); }
.command-grid > div:nth-child(2n) { border-right: 0; }
.command-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
.command-grid strong { margin-top: auto; font-size: 13px; }
.command-grid small { color: rgba(255, 255, 255, .55); font-size: 10px; }
.command-icon { color: #0070d8; font-size: 10px; font-weight: 800; }
.hero-command > a { display: flex; justify-content: space-between; padding: 16px 20px; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.scroll-cue { position: absolute; z-index: 3; bottom: 25px; left: 50%; display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, .67); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { position: relative; width: 1px; height: 28px; overflow: hidden; background: rgba(255, 255, 255, .26); }
.scroll-cue span::after { position: absolute; top: -100%; left: 0; width: 1px; height: 100%; background: #fff; content: ""; animation: scroll-cue 1.8s infinite; }
@keyframes scroll-cue { to { top: 100%; } }

.quick-access { position: relative; z-index: 5; margin-top: -1px; border-bottom: 0; background: linear-gradient(120deg, #fff 0%, #f8fbfd 100%); box-shadow: 0 16px 42px rgba(8, 48, 77, .055); }
.quick-access-grid { display: grid; grid-template-columns: .7fr 1fr 1fr 1fr; }
.quick-label,
.quick-access-grid > a { min-height: 116px; display: flex; align-items: center; gap: 15px; border-right: 1px solid #e6edf2; padding: 22px; }
.quick-label { flex-direction: column; align-items: flex-start; justify-content: center; background: var(--premium-blue); color: #fff; }
.quick-label small { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.quick-label strong { font-family: "Montserrat", Arial, sans-serif; font-size: 19px; font-weight: 600; }
.quick-access-grid > a { transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.quick-access-grid > a:hover { border-color: #8ebdd4; background: #e8f4f9; box-shadow: inset 0 -3px #0070d8, 0 10px 24px rgba(8, 48, 77, .1); transform: translateY(-2px); }
.quick-access-grid > a > span:nth-child(2) { display: flex; flex-direction: column; }
.quick-access-grid a strong { color: var(--premium-navy); font-size: 13px; }
.quick-access-grid a small { color: #718391; font-size: 10px; }
.quick-number { color: var(--premium-blue); font-size: 10px; font-weight: 800; }
.quick-access-grid i { margin-left: auto; color: var(--premium-blue); font-style: normal; }
.trust-line { position: relative; z-index: 6; overflow: hidden; margin-top: -1px; border-top: 0; border-bottom: 1px solid rgba(0, 0, 0, .22); background: linear-gradient(90deg, #20272c, #173344 52%, #20272c); box-shadow: 0 12px 30px rgba(8, 48, 77, .11); }
.trust-track { display: flex; width: max-content; align-items: center; min-height: 56px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; animation: trust-marquee 28s linear infinite; will-change: transform; }
.trust-sequence { display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.trust-track i { color: #43b9ef; font-size: 7px; font-style: normal; }
@keyframes trust-marquee { to { transform: translateX(-50%); } }

/* Quando há um comunicado configurado em aviso-rolante.js, a faixa ganha
   destaque próprio sem alterar a apresentação dos princípios padrão. */
.trust-line.trust-line--notice {
  border-bottom-color: rgba(255, 255, 255, .36);
  background: linear-gradient(90deg, #005fab, #0070d8 50%, #005fab);
}
.trust-line--notice .trust-track {
  min-height: 56px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .09em;
  animation-duration: 34s;
}
.trust-line--notice .trust-sequence { gap: 38px; padding-right: 38px; }
.trust-line--notice .trust-track i { color: #fff; font-size: 9px; }
.trust-line.trust-line--notice-red { background: linear-gradient(90deg, #8d1919, #c62828 50%, #8d1919); }
.trust-line.trust-line--notice-green { background: linear-gradient(90deg, #176b3b, #218a4d 50%, #176b3b); }
.trust-line.trust-line--notice-yellow { background: linear-gradient(90deg, #d69d00, #f4bb19 50%, #d69d00); }
.trust-line--notice-yellow .trust-track { color: #1e2e3d; }
.trust-line--notice-yellow .trust-track i { color: #1e2e3d; }
.trust-line.trust-line--notice-dark-blue { background: linear-gradient(90deg, #082f55, #0b4e82 50%, #082f55); }
.trust-line.trust-line--notice-white { background: linear-gradient(90deg, #e8eef2, #fff 50%, #e8eef2); }
.trust-line.trust-line--notice-purple { background: linear-gradient(90deg, #4e2677, #713ca1 50%, #4e2677); }
.trust-line.trust-line--notice-orange { background: linear-gradient(90deg, #dd7600, #f6a11a 50%, #dd7600); }
.trust-line.trust-line--notice-lilac { background: linear-gradient(90deg, #b58ada, #d7b7ef 50%, #b58ada); }
.trust-line.trust-line--notice-pink { background: linear-gradient(90deg, #e98ab7, #f6b4d1 50%, #e98ab7); }
.trust-line--notice-white .trust-track,
.trust-line--notice-orange .trust-track,
.trust-line--notice-lilac .trust-track,
.trust-line--notice-pink .trust-track { color: #1e2e3d; }
.trust-line--notice-white .trust-track i,
.trust-line--notice-orange .trust-track i,
.trust-line--notice-lilac .trust-track i,
.trust-line--notice-pink .trust-track i { color: #1e2e3d; }

.premium-section { padding: 112px 0; }
.about-premium,
.technology-section,
.regions-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 88% 16%, rgba(0, 112, 216, .14), transparent 45%),
    linear-gradient(145deg, #fff 0%, #fafdff 52%, #eaf5fb 100%);
}
.about-premium { padding-top: 48px; }
.about-premium > .container,
.technology-section > .container,
.regions-section > .container { position: relative; z-index: 1; }
.about-premium::before,
.technology-section::before,
.regions-section::before {
  position: absolute;
  z-index: 0;
  width: 760px;
  height: 430px;
  border: 1px solid rgba(0, 112, 216, .18);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(0, 112, 216, .055),
    0 0 0 104px rgba(0, 112, 216, .03),
    0 0 78px rgba(0, 112, 216, .075);
  content: "";
  pointer-events: none;
}
.about-premium::after,
.technology-section::after,
.regions-section::after {
  position: absolute;
  z-index: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 202, 242, .19), rgba(111, 202, 242, .065) 38%, transparent 69%);
  content: "";
  pointer-events: none;
}
.about-premium::before { top: -205px; right: -245px; transform: rotate(-12deg); }
.about-premium::after { bottom: -275px; left: -170px; }
.technology-section {
  background:
    radial-gradient(ellipse at 8% 82%, rgba(0, 112, 216, .14), transparent 42%),
    linear-gradient(155deg, #edf7fb 0%, #fff 46%, #f8fcfe 100%);
}
.technology-section::before { bottom: -215px; left: -250px; transform: rotate(14deg); }
.technology-section::after { top: -250px; right: -135px; }
.regions-section::before { top: -220px; right: -255px; transform: rotate(-15deg); }
.regions-section::after { bottom: -275px; left: 18%; }
.about-premium-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 92px; align-items: center; }
.about-visual { position: relative; min-height: 560px; }
.about-visual::before { position: absolute; top: -24px; left: -24px; width: 160px; height: 160px; border-top: 1px solid #b9dcec; border-left: 1px solid #b9dcec; content: ""; }
.about-visual img { width: 100%; height: 560px; display: block; object-fit: cover; box-shadow: 0 28px 70px rgba(11, 59, 99, .13); }
.experience-card { position: absolute; right: -38px; bottom: 40px; width: 185px; min-height: 170px; display: flex; flex-direction: column; justify-content: center; background: var(--premium-blue); color: #fff; padding: 26px; }
.experience-card strong { font-family: "Montserrat", Arial, sans-serif; font-size: 44px; font-weight: 600; line-height: 1; }
.experience-card > span { margin-top: 10px; font-size: 11px; font-weight: 700; line-height: 1.5; text-transform: uppercase; }
.visual-caption { position: absolute; bottom: -18px; left: 28px; background: #fff; box-shadow: 0 12px 35px rgba(7, 51, 82, .12); padding: 14px 18px; color: #617482; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.visual-caption span { display: inline-block; width: 22px; height: 2px; margin-right: 8px; vertical-align: middle; background: var(--premium-blue); }
.about-copy h2,
.section-heading h2,
.technology-copy h2,
.standard-copy h2,
.regions-copy h2,
.faq-intro h2,
.proposal-copy h2 {
  margin: 0 0 24px;
  color: var(--premium-navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(35px, 4vw, 51px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.2;
}
.about-copy .lead,
.technology-copy .lead,
.regions-copy .lead { color: #2f4d62; font-size: 18px; line-height: 1.75; }
.about-copy > p:not(.lead),
.regions-copy > p:not(.lead) { color: #667987; }
.about-points { display: grid; gap: 0; margin: 32px 0; border-top: 1px solid #dfe9ef; }
.about-points > div { display: grid; grid-template-columns: 45px 1fr; gap: 12px; border-bottom: 1px solid #dfe9ef; padding: 17px 0; }
.about-points > div > span { color: var(--premium-blue); font-size: 10px; font-weight: 800; }
.about-points p { margin: 0; color: #70818d; font-size: 13px; }
.about-points strong { display: block; margin-bottom: 2px; color: var(--premium-navy); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: var(--premium-blue); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.numbers-section {
  position: relative;
  overflow: hidden;
  background:
    var(--home-final-hero-overlay),
    var(--home-final-hero-vignette),
    url('../img/empresa-estrutura.webp') center 48% / cover no-repeat;
  color: #fff;
  padding: 82px 0;
}
.numbers-section::after { position: absolute; right: -80px; bottom: -180px; width: 430px; height: 430px; border: 1px solid rgba(86, 197, 248, .13); border-radius: 50%; box-shadow: 0 0 0 60px rgba(86, 197, 248, .035), 0 0 0 120px rgba(86, 197, 248, .025); content: ""; }
.numbers-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr repeat(4, .65fr); gap: 0; align-items: stretch; }
.numbers-intro { padding-right: 45px; }
.numbers-intro h2 { margin: 0; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 30px; font-weight: 600; line-height: 1.35; }
.number-item { display: flex; flex-direction: column; justify-content: center; min-height: 160px; border-left: 1px solid rgba(255, 255, 255, .14); padding: 18px 25px; }
.number-item strong { color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 41px; font-weight: 600; line-height: 1; }
.number-item p { margin: 13px 0 0; color: rgba(255, 255, 255, .6); font-size: 10px; font-weight: 700; line-height: 1.55; text-transform: uppercase; }

.google-reviews-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbfd 0%, #fff 42%, #edf7fb 100%);
  padding: 86px 0 92px;
}
.google-reviews-section::before {
  position: absolute;
  top: -250px;
  left: 50%;
  z-index: -1;
  width: 860px;
  height: 470px;
  border: 1px solid rgba(0, 112, 216, .13);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(0, 112, 216, .04),
    0 0 0 118px rgba(0, 112, 216, .022);
  content: "";
  transform: translateX(-50%) rotate(-6deg);
}
.google-reviews-section *,
.google-reviews-section *::before,
.google-reviews-section *::after { min-width: 0; }
.google-reviews-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}
.google-reviews-heading .kicker { justify-content: center; }
.google-reviews-heading h2 {
  margin: 0;
  color: var(--premium-navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 49px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.17;
}
.google-rating-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(5, 44, 70, .96), rgba(7, 35, 54, .92)),
    url('../img/empresa-estrutura.webp') center / cover no-repeat;
  color: #fff;
  padding: 24px 30px;
  box-shadow: 0 24px 60px rgba(7, 45, 71, .16);
}
.google-rating-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.google-rating-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #1f1f1f;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}
.google-rating-brand strong,
.google-rating-brand span { display: block; }
.google-rating-brand strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
}
.google-rating-brand span {
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.google-rating-score {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 18px;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.google-rating-score strong {
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 58px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}
.google-rating-stars {
  color: #ffc247;
  font-size: 17px;
  letter-spacing: .08em;
  line-height: 1;
}
.google-rating-score p {
  grid-column: 2;
  max-width: 275px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  line-height: 1.55;
}
.google-rating-actions {
  display: flex;
  justify-content: flex-end;
}
.google-rating-actions .button {
  min-width: 178px;
  background: #fff;
  color: #07304c;
}
.google-review-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.google-review-card {
  min-height: 282px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dce7ed;
  background: rgba(255, 255, 255, .94);
  padding: 23px 22px;
  box-shadow: 0 18px 45px rgba(8, 48, 77, .055);
}
.google-review-stars {
  color: #ffc247;
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1;
}
.google-review-card p {
  margin: 21px 0 0;
  color: #566d7c;
  font-size: 12px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}
.google-review-author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding-top: 26px;
}
.google-review-author > div { min-width: 0; }
.google-review-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e5f4fb;
  color: var(--premium-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.google-review-author strong,
.google-review-author > div > span { display: block; }
.google-review-author strong {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  color: var(--premium-navy);
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
}
.google-review-surname-mask {
  width: 54px;
  height: 10px;
  display: inline-block;
  flex: 0 0 54px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(38, 61, 75, .5), rgba(38, 61, 75, .18), rgba(38, 61, 75, .46));
  filter: blur(3px);
  transform: translateY(1px);
}
.google-review-author > div > span {
  margin-top: 3px;
  color: #7b8c98;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}
.google-reviews-footnote {
  display: flex;
  justify-content: center;
  margin-top: 26px;
  color: #72838f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.services-premium { background: #f4f8fa; }
.section-heading-split { display: grid; grid-template-columns: 1.35fr .65fr; gap: 90px; align-items: end; margin-bottom: 55px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading-split > div:last-child > p { margin: 0 0 24px; color: #657987; }
.service-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-premium-card { position: relative; min-height: 335px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid #dce7ed; background: #fff; padding: 27px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease; }
.service-premium-card:hover { z-index: 2; border-color: #c1deed; box-shadow: 0 25px 60px rgba(9, 51, 80, .13); transform: translateY(-7px); }
.service-premium-card svg { width: 46px; height: 46px; margin: 28px 0 38px; fill: none; stroke: var(--premium-blue); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.service-premium-card > div { margin-top: auto; }
.service-premium-card small { color: var(--premium-blue); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-premium-card h3 { margin: 9px 0 12px; color: var(--premium-navy); font-family: "Montserrat", Arial, sans-serif; font-size: 20px; font-weight: 600; line-height: 1.35; }
.service-premium-card p { margin: 0; color: #6c7d89; font-size: 12px; line-height: 1.7; }
.service-index { position: absolute; top: 22px; right: 24px; color: #9aabb6; font-size: 10px; font-weight: 800; }
.service-premium-card { cursor: pointer; }
.service-premium-card:focus-visible { outline: 3px solid rgba(0, 112, 216, .45); outline-offset: 4px; }
.service-featured { grid-column: span 2; background: var(--premium-navy); }
.service-featured::before { display: none; content: none; }
.service-featured svg { stroke: #5dcbfb; }
.service-featured h3 { max-width: 450px; color: #fff; font-size: 28px; }
.service-featured p { max-width: 500px; color: rgba(255, 255, 255, .6); }
.service-featured .service-index { color: rgba(255, 255, 255, .4); }
.service-accent { background: #07304c; border-color: #07304c; }
.service-accent svg { stroke: #fff; }
.service-accent small,
.service-accent h3,
.service-accent p,
.service-accent .service-index { color: #fff; }
.service-accent p { color: rgba(255, 255, 255, .72); }

.technology-section { overflow: hidden; }
.technology-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 85px; align-items: center; }
.technology-list { display: grid; gap: 0; margin: 30px 0 35px; border-top: 1px solid #dfe8ed; }
.technology-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; border-bottom: 1px solid #dfe8ed; padding: 17px 0; }
.technology-list > div > span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #e2f5fd; color: var(--premium-blue); font-size: 12px; font-weight: 800; }
.technology-list p { margin: 0; color: #70818c; font-size: 12px; }
.technology-list strong { display: block; color: var(--premium-navy); font-size: 14px; }
.technology-visual { position: relative; padding: 28px 0 28px 28px; }
.technology-visual::before { position: absolute; inset: 0 70px 0 0; background: var(--premium-soft); content: ""; }
.technology-visual img { position: relative; z-index: 1; width: 100%; height: 510px; display: block; object-fit: cover; filter: brightness(.98) contrast(1.02) saturate(.92); box-shadow: 0 28px 70px rgba(8, 48, 77, .14); }
.technology-visual::after { position: absolute; z-index: 1; inset: 28px 0 28px 28px; background: var(--home-final-hero-overlay), var(--home-final-hero-vignette); content: ""; pointer-events: none; }
.data-card { position: absolute; z-index: 2; display: flex; flex-direction: column; background: rgba(255, 255, 255, .94); box-shadow: 0 18px 45px rgba(7, 45, 71, .15); backdrop-filter: blur(12px); padding: 16px 19px; }
.data-card small { color: #7a8b97; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.data-card strong { margin-top: 6px; color: var(--premium-navy); font-size: 12px; }
.data-card-top { top: 0; right: 35px; }
.data-card-bottom { bottom: 0; left: 0; width: 210px; }
.mini-bars { height: 36px; display: flex; align-items: flex-end; gap: 6px; margin-top: 8px; }
.mini-bars i { flex: 1; background: linear-gradient(var(--premium-blue-light), var(--premium-blue)); }
.mini-bars i:nth-child(1) { height: 32%; }.mini-bars i:nth-child(2) { height: 52%; }.mini-bars i:nth-child(3) { height: 45%; }.mini-bars i:nth-child(4) { height: 78%; }.mini-bars i:nth-child(5) { height: 100%; }

.process-section { background: #f7fafc; }
.section-heading.centered { max-width: 820px; margin: 0 auto 60px; text-align: center; }
.section-heading.centered .kicker { justify-content: center; }
.section-heading.centered h2 { margin-bottom: 18px; }
.section-heading.centered > p { color: #72838f; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-grid::before { position: absolute; top: 62px; right: 12%; left: 12%; height: 1px; background: #cfdfe8; content: ""; }
.process-grid article { position: relative; z-index: 1; padding: 0 30px; text-align: center; }
.process-number { color: var(--premium-blue); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.process-icon { width: 58px; height: 58px; display: grid; place-items: center; margin: 16px auto 23px; border: 1px solid #c9deea; border-radius: 50%; background: #fff; color: var(--premium-blue); box-shadow: 0 0 0 10px #f7fafc; font-size: 19px; }
.process-grid h3 { margin: 0 0 10px; color: var(--premium-navy); font-family: "Montserrat", Arial, sans-serif; font-size: 18px; font-weight: 600; }
.process-grid p { margin: 0; color: #748591; font-size: 12px; line-height: 1.75; }

.management-standard { position: relative; overflow: hidden; background: #292d31; color: #fff; padding: 105px 0; }
.management-standard::before { position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(32, 168, 237, .18), transparent 30%), linear-gradient(110deg, transparent 55%, rgba(255, 255, 255, .025) 55%); content: ""; }
.standard-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.standard-copy h2 { color: #fff; }
.standard-copy > p { margin-bottom: 30px; color: rgba(255, 255, 255, .84); }
.standard-pillars { display: grid; grid-template-columns: 1fr 1fr; }
.standard-pillars article { min-height: 210px; border-right: 1px solid rgba(255, 255, 255, .13); border-bottom: 1px solid rgba(255, 255, 255, .13); padding: 28px; }
.standard-pillars article:nth-child(2n) { border-right: 0; }
.standard-pillars article:nth-last-child(-n+2) { border-bottom: 0; }
.standard-pillars span { color: #7fd0f4; font-size: 10px; font-weight: 800; }
.standard-pillars h3 { margin: 45px 0 8px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 19px; font-weight: 600; }
.standard-pillars p { margin: 0; color: rgba(255, 255, 255, .82); font-size: 12px; }

.regions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.region-map { position: relative; min-height: 470px; overflow: hidden; background: linear-gradient(145deg, #edf7fc, #f8fbfd); }
.region-map::before { position: absolute; inset: 0; background-image: radial-gradient(#9fc9dc 1px, transparent 1px); background-size: 23px 23px; content: ""; opacity: .36; }
.region-map > strong { position: absolute; right: 30px; bottom: -35px; color: rgba(0, 112, 216, .08); font-family: "Montserrat", Arial, sans-serif; font-size: 190px; font-weight: 600; line-height: 1; }
.map-orbit { position: absolute; border: 1px solid rgba(8, 137, 212, .18); border-radius: 50%; }
.orbit-one { width: 380px; height: 380px; top: 45px; left: 50px; }.orbit-two { width: 260px; height: 260px; top: 105px; left: 110px; }.orbit-three { width: 130px; height: 130px; top: 170px; left: 175px; }
.map-point { position: absolute; z-index: 2; display: flex; align-items: center; gap: 8px; background: #fff; box-shadow: 0 12px 32px rgba(7, 53, 84, .12); padding: 9px 12px; color: var(--premium-navy); font-size: 10px; font-weight: 800; }
.map-point i { width: 8px; height: 8px; border: 2px solid #fff; border-radius: 50%; background: var(--premium-blue); box-shadow: 0 0 0 4px rgba(8, 137, 212, .16); }
.point-one { top: 48%; left: 38%; }.point-two { top: 24%; left: 12%; }.point-three { right: 5%; bottom: 18%; }
.region-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0 30px; }
.region-tags span { border: 1px solid #d9e7ee; background: #f8fbfd; padding: 8px 12px; color: #526d7e; font-size: 10px; font-weight: 800; text-transform: uppercase; }

.faq-section { background: #f5f8fa; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 140px; }
.faq-intro > p { color: #6d7f8c; }
.faq-contact { display: flex; flex-direction: column; margin-top: 35px; border-left: 2px solid var(--premium-blue); padding-left: 16px; }
.faq-contact small { color: #7c8c97; font-size: 10px; text-transform: uppercase; }
.faq-contact a { color: var(--premium-blue); font-size: 13px; font-weight: 800; }
.faq-list { border-top: 1px solid #d5e1e8; }
.faq-item { border-bottom: 1px solid #d5e1e8; }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; background: transparent; padding: 24px 0; color: var(--premium-navy); cursor: pointer; font: inherit; font-family: "Montserrat", Arial, sans-serif; font-size: 16px; font-weight: 600; text-align: left; }
.faq-item button span { width: 31px; height: 31px; flex: 0 0 31px; display: grid; place-items: center; border: 1px solid #c9dbe5; border-radius: 50%; color: var(--premium-blue); font-family: "Open Sans", Arial, sans-serif; font-size: 17px; }
.faq-answer { padding: 0 60px 22px 0; }
.faq-answer p { margin: 0; color: #6b7d89; font-size: 13px; line-height: 1.8; }

.proposal-section { position: relative; overflow: hidden; color: #fff; padding: 108px 0; }
.proposal-bg { position: absolute; inset: 0; background: var(--home-final-hero-overlay), var(--home-final-hero-vignette), url('../img/home-hero-slide-architecture-v1.webp') center / cover no-repeat; }
.proposal-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.proposal-copy h2 { color: #fff; }
.proposal-copy > p { color: rgba(255, 255, 255, .84); font-size: 16px; }
.proposal-contact { display: grid; gap: 13px; margin-top: 34px; }
.proposal-contact a { display: flex; flex-direction: column; border-left: 2px solid #54c5f7; padding-left: 15px; }
.proposal-contact small { color: rgba(255, 255, 255, .5); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.proposal-contact strong { color: #fff; font-size: 13px; }
.proposal-form { position: relative; background: #fff; box-shadow: 0 30px 80px rgba(0, 0, 0, .24); padding: 36px; color: var(--premium-ink); }
.form-title { display: flex; flex-direction: column; margin-bottom: 17px; }
.form-title small { color: var(--premium-blue); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.form-title strong { color: var(--premium-navy); font-family: "Montserrat", Arial, sans-serif; font-size: 24px; font-weight: 600; }
.proposal-form label { display: flex; flex-direction: column; gap: 6px; margin-top: 13px; color: #40596a; font-size: 10px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.proposal-form input,
.proposal-form textarea { width: 100%; border: 0; border-bottom: 1px solid #cbd9e1; border-radius: 0; background: transparent; padding: 9px 2px; color: var(--premium-ink); font: inherit; font-size: 13px; text-transform: none; transition: border-color .2s ease; }
.proposal-form input:focus,
.proposal-form textarea:focus { border-color: var(--premium-blue); outline: none; }
.proposal-form textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.proposal-form .form-consent { flex-direction: row; align-items: flex-start; gap: 9px; margin: 18px 0; color: #70818d; font-size: 9px; font-weight: 600; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.form-consent input { width: auto; margin-top: 3px; }
.form-consent a { color: var(--premium-blue); text-decoration: underline; }
.button-submit { width: 100%; border: 0; cursor: pointer; font: inherit; font-size: 12px; }
.honeypot { position: absolute; left: -9999px; }

.contact-ribbon { position: relative; overflow: hidden; border-top: 1px solid #cfe2ec; border-bottom: 1px solid #d6e6ed; background: linear-gradient(115deg, #fff 0%, #eaf6fb 58%, #dceef7 100%); box-shadow: inset 0 18px 40px -36px rgba(8, 48, 77, .28); }
.contact-ribbon::before { position: absolute; top: -180px; right: -110px; width: 420px; height: 250px; border: 1px solid rgba(0, 112, 216, .12); border-radius: 50%; box-shadow: 0 0 0 35px rgba(0, 112, 216, .035); content: ""; pointer-events: none; }
.contact-ribbon-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 1fr .48fr; align-items: stretch; }
.contact-ribbon-item { min-height: 132px; display: flex; align-items: center; gap: 18px; border-right: 1px solid #cfdee6; padding: 24px 34px; }
.contact-ribbon-item:first-child { padding-left: 0; }
.contact-ribbon-number { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border: 1px solid #a9cfdf; border-radius: 50%; color: var(--premium-blue); font-size: 9px; font-weight: 800; }
.contact-ribbon-item > div { display: flex; flex-direction: column; }
.contact-ribbon small { color: var(--premium-blue); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-ribbon strong { margin-top: 5px; color: var(--premium-navy); font-size: 12px; line-height: 1.5; }
.contact-ribbon-item > div > span { margin-top: 2px; color: #637987; font-size: 11px; }
.contact-ribbon-link { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-left: 30px; color: var(--premium-blue); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.contact-ribbon-link i { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid #a9cfdf; border-radius: 50%; font-style: normal; transition: background .2s ease, color .2s ease, transform .2s ease; }
.contact-ribbon-link:hover i { background: var(--premium-blue); color: #fff; transform: translateX(3px); }

.premium-footer { position: relative; isolation: isolate; overflow: hidden; background: radial-gradient(circle at 88% 12%, rgba(0, 112, 216, .11), transparent 27%), linear-gradient(135deg, #202428, #1d2429 58%, #182934); color: #cbd1d6; padding: 64px 0 25px; }
.premium-footer::before { position: absolute; z-index: -1; right: -280px; bottom: -340px; width: 720px; height: 520px; border: 1px solid rgba(83, 184, 232, .12); border-radius: 50%; box-shadow: 0 0 0 55px rgba(83, 184, 232, .025), 0 0 0 115px rgba(83, 184, 232, .015); content: ""; pointer-events: none; }
.premium-footer .container { position: relative; z-index: 1; }
.footer-lead { display: flex; align-items: center; justify-content: space-between; gap: 36px; border-bottom: 1px solid rgba(255, 255, 255, .12); padding-bottom: 38px; }
.footer-identity { display: flex; align-items: center; gap: 30px; }
.footer-logo { width: 235px; flex: 0 0 235px; display: block; }
.footer-logo img { width: 100%; display: block; filter: brightness(0) invert(1); opacity: .96; }
.footer-lead p { max-width: 290px; margin: 0; border-left: 1px solid rgba(255, 255, 255, .2); padding-left: 28px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 17px; font-weight: 500; line-height: 1.55; }
.footer-social { display: flex; align-items: center; gap: 20px; }
.footer-social span { color: rgba(255, 255, 255, .4); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-social a { border-bottom: 1px solid rgba(255, 255, 255, .18); padding: 6px 0; color: #fff; font-size: 11px; font-weight: 700; transition: color .2s ease, border-color .2s ease; }
.footer-social a:hover { border-color: var(--premium-blue-light); color: var(--premium-blue-light); }
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; padding: 46px 0 48px; }
.footer-columns h3 { margin: 0 0 15px; color: #fff; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-columns a { display: block; width: fit-content; margin: 8px 0; color: #98afbd; font-size: 11px; transition: color .2s ease, transform .2s ease; }
.footer-columns a:hover { color: #0070d8; }
.footer-columns a:hover { transform: translateX(3px); }
.footer-bottom-premium { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 24px; color: rgba(255, 255, 255, .43); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.home-page .privacy-banner { border-top: 3px solid var(--premium-blue); border-radius: 2px; }
.back-to-top { position: fixed; z-index: 70; right: 22px; bottom: 22px; width: 45px; height: 45px; display: grid; place-items: center; border: 0; background: var(--premium-blue); color: #fff; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2, .65, .3, 1); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1160px) {
  .home-page .container { width: min(var(--max), calc(100% - 36px)); }
  .home-page .header-row { gap: 15px; }
  .home-page .logo img { width: 205px; transform: translateX(-20px) scale(1.06); }
  .corporate-nav > a,
  .corporate-nav .nav-trigger { padding: 12px 7px; font-size: 10px; letter-spacing: .06em; }
  .corporate-nav > .nav-cta { padding: 13px 11px; }
  .corporate-hero-grid { gap: 45px; }
  .about-premium-grid,
  .technology-grid,
  .proposal-grid { gap: 55px; }
  .numbers-grid { grid-template-columns: 1.15fr repeat(4, .7fr); }
  .number-item { padding: 18px; }
}

@media (max-width: 980px) {
  .home-page .topbar-contact { display: none; }
  .home-page .topbar { top: 86px; }
  .home-page .topbar-inner { justify-content: center; }
  .home-page .toplinks { flex: 0 1 auto; justify-content: center; }
  .home-page .header-row { min-height: 86px; }
  .home-page .logo img { width: 180px; transform: translateX(-16px); }
  .home-page .menu-btn { display: inline-flex; align-items: center; gap: 9px; }
  .menu-lines { position: relative; width: 18px; height: 12px; border-top: 2px solid currentColor; border-bottom: 2px solid currentColor; }
  .menu-lines::after { position: absolute; top: 4px; right: 0; left: 0; border-top: 2px solid currentColor; content: ""; }
  .corporate-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid #e4edf2;
    background: #fff;
    box-shadow: 0 20px 45px rgba(7, 44, 70, .14);
    padding: 14px 24px 22px;
  }
  .corporate-nav.open { display: flex; }
  .corporate-nav > a,
  .corporate-nav .nav-trigger { width: 100%; display: flex; justify-content: space-between; border-bottom: 1px solid #edf2f5; padding: 13px 0; text-align: left; }
  .corporate-nav > .nav-cta { width: auto; justify-content: center; margin: 14px 0 0; border-bottom: 0; color: #fff; padding: 14px; }
  .nav-dropdown,
  .nav-mega { position: static; display: none; width: 100%; grid-template-columns: 1fr 1fr; border: 0; box-shadow: none; padding: 4px 0 12px; opacity: 1; visibility: visible; transform: none; }
  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown { display: none; transform: none; }
  .nav-group.open .nav-dropdown,
  .nav-group.open:hover .nav-dropdown,
  .nav-group.open:focus-within .nav-dropdown { display: grid; transform: none; }
  .nav-dropdown a { padding: 10px 12px; }
  .corporate-hero { min-height: auto; }
  .corporate-hero-grid { grid-template-columns: 1fr; gap: 45px; padding-top: 85px; padding-bottom: 100px; }
  .corporate-hero-copy { max-width: 750px; }
  .hero-command { width: min(540px, 100%); }
  .quick-access-grid { grid-template-columns: 1fr 1fr; }
  .quick-label { grid-column: span 2; min-height: 86px; }
  .about-premium-grid,
  .technology-grid,
  .standard-grid,
  .regions-grid,
  .faq-grid,
  .proposal-grid { grid-template-columns: 1fr; }
  .about-premium-grid { gap: 75px; }
  .about-visual { width: min(720px, calc(100% - 30px)); }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .numbers-intro { grid-column: 1 / -1; padding: 0 0 35px; }
  .number-item:nth-child(2),
  .number-item:nth-child(4) { border-left: 0; }
  .section-heading-split { grid-template-columns: 1fr; gap: 24px; }
  .service-bento { grid-template-columns: 1fr 1fr; }
  .service-featured { grid-column: span 2; }
  .technology-grid { gap: 65px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 45px 0; }
  .process-grid::before { display: none; }
  .faq-intro { position: static; }
  .proposal-copy { max-width: 720px; }
  .contact-ribbon-grid { grid-template-columns: 1fr 1fr; }
  .contact-ribbon-item:nth-child(2) { border-right: 0; }
  .contact-ribbon-link { min-height: 76px; grid-column: 1 / -1; border-top: 1px solid #cfdee6; padding-left: 0; }
}

@media (max-width: 640px) {
  .home-page .container { width: min(var(--max), calc(100% - 28px)); }
  .home-page .topbar { top: 82px; min-height: 66px; }
  .home-page .topbar-inner { min-height: 66px; }
  .home-page .toplinks a { display: none; }
  .home-page .toplinks a:first-child { display: inline-flex; }
  .home-page .toplinks a.topbar-app-card:first-child {
    width: min(100%, 320px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    min-width: 0;
    padding: 7px 8px 7px 13px;
  }
  .topbar-app-qr { width: 48px; height: 48px; }
  .topbar-app-copy strong { font-size: 12px; }
  .topbar-app-copy small { font-size: 10px; }
  .home-page .header-row { min-height: 82px; }
  .home-page .logo img { width: 155px; max-height: 70px; transform: translateX(-13px); }
  .home-page .menu-btn { border: 0; padding: 9px 0; }
  .corporate-nav { padding-right: 18px; padding-left: 18px; }
  .nav-dropdown,
  .nav-mega { grid-template-columns: 1fr; }
  .corporate-hero-grid { padding-top: 65px; padding-bottom: 85px; }
  .corporate-hero h1 { font-size: clamp(35px, 9.5vw, 44px); }
  .corporate-hero-copy > p { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-assurances { flex-direction: column; gap: 7px; }
  .hero-command { display: none; }
  .scroll-cue { display: none; }
  .quick-access-grid { grid-template-columns: 1fr; }
  .quick-label { grid-column: auto; }
  .quick-label,
  .quick-access-grid > a { min-height: 90px; border-right: 0; border-bottom: 1px solid #e6edf2; }
  .trust-track { min-height: 48px; }
  .premium-section { padding: 76px 0; }
  .about-visual { width: calc(100% - 15px); min-height: 430px; }
  .about-visual img { height: 430px; }
  .experience-card { right: -15px; bottom: 24px; width: 145px; min-height: 135px; padding: 20px; }
  .experience-card strong { font-size: 35px; }
  .visual-caption { display: none; }
  .about-copy h2,
  .section-heading h2,
  .technology-copy h2,
  .standard-copy h2,
  .regions-copy h2,
  .faq-intro h2,
  .proposal-copy h2 { font-size: 34px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .number-item { min-height: 135px; }
  .number-item strong { font-size: 34px; }
  .service-bento { grid-template-columns: 1fr; }
  .service-featured { grid-column: auto; }
  .service-premium-card { min-height: 300px; }
  .service-featured h3 { font-size: 23px; }
  .technology-visual { padding-left: 15px; }
  .technology-visual img { height: 400px; }
  .data-card-top { right: 12px; }
  .process-grid { grid-template-columns: 1fr; gap: 35px; }
  .process-grid article { padding: 0 15px; }
  .standard-pillars { grid-template-columns: 1fr; }
  .standard-pillars article,
  .standard-pillars article:nth-child(2n),
  .standard-pillars article:nth-last-child(-n+2) { min-height: 175px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .13); padding: 24px 0; }
  .standard-pillars article:last-child { border-bottom: 0; }
  .standard-pillars h3 { margin-top: 28px; }
  .region-map { min-height: 380px; }
  .orbit-one { width: 320px; height: 320px; left: 10px; }.orbit-two { width: 230px; height: 230px; top: 85px; left: 55px; }.orbit-three { width: 120px; height: 120px; top: 140px; left: 110px; }
  .point-two { left: 4%; }.point-three { right: 2%; }
  .faq-answer { padding-right: 10px; }
  .proposal-section { padding: 76px 0; }
  .proposal-grid { gap: 45px; }
  .proposal-form { padding: 25px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .proposal-contact strong { font-size: 11px; overflow-wrap: anywhere; }
  .contact-ribbon-grid { grid-template-columns: 1fr; }
  .contact-ribbon-item,
  .contact-ribbon-item:first-child,
  .contact-ribbon-item:nth-child(2) { min-height: 112px; border-right: 0; border-bottom: 1px solid #cfdee6; padding: 22px 0; }
  .contact-ribbon-number { width: 34px; height: 34px; flex-basis: 34px; }
  .contact-ribbon-link { min-height: 74px; grid-column: auto; border-top: 0; padding-left: 0; }
  .footer-lead,
  .footer-bottom-premium { align-items: flex-start; flex-direction: column; }
  .footer-identity { align-items: flex-start; flex-direction: column; gap: 20px; }
  .footer-logo { width: 225px; flex-basis: auto; }
  .footer-lead p { max-width: 340px; border-top: 1px solid rgba(255, 255, 255, .16); border-left: 0; padding-top: 20px; padding-left: 0; }
  .footer-social { flex-wrap: wrap; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .home-page .privacy-banner { right: 12px; left: 12px; bottom: 12px; }
  .back-to-top { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track,
  .home-page .hero-media,
  .home-page .hero-slide,
  .scroll-cue span::after { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .home-page .hero-slide { transform: none !important; transition: none; }
  .hero-media { transform: none !important; }
  html { scroll-behavior: auto; }
}

.privacy-page { background: #f5f8fa; }
.privacy-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
  background: #162b3b;
  color: #fff;
  padding: 76px 0 82px;
}
.privacy-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}
.privacy-hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 28, 42, .94) 0%, rgba(13, 46, 68, .82) 43%, rgba(13, 61, 91, .52) 72%, rgba(13, 61, 91, .28) 100%), linear-gradient(0deg, rgba(5, 20, 31, .52), transparent 58%);
}
.privacy-hero::after {
  position: absolute;
  z-index: -1;
  right: -130px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .018);
  content: "";
}
.privacy-hero .container { position: relative; z-index: 1; }
.privacy-breadcrumb { display: flex; gap: 9px; margin-bottom: 22px; color: rgba(255, 255, 255, .62); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.privacy-breadcrumb a:hover { color: #fff; }
.privacy-hero h1 { max-width: 850px; margin: 0 0 17px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: clamp(38px, 5vw, 58px); font-weight: 600; letter-spacing: -.03em; line-height: 1.15; }
.privacy-hero p { max-width: 720px; margin: 0; color: rgba(255, 255, 255, .72); font-size: 17px; }
.privacy-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 30px; }
.privacy-hero-link { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: 11px; font-weight: 800; }
.privacy-hero-link span { color: var(--blue); font-size: 15px; }
.privacy-hero-assurances { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 32px; }
.privacy-hero-assurances span { position: relative; padding-left: 17px; color: rgba(255, 255, 255, .7); font-size: 10px; font-weight: 700; }
.privacy-hero-assurances span::before { position: absolute; left: 0; color: var(--blue); content: "✓"; }
.privacy-content-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 94% 8%, rgba(0, 112, 216, .07), transparent 38%),
    radial-gradient(ellipse at 4% 92%, rgba(86, 197, 248, .065), transparent 35%),
    linear-gradient(145deg, #f7fafc, #f3f7f9);
  padding: 95px 0 115px;
}
.privacy-content-section::before {
  position: absolute;
  top: -300px;
  right: -320px;
  width: 760px;
  height: 500px;
  border: 1px solid rgba(0, 112, 216, .075);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(0, 112, 216, .018), 0 0 0 104px rgba(0, 112, 216, .01);
  content: "";
  pointer-events: none;
  transform: rotate(-14deg);
}
.privacy-content-section > .container { position: relative; z-index: 1; }
.privacy-layout { max-width: 1040px; }
.privacy-intro { max-width: 880px; margin-bottom: 52px; }
.privacy-intro h2 { margin: 0 0 23px; color: var(--premium-navy); font-family: "Montserrat", Arial, sans-serif; font-size: clamp(32px, 4vw, 44px); font-weight: 600; letter-spacing: -.025em; line-height: 1.2; }
.privacy-intro p { color: #687b88; font-size: 14px; line-height: 1.85; }
.privacy-intro .privacy-lead { color: #304e62; font-size: 17px; }
.policy-list { display: grid; gap: 13px; }
.policy-item { overflow: hidden; border: 1px solid #dce6ec; background: #fff; box-shadow: 0 7px 25px rgba(8, 48, 77, .045); transition: border-color .2s ease, box-shadow .2s ease; }
.policy-item[open] { border-color: #b9dbe9; box-shadow: 0 17px 42px rgba(8, 48, 77, .09); }
.policy-item summary { display: grid; grid-template-columns: 1fr 42px; gap: 22px; align-items: center; min-height: 76px; padding: 15px 20px 15px 27px; color: var(--premium-navy); cursor: pointer; font-family: "Montserrat", Arial, sans-serif; font-size: 16px; font-weight: 600; line-height: 1.45; list-style: none; }
.policy-item summary::-webkit-details-marker { display: none; }
.policy-item summary:hover { color: var(--premium-blue); }
.policy-toggle { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #c5dce7; border-radius: 50%; color: var(--premium-blue); font-style: normal; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.policy-toggle::before { content: "+"; font-family: "Open Sans", Arial, sans-serif; font-size: 22px; font-weight: 400; line-height: 1; }
.policy-item[open] .policy-toggle { border-color: var(--premium-blue); background: var(--premium-blue); color: #fff; transform: rotate(180deg); }
.policy-item[open] .policy-toggle::before { content: "−"; }
.policy-body { border-top: 1px solid #e3ebef; padding: 28px 70px 34px 28px; color: #627581; }
.policy-body p { margin: 0 0 17px; font-size: 13px; line-height: 1.85; }
.policy-body p:last-child { margin-bottom: 0; }
.policy-body h3 { margin: 26px 0 11px; color: var(--premium-navy); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.policy-body ul { margin: 10px 0 20px; padding-left: 22px; list-style: circle; }
.policy-body li { margin: 9px 0; padding-left: 0; font-size: 13px; line-height: 1.75; }
.policy-body li::marker { color: var(--premium-blue); font-size: 1.45em; }
.policy-body strong { color: #29485c; }
.policy-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 25px; }
.policy-contact a { display: flex; flex-direction: column; border-left: 3px solid var(--premium-blue); background: #f2f8fb; padding: 15px 17px; }
.policy-contact small { color: #7a8d99; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.policy-contact strong { margin-top: 3px; color: var(--premium-navy); font-size: 12px; overflow-wrap: anywhere; }
.dpo-card { display: flex; align-items: center; gap: 20px; margin-top: 20px; background: #f1f8fb; padding: 21px; }
.dpo-card > span { width: 57px; height: 57px; flex: 0 0 57px; display: grid; place-items: center; border-radius: 50%; background: var(--premium-navy); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.dpo-card > div { display: flex; flex-direction: column; }
.dpo-card strong { margin-bottom: 4px; color: var(--premium-navy); font-family: "Montserrat", Arial, sans-serif; font-size: 16px; font-weight: 600; }
.dpo-card a { color: var(--premium-blue); font-size: 12px; }

@media (max-width: 640px) {
  .privacy-hero { padding: 55px 0 61px; }
  .privacy-hero h1 { font-size: 37px; }
  .privacy-content-section { padding: 68px 0 80px; }
  .privacy-intro { margin-bottom: 38px; }
  .privacy-intro .privacy-lead { font-size: 15px; }
  .policy-item summary { grid-template-columns: 1fr 36px; gap: 12px; min-height: 70px; padding: 14px 14px 14px 18px; font-size: 15px; }
  .policy-toggle { width: 34px; height: 34px; }
  .policy-body { padding: 23px 20px 28px; }
  .policy-contact { grid-template-columns: 1fr; }
  .dpo-card { align-items: flex-start; }
}

/* Camadas visuais ampliadas para superfícies claras */
.main-header {
  isolation: isolate;
  overflow: visible;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(0, 112, 216, .13), transparent 38%),
    linear-gradient(118deg, rgba(255, 255, 255, .98), rgba(238, 248, 253, .96));
  box-shadow: 0 12px 34px rgba(8, 48, 77, .08);
}
.home-page .main-header {
  background: rgba(255, 255, 255, .76);
  box-shadow: none;
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
}
.main-header::after {
  position: absolute;
  z-index: 0;
  top: -225px;
  right: -90px;
  width: 540px;
  height: 320px;
  border: 1px solid rgba(0, 112, 216, .17);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(0, 112, 216, .045), 0 0 0 72px rgba(0, 112, 216, .025);
  content: "";
  pointer-events: none;
  transform: rotate(-8deg);
}
.main-header .header-row { position: relative; z-index: 1; }
.home-page .main-header .nav-dropdown { z-index: 110; }

.unified-main-header,
.unified-topbar {
  --premium-blue: #0070d8;
  --premium-blue-light: #168bea;
  --premium-navy: #484848;
  --premium-ink: #3d4247;
}
.unified-main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .76);
  box-shadow: none;
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
  transition: box-shadow .25s ease, background .25s ease;
}
.unified-main-header.is-scrolled { background: rgba(255, 255, 255, .76); box-shadow: 0 12px 35px rgba(6, 44, 76, .14); }
.unified-main-header .container,
.unified-topbar .container { width: min(1200px, calc(100% - 48px)); }
.unified-main-header .header-row { min-height: 178px; padding: 8px 0; gap: 42px; }
.unified-main-header .logo { width: 280px; flex: 0 0 280px; }
.unified-main-header .logo img { width: 280px; max-height: 150px; transform: translateX(-30px) scale(1.12); transform-origin: left center; }
.unified-main-header .nav-dropdown { z-index: 110; }
.unified-topbar {
  position: sticky;
  top: 178px;
  z-index: 95;
  min-height: 42px;
  background: #0070d8;
  box-shadow: 0 8px 24px rgba(7, 46, 74, .13);
}
.unified-topbar .topbar-inner { min-height: 42px; justify-content: space-between; gap: 36px; }
.unified-topbar .toplinks { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: 22px; }

@media (max-width: 1160px) {
  .unified-main-header .container,
  .unified-topbar .container { width: min(1200px, calc(100% - 36px)); }
  .unified-main-header .header-row { gap: 15px; }
  .unified-main-header .logo { width: 205px; flex-basis: 205px; }
  .unified-main-header .logo img { width: 205px; transform: translateX(-20px) scale(1.06); }
}

@media (max-width: 980px) {
  .unified-topbar { top: 86px; }
  .unified-topbar .topbar-contact { display: none; }
  .unified-topbar .topbar-inner { justify-content: center; }
  .unified-topbar .toplinks { justify-content: center; }
  .unified-main-header .header-row { min-height: 86px; }
  .unified-main-header .logo { width: 180px; flex-basis: 180px; }
  .unified-main-header .logo img { width: 180px; transform: translateX(-16px); }
  .unified-main-header .menu-btn { position: absolute; z-index: 2; top: 50%; right: 0; width: 76px; display: inline-flex; align-items: center; justify-content: flex-end; gap: 9px; transform: translateY(-50%); }
}

@media (max-width: 640px) {
  .unified-main-header .container,
  .unified-topbar .container { width: min(1200px, calc(100% - 28px)); }
  .unified-topbar { top: 82px; }
  .unified-topbar .toplinks a { display: none; }
  .unified-topbar .toplinks a:first-child { display: inline-flex; }
  .unified-topbar .toplinks { width: 100%; flex: 0 1 auto; justify-content: center; }
  .unified-main-header .header-row { min-height: 82px; }
  .unified-main-header .logo { width: 155px; flex-basis: 155px; }
  .unified-main-header .logo img { width: 155px; max-height: 70px; transform: translateX(-13px); }
  .unified-main-header .menu-btn { border: 0; padding: 9px 0; }
}

.card,
.feature-box,
.stat,
.info-strip,
.form,
.tablelike div {
  background: linear-gradient(145deg, #fff 0%, #fff 54%, #edf7fc 100%);
  box-shadow: 0 16px 42px rgba(13, 58, 88, .1);
}
.card { border-color: #d7e5ed; }
.form { position: relative; box-shadow: 0 24px 58px rgba(10, 54, 84, .14); }
.feature-box { box-shadow: 0 24px 62px rgba(10, 54, 84, .14); }

.quick-access-grid > a { background: linear-gradient(135deg, rgba(255, 255, 255, .98), #eef8fd); }
.quick-access-grid > a:nth-child(odd) { background: linear-gradient(145deg, #fff, #f5fbfe); }

.services-premium,
.process-section,
.faq-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.services-premium {
  background:
    radial-gradient(ellipse at 92% 8%, rgba(0, 112, 216, .13), transparent 40%),
    linear-gradient(150deg, #edf6fa, #f8fbfd 48%, #e5f2f8);
}
.process-section {
  background:
    radial-gradient(ellipse at 8% 86%, rgba(0, 112, 216, .15), transparent 40%),
    linear-gradient(145deg, #f8fbfd, #e9f5fa);
}
.faq-section {
  background:
    radial-gradient(ellipse at 90% 15%, rgba(0, 112, 216, .14), transparent 42%),
    linear-gradient(145deg, #f6fafc, #e8f4f9);
}
.services-premium > .container,
.process-section > .container,
.faq-section > .container { position: relative; z-index: 1; }
.services-premium::before,
.process-section::after,
.faq-section::before {
  position: absolute;
  z-index: 0;
  width: 760px;
  height: 430px;
  border: 1px solid rgba(0, 112, 216, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(0, 112, 216, .045), 0 0 0 108px rgba(0, 112, 216, .025);
  content: "";
  pointer-events: none;
}
.services-premium::before { top: -245px; left: -255px; transform: rotate(13deg); }
.process-section::after { right: -255px; bottom: -235px; transform: rotate(-14deg); }
.faq-section::before { top: -240px; right: -260px; transform: rotate(-12deg); }

.service-premium-card:not(.service-featured):not(.service-accent) {
  background: linear-gradient(145deg, #fff 0%, #fff 58%, #e8f5fb 100%);
  box-shadow: 0 14px 35px rgba(8, 48, 77, .075);
}
.service-premium-card:not(.service-featured):not(.service-accent):hover {
  border-color: #82b8d0;
  background: linear-gradient(145deg, #f4fbfe 0%, #eaf6fa 58%, #d9edf5 100%);
  box-shadow: 0 25px 60px rgba(9, 51, 80, .16), inset 0 0 0 1px rgba(0, 112, 216, .12);
}
.service-premium-card { --card-grid-color: rgba(0, 112, 216, .16); }
.service-featured,
.service-accent { --card-grid-color: rgba(255, 255, 255, .17); }
.service-premium-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 72px;
  height: 72px;
  background-image:
    linear-gradient(var(--card-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--card-grid-color) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: .72;
  pointer-events: none;
  transform: translate(5px, -5px);
  transition: opacity .25s ease, transform .25s ease;
}
.service-premium-card:hover::after { opacity: 1; transform: translate(0, 0); }
.service-premium-card > * { position: relative; z-index: 1; }
.proposal-form { background: linear-gradient(145deg, #fff 0%, #fff 56%, #e9f6fb 100%); }
.policy-item { background: linear-gradient(145deg, #fff 0%, #fff 66%, #edf7fb 100%); box-shadow: 0 12px 32px rgba(8, 48, 77, .08); }

@media (max-width: 640px) {
  .section::before { top: -290px; right: -350px; }
  .section.alt::before { right: auto; left: -350px; }
  .main-header::after { top: -245px; right: -265px; }
  .about-premium::before,
  .regions-section::before { right: -430px; }
  .technology-section::before { left: -430px; }
  .services-premium::before { left: -430px; }
  .process-section::after,
  .faq-section::before { right: -430px; }
}

.tbs-partner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 72px 0 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(181, 151, 79, .22), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(0, 112, 216, .2), transparent 34%),
    linear-gradient(118deg, #25292d 0%, #18374a 58%, #0b4c73 100%);
  box-shadow: 0 -24px 60px rgba(8, 48, 77, .13);
  color: #fff;
  padding: 66px 0;
}
.tbs-partner::before {
  position: absolute;
  top: -280px;
  right: -180px;
  width: 650px;
  height: 430px;
  border: 1px solid rgba(201, 173, 101, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(201, 173, 101, .055), 0 0 0 92px rgba(201, 173, 101, .028);
  content: "";
  pointer-events: none;
  transform: rotate(-12deg);
}
.tbs-partner::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b5974f 22%, #d7c184 52%, transparent 88%);
  content: "";
}
.tbs-partner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 78px;
  align-items: center;
}
.tbs-brand {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(213, 190, 132, .32);
  padding-right: 68px;
}
.tbs-brand > span,
.tbs-kicker {
  color: #d3b96f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.tbs-brand img {
  width: min(360px, 100%);
  height: auto;
  margin-top: 20px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .18));
}
.tbs-copy h3 {
  max-width: 690px;
  margin: 10px 0 17px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.2;
}
.tbs-copy p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.8;
}
.tbs-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  border: 1px solid rgba(211, 185, 111, .75);
  padding: 12px 17px;
  color: #e0ca8d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.tbs-copy > a:hover { background: #d3b96f; color: #20262a; transform: translateY(-2px); }

@media (max-width: 900px) {
  .tbs-partner-grid { grid-template-columns: 1fr; gap: 38px; }
  .tbs-brand { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(213, 190, 132, .28); padding: 0 0 35px; }
  .tbs-brand img { width: min(390px, 86%); }
}

@media (max-width: 640px) {
  .tbs-partner { margin-top: 54px; margin-bottom: 0; padding: 52px 0 58px; }
  .tbs-partner::before { top: -320px; right: -390px; }
  .tbs-partner-grid { gap: 31px; }
  .tbs-brand { padding-bottom: 29px; }
  .tbs-brand img { width: 100%; margin-top: 17px; }
  .tbs-copy h3 { font-size: 29px; }
  .tbs-copy p { font-size: 13px; }
  .tbs-copy > a { width: 100%; justify-content: center; }
}

.image-break {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #142d3d;
  color: #fff;
}
.image-break-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url('../img/home-hero-slide-lobby-v1.webp') center 54% / cover no-repeat;
  filter: brightness(1.04) contrast(.98) saturate(.86);
  transform: scale(1.015);
}
.image-break::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    var(--home-final-hero-overlay),
    var(--home-final-hero-vignette);
  content: "";
}
.image-break::after {
  position: absolute;
  right: -190px;
  bottom: -330px;
  width: 680px;
  height: 520px;
  border: 1px solid rgba(126, 210, 246, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(126, 210, 246, .055), 0 0 0 102px rgba(126, 210, 246, .028);
  content: "";
  pointer-events: none;
  transform: rotate(-12deg);
}
.image-break .container { position: relative; z-index: 1; }
.image-break-copy { max-width: 630px; padding: 88px 0; }
.image-break-copy h2 {
  margin: 14px 0 20px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 57px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.14;
}
.image-break-copy > p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 16px;
  line-height: 1.8;
}
.image-break-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 29px; }
.image-break-points span {
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(7, 38, 57, .28);
  backdrop-filter: blur(8px);
  padding: 9px 13px;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .image-break { min-height: 560px; }
  .image-break-media { background-position: 62% center; }
  .image-break::before {
    background:
      var(--home-final-hero-overlay),
      var(--home-final-hero-vignette);
  }
  .image-break::after { right: -460px; bottom: -355px; }
  .image-break-copy { padding: 72px 0; }
  .image-break-copy h2 { font-size: 35px; }
  .image-break-copy > p { font-size: 14px; }
  .image-break-points { gap: 7px; }
  .image-break-points span { padding: 8px 10px; font-size: 8px; }
}

/* Landing pages de campanha */
.campaign-page { background: #f4f8fa; }
.campaign-header { position: sticky; z-index: 120; top: 0; border-bottom: 1px solid rgba(7, 62, 99, .11); background: rgba(255, 255, 255, .92); box-shadow: 0 12px 34px rgba(8, 48, 77, .08); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.campaign-header-row { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.campaign-logo { width: 205px; display: block; }
.campaign-logo img { width: 100%; display: block; }
.campaign-header-actions { display: flex; align-items: center; gap: 24px; }
.campaign-phone { display: flex; flex-direction: column; color: var(--premium-navy); }
.campaign-phone small { color: #718492; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.campaign-phone strong { font-size: 14px; }

.campaign-hero { position: relative; min-height: 720px; display: flex; align-items: center; isolation: isolate; overflow: hidden; color: #fff; }
.campaign-hero-media { position: absolute; z-index: -3; inset: 0; background-position: center; background-size: cover; transform: scale(1.015); }
.campaign-hero--administracao .campaign-hero-media { background-image: url('../img/administracao-campanha.webp'); }
.campaign-hero--troca .campaign-hero-media { background-image: url('../img/troca-administradora.webp'); background-position: center 58%; }
.campaign-hero--implantacao .campaign-hero-media { background-image: url('../img/implantacao-campanha-ocidental-v2.png'); }
.campaign-hero::before { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(24, 29, 33, .94) 0%, rgba(22, 39, 52, .82) 48%, rgba(13, 51, 75, .48) 100%); content: ""; }
.campaign-hero::after { position: absolute; z-index: -1; right: -190px; bottom: -330px; width: 700px; height: 540px; border: 1px solid rgba(73, 185, 237, .2); border-radius: 50%; box-shadow: 0 0 0 58px rgba(73, 185, 237, .05), 0 0 0 118px rgba(73, 185, 237, .025); content: ""; }
.campaign-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .68fr); gap: 75px; align-items: center; padding-top: 70px; padding-bottom: 70px; }
.campaign-copy h1 { max-width: 760px; margin: 0 0 25px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: clamp(42px, 4.8vw, 64px); font-weight: 600; letter-spacing: -.04em; line-height: 1.06; }
.campaign-copy h1 em { color: #1fa9ed; font-style: normal; }
.campaign-copy > p { max-width: 680px; margin: 0; color: rgba(255, 255, 255, .8); font-size: 18px; line-height: 1.75; }
.campaign-list { display: grid; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.campaign-list li { color: rgba(255, 255, 255, .88); font-size: 13px; font-weight: 700; }
.campaign-list li::before { color: #27acec; content: "✓"; margin-right: 9px; }
.campaign-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 29px; }
.campaign-trust span { border: 1px solid rgba(255, 255, 255, .26); background: rgba(255, 255, 255, .06); padding: 8px 11px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.campaign-form { position: relative; border-top: 4px solid var(--premium-blue); background: linear-gradient(145deg, #fff, #f4fbfe); box-shadow: 0 28px 80px rgba(0, 0, 0, .28); padding: 34px; color: var(--premium-ink); }
.campaign-form-head { margin-bottom: 18px; }
.campaign-form-head small { color: var(--premium-blue); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.campaign-form-head strong { display: block; margin-top: 5px; color: var(--premium-navy); font-family: "Montserrat", Arial, sans-serif; font-size: 25px; font-weight: 600; }
.campaign-form label { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; color: #40596a; font-size: 10px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.campaign-form input { width: 100%; border: 1px solid #cbd9e1; border-radius: 2px; background: #fff; padding: 11px 12px; color: var(--premium-ink); font: inherit; font-size: 13px; text-transform: none; }
.campaign-form input:focus { border-color: var(--premium-blue); outline: 2px solid rgba(0, 112, 216, .12); }
.campaign-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.campaign-form .form-consent { flex-direction: row; align-items: flex-start; gap: 9px; margin: 17px 0; color: #667987; font-size: 9px; font-weight: 600; letter-spacing: 0; line-height: 1.55; text-transform: none; }
.campaign-form .form-consent input { width: auto; margin-top: 3px; }
.campaign-form .form-consent a { color: var(--premium-blue); text-decoration: underline; }
.campaign-form .button { width: 100%; border: 0; cursor: pointer; font: inherit; }
.campaign-form-note { margin: 13px 0 0; color: #778995; font-size: 9px; text-align: center; }

.campaign-proof { position: relative; overflow: hidden; background: #292d31; color: #fff; }
.campaign-proof-grid { display: grid; grid-template-columns: 1.25fr repeat(4, .75fr); align-items: stretch; }
.campaign-proof-lead { display: flex; flex-direction: column; justify-content: center; padding: 40px 38px 40px 0; }
.campaign-proof-lead small { color: #24a9eb; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.campaign-proof-lead strong { margin-top: 8px; font-family: "Montserrat", Arial, sans-serif; font-size: 24px; font-weight: 600; line-height: 1.35; }
.campaign-proof-item { min-height: 145px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255, 255, 255, .13); padding: 24px; }
.campaign-proof-item strong { font-family: "Montserrat", Arial, sans-serif; font-size: 33px; font-weight: 600; }
.campaign-proof-item span { margin-top: 8px; color: rgba(255, 255, 255, .58); font-size: 9px; font-weight: 700; line-height: 1.5; text-transform: uppercase; }

.campaign-section { position: relative; overflow: hidden; background: linear-gradient(145deg, #fff, #edf7fb); padding: 96px 0; }
.campaign-section.alt { background: linear-gradient(145deg, #edf6fa, #f9fcfd); }
.campaign-heading { max-width: 790px; margin-bottom: 48px; }
.campaign-heading.center { margin-right: auto; margin-left: auto; text-align: center; }
.campaign-heading h2 { margin: 0 0 18px; color: var(--premium-navy); font-family: "Montserrat", Arial, sans-serif; font-size: clamp(34px, 4vw, 48px); font-weight: 600; letter-spacing: -.035em; line-height: 1.18; }
.campaign-heading p { margin: 0; color: #657987; font-size: 16px; line-height: 1.75; }
.campaign-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.campaign-benefit { position: relative; min-height: 265px; overflow: hidden; border: 1px solid #d7e5ed; background: linear-gradient(145deg, #fff 0%, #fff 58%, #e8f5fb 100%); box-shadow: 0 16px 40px rgba(8, 48, 77, .08); padding: 29px; }
.campaign-benefit > span { color: var(--premium-blue); font-size: 10px; font-weight: 800; }
.campaign-benefit h3 { margin: 55px 0 11px; color: var(--premium-navy); font-family: "Montserrat", Arial, sans-serif; font-size: 20px; font-weight: 600; }
.campaign-benefit p { margin: 0; color: #6c7e8a; font-size: 13px; line-height: 1.75; }
.campaign-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid #cadde7; border-bottom: 1px solid #cadde7; }
.campaign-step { min-height: 210px; border-right: 1px solid #cadde7; padding: 30px; }
.campaign-step:last-child { border-right: 0; }
.campaign-step > span { color: var(--premium-blue); font-size: 10px; font-weight: 800; }
.campaign-step h3 { margin: 43px 0 10px; color: var(--premium-navy); font-family: "Montserrat", Arial, sans-serif; font-size: 18px; font-weight: 600; }
.campaign-step p { margin: 0; color: #70818d; font-size: 12px; line-height: 1.75; }

.campaign-final { position: relative; overflow: hidden; background: linear-gradient(120deg, #23282c, #0d4c73); color: #fff; padding: 75px 0; }
.campaign-final-grid { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.campaign-final h2 { max-width: 760px; margin: 0; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: clamp(32px, 4vw, 45px); font-weight: 600; letter-spacing: -.03em; line-height: 1.2; }
.campaign-footer { background: #1d2327; color: #96aab6; padding: 38px 0; }
.campaign-footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.campaign-footer-logo { width: 190px; display: block; }
.campaign-footer-logo img { width: 100%; display: block; filter: brightness(0) invert(1); }
.campaign-footer-contact { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 25px; font-size: 11px; }
.campaign-footer-contact a { color: #fff; }
.campaign-footer-bottom { margin-top: 25px; border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 20px; font-size: 9px; text-transform: uppercase; }

@media (max-width: 980px) {
  .campaign-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .campaign-copy { max-width: 760px; }
  .campaign-form { width: min(620px, 100%); }
  .campaign-proof-grid { grid-template-columns: 1fr 1fr; }
  .campaign-proof-lead { grid-column: 1 / -1; padding-bottom: 25px; }
  .campaign-proof-item:nth-child(2),
  .campaign-proof-item:nth-child(4) { border-left: 0; }
  .campaign-benefit-grid { grid-template-columns: 1fr 1fr; }
  .campaign-process { grid-template-columns: 1fr 1fr; }
  .campaign-step:nth-child(2) { border-right: 0; }
  .campaign-step:nth-child(-n+2) { border-bottom: 1px solid #cadde7; }
}

@media (max-width: 640px) {
  .campaign-header-row { min-height: 82px; }
  .campaign-logo { width: 150px; }
  .campaign-phone { display: none; }
  .campaign-header-actions .button { min-height: 42px; padding: 9px 13px; font-size: 10px; }
  .campaign-hero { min-height: 0; }
  .campaign-hero-grid { gap: 38px; padding-top: 55px; padding-bottom: 60px; }
  .campaign-copy h1 { font-size: 38px; }
  .campaign-copy > p { font-size: 16px; }
  .campaign-form { padding: 27px 20px; }
  .campaign-form-row { grid-template-columns: 1fr; gap: 0; }
  .campaign-proof-grid { grid-template-columns: 1fr 1fr; }
  .campaign-proof-item { min-height: 125px; padding: 18px; }
  .campaign-proof-item strong { font-size: 28px; }
  .campaign-section { padding: 72px 0; }
  .campaign-benefit-grid,
  .campaign-process { grid-template-columns: 1fr; }
  .campaign-benefit { min-height: 230px; }
  .campaign-step,
  .campaign-step:nth-child(2) { min-height: 175px; border-right: 0; border-bottom: 1px solid #cadde7; padding: 25px 0; }
  .campaign-step:last-child { border-bottom: 0; }
  .campaign-step h3 { margin-top: 27px; }
  .campaign-final-grid,
  .campaign-footer-grid { align-items: flex-start; flex-direction: column; }
  .campaign-final-grid .button { width: 100%; }
  .campaign-footer-contact { justify-content: flex-start; flex-direction: column; gap: 8px; }
}

/* Seguro Conteúdo + Assistência 24h */
.insurance-page {
  --insurance-blue: #0783dc;
  --insurance-dark: #20262b;
  --insurance-line: #d4e4ed;
  --solution-cyan: #4fc2f3;
  --solution-blue: #0070d8;
}
.insurance-page .solution-hero {
  height: var(--global-hero-height);
  min-height: var(--global-hero-height);
}
.insurance-page .solution-hero .container {
  width: min(1080px, calc(100% - 40px));
}
.insurance-page .solution-hero > img { object-position: center; }
.insurance-hero { position: relative; isolation: isolate; min-height: 650px; display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 78% 30%, rgba(29, 157, 230, .28), transparent 26%), linear-gradient(118deg, #20262b 0%, #183c54 58%, #087bc5 100%); color: #fff; }
.insurance-hero::before { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(7, 21, 31, .35), transparent 60%), repeating-linear-gradient(90deg, transparent 0, transparent 119px, rgba(255, 255, 255, .025) 120px); content: ""; }
.insurance-orbit { position: absolute; z-index: -1; top: -250px; right: -170px; width: 720px; height: 720px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255, 255, 255, .035), 0 0 0 135px rgba(255, 255, 255, .02); }
.insurance-hero-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr); gap: 52px; align-items: center; padding-top: 95px; padding-bottom: 95px; }
.insurance-hero-copy { max-width: 750px; }
.insurance-hero h1 { margin: 23px 0 24px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: clamp(46px, 5.6vw, 75px); font-weight: 500; letter-spacing: -.055em; line-height: 1.05; }
.insurance-hero h1 strong { display: block; color: #39b4f0; font-weight: 600; }
.insurance-hero-copy > p { max-width: 670px; margin: 0; color: rgba(255, 255, 255, .76); font-size: 18px; line-height: 1.75; }
.insurance-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; margin-top: 34px; }
.insurance-text-link { border-bottom: 1px solid rgba(255, 255, 255, .42); color: #fff; padding: 7px 0; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.insurance-hero-highlights { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 34px; }
.insurance-hero-highlights span { border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .055); padding: 10px 13px; color: rgba(255, 255, 255, .68); font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.insurance-hero-highlights strong { color: #fff; }
.insurance-hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 34px; }
.insurance-hero-facts article:first-child { grid-column: 1 / -1; }
.insurance-hero-facts article { min-height: 118px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .06); padding: 18px; }
.insurance-hero-facts small { color: #58c3f5; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.insurance-hero-facts strong { color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 15px; font-weight: 600; line-height: 1.38; }
.insurance-hero-visual { position: relative; width: 100%; align-self: center; }
.insurance-hero-photo { position: relative; display: block; width: 100%; height: auto; aspect-ratio: 1774 / 887; border: 1px solid rgba(255, 255, 255, .16); object-fit: contain; object-position: center; box-shadow: 0 35px 90px rgba(0, 0, 0, .24); }
.insurance-hero-visual::after { position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, .16); background: linear-gradient(180deg, rgba(8, 26, 38, .02), rgba(8, 26, 38, .14)); content: ""; pointer-events: none; }

.insurance-pricing { position: relative; overflow: hidden; background: linear-gradient(145deg, #fff 0%, #eef8fc 100%); }
.insurance-pricing::after { position: absolute; top: -270px; right: -180px; width: 620px; height: 500px; border: 1px solid rgba(7, 131, 220, .14); border-radius: 50%; box-shadow: 0 0 0 55px rgba(7, 131, 220, .028), 0 0 0 105px rgba(7, 131, 220, .018); content: ""; pointer-events: none; }
.insurance-heading { position: relative; z-index: 1; max-width: 790px; margin-bottom: 46px; }
.insurance-heading h2 { margin: 18px 0 16px; color: var(--premium-navy); font-family: "Montserrat", Arial, sans-serif; font-size: clamp(35px, 4.4vw, 51px); font-weight: 600; letter-spacing: -.04em; line-height: 1.16; }
.insurance-heading p { margin: 0; color: #667b88; font-size: 16px; line-height: 1.75; }
.insurance-price-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.insurance-price-card { min-height: 310px; display: flex; flex-direction: column; border: 1px solid var(--insurance-line); background: rgba(255, 255, 255, .92); box-shadow: 0 20px 55px rgba(8, 48, 77, .09); padding: 29px; }
.insurance-price-card > span { color: var(--insurance-blue); font-size: 10px; font-weight: 800; }
.insurance-price-card h3 { margin: 58px 0 10px; color: var(--premium-navy); font-family: "Montserrat", Arial, sans-serif; font-size: 22px; font-weight: 600; }
.insurance-price-card p { min-height: 53px; margin: 0 0 28px; color: #71828d; font-size: 12px; line-height: 1.7; }
.insurance-price-card > strong { margin-top: auto; color: var(--insurance-blue); font-family: "Montserrat", Arial, sans-serif; font-size: 31px; font-weight: 600; }
.insurance-price-card > strong small { font-size: 13px; }
.insurance-price-card > strong em { color: #748793; font-family: "Open Sans", Arial, sans-serif; font-size: 10px; font-style: normal; font-weight: 700; text-transform: uppercase; }
.insurance-price-featured { border-color: var(--insurance-blue); background: linear-gradient(145deg, #fff, #e4f5fd); transform: translateY(-10px); }
.insurance-price-note { position: relative; z-index: 1; margin: 24px 0 0; color: #7b8d98; font-size: 10px; }

.insurance-fire-story { position: relative; isolation: isolate; min-height: 620px; display: flex; align-items: center; overflow: hidden; background: #101b25; color: #fff; }
.insurance-fire-story > img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.insurance-fire-overlay { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(7, 18, 28, .97) 0%, rgba(7, 18, 28, .88) 31%, rgba(7, 18, 28, .42) 58%, rgba(7, 18, 28, .08) 100%), linear-gradient(0deg, rgba(7, 18, 28, .42), transparent 45%); }
.insurance-fire-content { padding-top: 95px; padding-bottom: 95px; }
.insurance-fire-content > div { max-width: 590px; }
.insurance-fire-content h2 { margin: 21px 0 20px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: clamp(39px, 4.8vw, 59px); font-weight: 600; letter-spacing: -.045em; line-height: 1.12; }
.insurance-fire-content p { max-width: 540px; margin: 0 0 31px; color: rgba(255, 255, 255, .72); font-size: 16px; line-height: 1.8; }

.insurance-coverage { position: relative; overflow: hidden; background: linear-gradient(125deg, #22272b, #183d55); color: #fff; padding: 105px 0; }
.insurance-coverage::after { position: absolute; right: -250px; bottom: -350px; width: 760px; height: 620px; border: 1px solid rgba(64, 181, 239, .14); border-radius: 50%; box-shadow: 0 0 0 60px rgba(64, 181, 239, .025), 0 0 0 125px rgba(64, 181, 239, .015); content: ""; }
.insurance-coverage-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: start; }
.insurance-coverage-intro { position: sticky; top: 245px; }
.insurance-coverage-intro h2 { margin: 20px 0; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: clamp(34px, 4vw, 49px); font-weight: 600; letter-spacing: -.04em; line-height: 1.2; }
.insurance-coverage-intro p { margin: 0 0 31px; color: rgba(255, 255, 255, .65); font-size: 15px; line-height: 1.8; }
.insurance-risk-list { border-top: 1px solid rgba(255, 255, 255, .17); }
.insurance-risk-list details { border-bottom: 1px solid rgba(255, 255, 255, .17); }
.insurance-risk-list summary { display: flex; align-items: center; gap: 22px; padding: 24px 0; color: #fff; cursor: pointer; font-family: "Montserrat", Arial, sans-serif; font-size: 18px; font-weight: 600; list-style: none; }
.insurance-risk-list summary::-webkit-details-marker { display: none; }
.insurance-risk-list summary::after { margin-left: auto; color: #48bbf2; content: "+"; font-size: 24px; font-weight: 300; }
.insurance-risk-list details[open] summary::after { content: "−"; }
.insurance-risk-list summary span { color: #48bbf2; font-size: 9px; font-weight: 800; }
.insurance-risk-list details p { margin: -5px 0 27px 42px; color: rgba(255, 255, 255, .63); font-size: 13px; line-height: 1.8; }

.insurance-exclusions { background: linear-gradient(145deg, #f5fafc, #fff); }
.insurance-exclusions-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.insurance-exclusion-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; border-top: 1px solid #cbdde7; padding: 0; list-style: none; }
.insurance-exclusion-list li { min-height: 145px; display: flex; gap: 18px; border-right: 1px solid #cbdde7; border-bottom: 1px solid #cbdde7; padding: 25px; color: #5f737f; font-size: 13px; line-height: 1.7; }
.insurance-exclusion-list li:nth-child(even) { border-right: 0; }
.insurance-exclusion-list span { color: var(--insurance-blue); font-size: 9px; font-weight: 800; }

.insurance-assistance { position: relative; overflow: hidden; background: #fff; padding: 105px 0; }
.insurance-heading-centered { margin-right: auto; margin-left: auto; text-align: center; }
.insurance-assistance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.assistance-card { min-height: 320px; display: flex; flex-direction: column; border: 1px solid var(--insurance-line); background: linear-gradient(145deg, #fff 0%, #fff 52%, #edf8fc 100%); box-shadow: 0 17px 48px rgba(8, 48, 77, .08); padding: 27px; }
.assistance-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--insurance-blue); color: #fff; font-size: 9px; font-weight: 800; }
.assistance-card h3 { margin: 34px 0 11px; color: var(--premium-navy); font-family: "Montserrat", Arial, sans-serif; font-size: 20px; font-weight: 600; }
.assistance-card p { margin: 0 0 25px; color: #6e808b; font-size: 12px; line-height: 1.75; }
.assistance-card strong { margin-top: auto; color: var(--insurance-blue); font-size: 13px; }
.assistance-card small { margin-top: 7px; color: #82929b; font-size: 9px; line-height: 1.5; }
.insurance-assistance-note { max-width: 820px; margin: 25px auto 0; color: #7c8d96; font-size: 10px; line-height: 1.65; text-align: center; }

.insurance-documents { position: relative; overflow: hidden; background: linear-gradient(120deg, #087cd0, #07558e); color: #fff; padding: 82px 0; }
.insurance-documents-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.insurance-documents h2 { margin: 18px 0 16px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: clamp(32px, 3.8vw, 45px); font-weight: 600; letter-spacing: -.04em; line-height: 1.2; }
.insurance-documents p { margin: 0; color: rgba(255, 255, 255, .7); font-size: 14px; line-height: 1.75; }
.insurance-document-links { border-top: 1px solid rgba(255, 255, 255, .25); }
.insurance-document-links a { display: grid; grid-template-columns: 45px 1fr auto; gap: 18px; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, .25); padding: 22px 0; color: #fff; }
.insurance-document-links a > span { font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.insurance-document-links strong { font-family: "Montserrat", Arial, sans-serif; font-size: 14px; font-weight: 600; }
.insurance-document-links i { font-style: normal; font-size: 18px; }

.insurance-lead { position: relative; overflow: hidden; background: linear-gradient(120deg, #20262b, #163a51); color: #fff; padding: 100px 0; }
.insurance-lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.insurance-lead-copy h2 { margin: 20px 0; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: clamp(36px, 4.5vw, 53px); font-weight: 600; letter-spacing: -.045em; line-height: 1.16; }
.insurance-lead-copy > p { margin: 0; color: rgba(255, 255, 255, .66); font-size: 15px; line-height: 1.8; }
.insurance-contact { display: grid; gap: 14px; margin-top: 32px; }
.insurance-contact a { display: flex; flex-direction: column; }
.insurance-contact small { color: #4fc0f4; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.insurance-contact strong { margin-top: 3px; color: #fff; font-size: 13px; }
.insurance-form { box-shadow: 0 35px 90px rgba(0, 0, 0, .25); }

@media (max-width: 980px) {
  .insurance-hero-grid,
  .insurance-coverage-grid,
  .insurance-exclusions-grid,
  .insurance-documents-grid,
  .insurance-lead-grid { grid-template-columns: 1fr; gap: 55px; }
  .insurance-hero-grid { padding-top: 75px; padding-bottom: 80px; }
  .insurance-hero-visual { width: min(760px, 100%); }
  .insurance-hero-facts { grid-template-columns: 1fr 1fr; }
  .insurance-hero-facts article:first-child { grid-column: 1 / -1; }
  .insurance-price-grid { grid-template-columns: 1fr 1fr; }
  .insurance-price-card:last-child { grid-column: 1 / -1; }
  .insurance-price-featured { transform: none; }
  .insurance-coverage-intro { position: static; }
  .insurance-exclusions-grid { gap: 25px; }
  .insurance-assistance-grid { grid-template-columns: 1fr 1fr; }
  .insurance-documents-grid { gap: 40px; }
  .insurance-lead-copy { max-width: 760px; }
}

@media (max-width: 640px) {
  .insurance-hero { min-height: 0; }
  .insurance-hero-grid { gap: 38px; padding-top: 58px; padding-bottom: 65px; }
  .insurance-hero h1 { font-size: 40px; }
  .insurance-hero-copy > p { font-size: 16px; }
  .insurance-hero-actions { align-items: stretch; flex-direction: column; }
  .insurance-hero-actions .button { width: 100%; }
  .insurance-text-link { align-self: flex-start; }
  .insurance-hero-highlights,
  .insurance-hero-facts { grid-template-columns: 1fr; flex-direction: column; }
  .insurance-hero-facts article:first-child { grid-column: auto; }
  .insurance-hero-facts article { min-height: 0; gap: 12px; }
  .insurance-hero-visual { width: 100%; }
  .insurance-hero-photo { height: auto; aspect-ratio: 1774 / 887; position: relative; display: block; object-position: center; }
  .insurance-hero-visual::after { height: auto; bottom: 0; }
  .insurance-fire-story { min-height: 670px; align-items: flex-end; }
  .insurance-fire-story > img { object-position: 67% center; }
  .insurance-fire-overlay { background: linear-gradient(0deg, rgba(7, 18, 28, .98) 0%, rgba(7, 18, 28, .84) 48%, rgba(7, 18, 28, .18) 100%); }
  .insurance-fire-content { padding-top: 250px; padding-bottom: 62px; }
  .insurance-fire-content h2 { font-size: 37px; }
  .insurance-fire-content p { font-size: 15px; }
  .insurance-price-grid,
  .insurance-assistance-grid,
  .insurance-exclusion-list { grid-template-columns: 1fr; }
  .insurance-price-card,
  .assistance-card { min-height: 275px; }
  .insurance-price-card:last-child { grid-column: auto; }
  .insurance-price-card h3 { margin-top: 38px; }
  .insurance-coverage,
  .insurance-assistance,
  .insurance-lead { padding: 76px 0; }
  .insurance-risk-list details p { margin-left: 0; }
  .insurance-exclusion-list li { min-height: 0; border-right: 0; padding-right: 0; padding-left: 0; }
  .insurance-documents { padding: 68px 0; }
  .insurance-document-links a { grid-template-columns: 38px 1fr auto; gap: 11px; }
  .insurance-document-links strong { font-size: 12px; }
  .insurance-form { padding: 26px 20px; }
  .insurance-form .field-row { grid-template-columns: 1fr; gap: 0; }
}

.unified-main-header {
  top: 0;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(24, 67, 98, .12);
  box-shadow: 0 10px 35px rgba(11, 45, 70, .09);
}
.unified-main-header.is-scrolled { background: rgba(255, 255, 255, .88); }
.unified-main-header::after { display: none; content: none; }
.unified-main-header .container { width: min(1200px, calc(100% - 48px)); }
.header-composition {
  position: relative;
  z-index: 1;
  min-height: 152px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  grid-template-rows: 70px 82px;
}
.unified-main-header .header-composition > .logo {
  width: 250px;
  display: flex;
  grid-column: 1;
  grid-row: 1 / 3;
  align-items: center;
  align-self: stretch;
  border-right: 1px solid #e5ebef;
}
.unified-main-header .header-composition > .logo img {
  width: 245px;
  max-height: 128px;
  transform: translateX(-22px) scale(1.08);
  transform-origin: left center;
}
.header-composition .header-utility {
  min-width: 0;
  display: block;
  grid-column: 2;
  grid-row: 1;
  border: 0;
  border-bottom: 1px solid #e2e9ee;
  background: transparent;
}
.header-composition .online-services {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 150px repeat(3, minmax(130px, 1fr)) minmax(190px, 220px);
  margin: 0;
}
.header-services-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  font-family: "Montserrat", Arial, sans-serif;
}
.header-services-intro small {
  color: #0070d8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.header-services-intro strong {
  margin-top: 3px;
  color: #4b5359;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -.02em;
}
.header-composition .online-service-link {
  min-width: 0;
  min-height: 70px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border-left: 1px solid #e2e9ee;
  border-right: 0;
  padding: 0 16px;
  background: transparent;
  color: #4a545b;
  font-family: "Montserrat", Arial, sans-serif;
  white-space: normal;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.header-composition .online-service-link:last-of-type { border-right: 0; }
.header-composition .online-service-link::after { display: none; content: none; }
.online-service-number {
  color: #0070d8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
}
.online-service-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.online-service-copy strong {
  overflow: hidden;
  color: #4a4f53;
  font-size: 12px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.online-service-copy small {
  margin-top: 3px;
  overflow: hidden;
  color: #7b8a94;
  font-size: 9.5px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-composition .online-service-link:hover {
  box-shadow: inset 0 -2px rgba(0, 112, 216, .72);
  background: #eef8fc;
  color: #0070d8;
  transform: translateY(-1px);
}
.online-app-card {
  min-width: 0;
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  align-items: center;
  gap: 11px;
  border-left: 1px solid #e2e9ee;
  border-right: 1px solid #e2e9ee;
  padding: 7px 10px 7px 14px;
  color: var(--premium-navy);
  font-family: "Montserrat", Arial, sans-serif;
  text-decoration: none;
  transition: background .22s ease, box-shadow .22s ease, transform .22s ease;
}
.online-app-card::after { display: none; content: none; }
.online-app-card:hover,
.online-app-card:focus-visible {
  background: rgba(255, 255, 255, .62);
  box-shadow: inset 0 -2px rgba(0, 112, 216, .72);
  opacity: 1;
}
.online-app-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
  line-height: 1.15;
}
.online-app-copy strong {
  overflow: hidden;
  color: #0070d8;
  font-size: 14px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.online-app-copy small {
  overflow: hidden;
  color: #526676;
  font-size: 10.5px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.online-app-qr {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #fff;
  padding: 3px;
  box-shadow: 0 8px 22px rgba(7, 46, 74, .12);
}
.online-app-qr img { width: 100%; height: 100%; display: block; object-fit: contain; }
.header-composition > .header-row {
  min-width: 0;
  min-height: 82px;
  display: flex;
  grid-column: 2;
  grid-row: 2;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding: 0;
}
.header-composition .corporate-nav { justify-content: flex-end; }
.header-composition .nav-dropdown { top: calc(100% + 19px); }

@media (max-width: 1160px) {
  .unified-main-header .container { width: min(1200px, calc(100% - 36px)); }
  .header-composition { min-height: 140px; grid-template-columns: 210px minmax(0, 1fr); grid-template-rows: 64px 76px; }
  .unified-main-header .header-composition > .logo { width: 200px; }
  .unified-main-header .header-composition > .logo img { width: 205px; max-height: 112px; transform: translateX(-18px) scale(1.04); }
  .header-composition .online-services { grid-template-columns: 125px repeat(3, minmax(112px, 1fr)) minmax(170px, 205px); }
  .header-services-intro { padding: 0 13px; }
  .header-services-intro strong { font-size: 14px; }
  .header-composition .online-service-link { min-height: 64px; gap: 7px; padding: 0 10px; }
  .online-app-card { min-height: 64px; grid-template-columns: minmax(0, 1fr) 48px; gap: 9px; padding: 6px 8px 6px 11px; }
  .online-app-qr { width: 48px; height: 48px; }
  .online-app-copy strong { font-size: 12px; }
  .online-app-copy small { font-size: 9px; }
  .online-service-copy strong { font-size: 10.5px; }
  .online-service-copy small { font-size: 8.5px; }
  .header-composition > .header-row { min-height: 76px; }
}

@media (max-width: 980px) {
  .header-composition {
    min-height: 136px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 82px 54px;
  }
  .unified-main-header .header-composition > .logo {
    width: 180px;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    border-right: 0;
  }
  .unified-main-header .header-composition > .logo img { width: 180px; max-height: 76px; transform: translateX(-16px); }
  .header-composition .header-utility {
    grid-column: 1;
    grid-row: 2;
    border-top: 1px solid #e2e9ee;
    border-bottom: 0;
  }
  .header-composition .online-services { grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(130px, .9fr); }
  .header-services-intro { display: none; }
  .header-composition .online-service-link { min-height: 54px; justify-content: stretch; }
  .online-app-card { min-height: 54px; grid-template-columns: minmax(0, 1fr) 40px; padding: 5px 7px 5px 10px; }
  .online-app-qr { width: 40px; height: 40px; padding: 2px; }
  .online-app-copy strong { font-size: 10px; }
  .online-app-copy small { font-size: 8px; }
  .header-composition > .header-row {
    min-height: 82px;
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-end;
  }
  .header-composition .corporate-nav { top: calc(100% + 54px); }
  .header-composition .nav-dropdown { top: auto; }
}

@media (max-width: 640px) {
  .unified-main-header .container { width: min(1200px, calc(100% - 28px)); }
  .header-composition { min-height: 132px; grid-template-rows: 82px 50px; }
  .header-composition .online-service-link { min-height: 50px; gap: 5px; padding: 0 7px; text-align: left; }
  .header-composition .online-services { grid-template-columns: repeat(3, minmax(0, 1fr)) 56px; }
  .online-app-card { min-height: 50px; display: grid; grid-template-columns: 1fr; justify-items: center; padding: 4px; }
  .online-app-copy { display: none; }
  .online-app-qr { width: 42px; height: 42px; }
  .online-service-copy strong { font-size: 9px; white-space: normal; }
  .online-service-copy small { display: none; }
  .header-composition .corporate-nav { top: calc(100% + 50px); }
}

@media (max-width: 480px) {
  .online-service-number { display: none; }
  .header-composition .online-service-link { justify-items: center; text-align: center; }
  .online-service-copy strong { line-height: 1.25; text-align: center; }
}

.institutional-page {
  --institutional-blue: #0070d8;
  --institutional-navy: #292e33;
  --institutional-ink: #41484e;
  --institutional-muted: #687b88;
  --institutional-line: #d9e5eb;
  background: #fff;
}
.institutional-hero {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #15222d;
  color: #fff;
}
.institutional-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-hero > img { object-position: center 58%; }
.company-hero > img { object-position: center; }
.institutional-hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 28, 40, .94) 0%, rgba(10, 32, 48, .82) 42%, rgba(10, 32, 48, .3) 72%, rgba(10, 32, 48, .14) 100%), linear-gradient(0deg, rgba(9, 24, 35, .62), transparent 52%);
}
.institutional-hero-content { padding-top: 95px; padding-bottom: 90px; }
.institutional-hero-content > * { max-width: 800px; }
.institutional-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, .57);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.institutional-breadcrumb a:hover { color: #fff; }
.institutional-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4fc2f3;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.institutional-kicker i { width: 25px; height: 1px; display: block; background: currentColor; }
.institutional-kicker-dark { color: var(--institutional-blue); }
.institutional-kicker-light { color: #50c4f4; }
.institutional-hero h1 {
  margin: 22px 0 22px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(43px, 5.4vw, 70px);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1.08;
}
.institutional-hero p { max-width: 690px; margin: 0 0 32px; color: rgba(255, 255, 255, .74); font-size: 17px; line-height: 1.75; }
.institutional-section { position: relative; padding: 110px 0; }
.institutional-split { display: grid; grid-template-columns: 1.02fr .98fr; gap: 92px; align-items: center; }
.institutional-split-reverse { grid-template-columns: .93fr 1.07fr; }
.institutional-visual {
  position: relative;
  min-height: 570px;
  margin: 0;
  border: 1px solid var(--institutional-line);
  background: #edf4f7;
  box-shadow: 0 30px 80px rgba(8, 47, 75, .13);
}
.institutional-visual::before {
  position: absolute;
  z-index: 2;
  top: -18px;
  left: -18px;
  width: 105px;
  height: 105px;
  border-top: 1px solid rgba(0, 112, 216, .35);
  border-left: 1px solid rgba(0, 112, 216, .35);
  content: "";
  pointer-events: none;
}
.institutional-visual img { width: 100%; height: 570px; display: block; object-fit: cover; }
.institutional-visual figcaption {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: -28px;
  width: 205px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--institutional-blue);
  box-shadow: 0 22px 45px rgba(0, 87, 168, .24);
  padding: 25px;
  color: #fff;
}
.institutional-visual figcaption strong { font-family: "Montserrat", Arial, sans-serif; font-size: 27px; font-weight: 600; line-height: 1.1; }
.institutional-visual figcaption span { margin-top: 8px; font-size: 9px; font-weight: 800; line-height: 1.5; letter-spacing: .08em; text-transform: uppercase; }
.institutional-copy h2,
.institutional-heading h2,
.who-intro h2,
.company-operation h2,
.company-presence h2 {
  margin: 20px 0 22px;
  color: var(--institutional-navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(36px, 4.3vw, 53px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.15;
}
.institutional-copy > p { margin: 0 0 18px; color: var(--institutional-muted); font-size: 15px; line-height: 1.85; }
.institutional-copy blockquote {
  margin: 32px 0 0;
  border-left: 3px solid var(--institutional-blue);
  background: #f3f8fb;
  padding: 23px 27px;
  color: #4a5962;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 550;
  line-height: 1.65;
}
.story-timeline-section { overflow: hidden; background: linear-gradient(145deg, #f7fafc, #eaf4f8); }
.institutional-heading { max-width: 780px; margin-bottom: 55px; }
.institutional-heading > p { max-width: 650px; margin: 0; color: var(--institutional-muted); font-size: 16px; }
.institutional-heading-centered { margin-right: auto; margin-left: auto; text-align: center; }
.institutional-heading-centered .institutional-kicker { justify-content: center; }
.story-timeline { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #bfd3df; }
.story-timeline article { min-height: 275px; border-right: 1px solid #bfd3df; padding: 32px 35px 25px 0; }
.story-timeline article + article { padding-left: 35px; }
.story-timeline article:last-child { border-right: 0; }
.story-timeline article > span { color: var(--institutional-blue); font-size: 10px; font-weight: 800; }
.story-timeline small { display: block; margin: 45px 0 8px; color: #8497a2; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.story-timeline h3 { margin: 0 0 13px; color: var(--institutional-navy); font-family: "Montserrat", Arial, sans-serif; font-size: 21px; font-weight: 600; }
.story-timeline p { margin: 0; color: #6c7e89; font-size: 13px; line-height: 1.75; }
.institutional-numbers { background: linear-gradient(115deg, #252b30, #173a50); color: #fff; }
.institutional-number-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.institutional-number-grid > div { min-height: 175px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255, 255, 255, .14); padding: 28px 34px; }
.institutional-number-grid > div:last-child { border-right: 1px solid rgba(255, 255, 255, .14); }
.institutional-number-grid strong { font-family: "Montserrat", Arial, sans-serif; font-size: 40px; font-weight: 600; line-height: 1; }
.institutional-number-grid span { margin-top: 13px; color: rgba(255, 255, 255, .58); font-size: 9px; font-weight: 800; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.who-section { background: #252a2f; color: #fff; }
.who-intro { display: grid; grid-template-columns: 1.08fr .92fr; gap: 90px; align-items: end; margin-bottom: 70px; }
.who-intro h2 { max-width: 650px; color: #fff; }
.who-intro > p { margin: 0 0 8px; color: rgba(255, 255, 255, .64); font-size: 15px; line-height: 1.85; }
.institutional-pillars { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255, 255, 255, .16); }
.institutional-pillars article { min-height: 260px; border-right: 1px solid rgba(255, 255, 255, .16); padding: 29px 25px; }
.institutional-pillars article:first-child { border-left: 1px solid rgba(255, 255, 255, .16); }
.institutional-pillars span { color: #4fc2f3; font-size: 9px; font-weight: 800; }
.institutional-pillars h3 { margin: 75px 0 13px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 18px; font-weight: 600; }
.institutional-pillars p { margin: 0; color: rgba(255, 255, 255, .58); font-size: 12px; line-height: 1.75; }
.institutional-services { background: linear-gradient(145deg, #f5fafc, #e8f4f9); }
.institutional-services-heading { margin-bottom: 52px; }
.institutional-services-heading h2 { margin-top: 19px; color: var(--institutional-navy); font-family: "Montserrat", Arial, sans-serif; font-size: clamp(35px, 4vw, 49px); font-weight: 600; letter-spacing: -.04em; line-height: 1.18; }
.shared-service-bento {
  --premium-blue: #0070d8;
  --premium-blue-light: #168bea;
  --premium-navy: #484848;
  --premium-ink: #3d4247;
  --home-final-hero-overlay: linear-gradient(90deg, rgba(8, 38, 61, .86) 0%, rgba(10, 48, 73, .78) 38%, rgba(14, 59, 87, .68) 68%, rgba(17, 66, 96, .62) 100%);
  --home-final-hero-vignette: linear-gradient(0deg, rgba(5, 27, 45, .32), rgba(5, 27, 45, .12) 44%, rgba(5, 27, 45, .18));
  width: 100%;
}
.legacy-services-section {
  background: #f4f8fa;
  padding-top: 95px;
  padding-bottom: 95px;
}
.legacy-services-section::before,
.legacy-services-section::after { display: none; content: none; }
.institutional-cta { background: #eef6f9; border-top: 1px solid #d7e5eb; padding: 75px 0; }
.institutional-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.institutional-cta span { color: var(--institutional-blue); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.institutional-cta h2 { max-width: 760px; margin: 10px 0 0; color: var(--institutional-navy); font-family: "Montserrat", Arial, sans-serif; font-size: clamp(29px, 3.5vw, 42px); font-weight: 600; letter-spacing: -.04em; line-height: 1.2; }
.institutional-check-list { margin: 32px 0 0; border-top: 1px solid var(--institutional-line); padding: 0; list-style: none; }
.institutional-check-list li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; border-bottom: 1px solid var(--institutional-line); padding: 17px 0; }
.institutional-check-list li > span { color: var(--institutional-blue); font-size: 9px; font-weight: 800; }
.institutional-check-list strong { display: block; color: var(--institutional-navy); font-size: 13px; }
.institutional-check-list small { display: block; margin-top: 3px; color: #748691; font-size: 11px; line-height: 1.55; }
.institutional-technology-visual img { object-position: 56% center; }
.company-principles { background: linear-gradient(145deg, #f7fafc, #e9f4f8); }
.company-principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #bdd3df; }
.company-principle-grid article { min-height: 330px; border-right: 1px solid #bdd3df; padding: 31px 34px; }
.company-principle-grid article:first-child { border-left: 1px solid #bdd3df; }
.company-principle-grid article > span { color: var(--institutional-blue); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.company-principle-grid h3 { margin: 72px 0 17px; color: var(--institutional-navy); font-family: "Montserrat", Arial, sans-serif; font-size: 24px; font-weight: 600; line-height: 1.35; }
.company-principle-grid p { margin: 0; color: #697c88; font-size: 13px; line-height: 1.8; }
.company-operation { background: linear-gradient(120deg, #22282d, #173b52); color: #fff; padding: 105px 0; }
.company-operation-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; align-items: start; }
.company-operation h2 { color: #fff; }
.company-operation-copy > p { margin: 0 0 30px; color: rgba(255, 255, 255, .62); font-size: 15px; line-height: 1.8; }
.company-operation-steps { border-top: 1px solid rgba(255, 255, 255, .17); }
.company-operation-steps article { display: grid; grid-template-columns: 52px 1fr; gap: 20px; border-bottom: 1px solid rgba(255, 255, 255, .17); padding: 23px 0; }
.company-operation-steps article > span { color: #4fc2f3; font-size: 9px; font-weight: 800; }
.company-operation-steps h3 { margin: 0 0 4px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 17px; font-weight: 600; }
.company-operation-steps p { margin: 0; color: rgba(255, 255, 255, .55); font-size: 12px; }
.company-presence { background: #fff; }
.company-presence-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: end; }
.presence-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--institutional-line); }
.presence-list span { min-height: 90px; display: flex; align-items: center; border-right: 1px solid var(--institutional-line); border-bottom: 1px solid var(--institutional-line); padding: 20px; color: #4f5d65; font-family: "Montserrat", Arial, sans-serif; font-size: 13px; font-weight: 650; }
.presence-list span:nth-child(even) { border-right: 0; }

@media (max-width: 980px) {
  .institutional-hero { min-height: 590px; }
  .institutional-hero-content { padding-top: 80px; padding-bottom: 75px; }
  .institutional-section { padding: 85px 0; }
  .institutional-split,
  .institutional-split-reverse,
  .who-intro,
  .company-operation-grid,
  .company-presence-grid { grid-template-columns: 1fr; gap: 58px; }
  .institutional-visual { width: min(760px, 100%); }
  .institutional-number-grid,
  .institutional-pillars { grid-template-columns: 1fr 1fr; }
  .institutional-pillars article:nth-child(3) { border-left: 1px solid rgba(255, 255, 255, .16); }
  .company-principle-grid { grid-template-columns: 1fr; }
  .company-principle-grid article { min-height: 0; border-left: 1px solid #bdd3df; border-bottom: 1px solid #bdd3df; }
  .company-principle-grid h3 { margin-top: 38px; }
  .institutional-cta-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .institutional-hero { min-height: 610px; }
  .institutional-hero-overlay { background: linear-gradient(0deg, rgba(8, 25, 37, .96) 0%, rgba(8, 29, 44, .82) 60%, rgba(8, 29, 44, .35) 100%); }
  .institutional-hero h1 { font-size: 40px; }
  .institutional-hero p { font-size: 15px; }
  .institutional-breadcrumb { margin-bottom: 28px; }
  .institutional-section { padding: 72px 0; }
  .institutional-split { gap: 50px; }
  .institutional-visual,
  .institutional-visual img { min-height: 390px; height: 390px; }
  .institutional-visual figcaption { right: 14px; bottom: -34px; width: 180px; min-height: 120px; }
  .institutional-copy h2,
  .institutional-heading h2,
  .who-intro h2,
  .company-operation h2,
  .company-presence h2 { font-size: 36px; }
  .story-timeline,
  .institutional-number-grid,
  .institutional-pillars,
  .company-principle-grid,
  .presence-list { grid-template-columns: 1fr; }
  .story-timeline article,
  .story-timeline article + article { min-height: 0; border-right: 0; border-bottom: 1px solid #bfd3df; padding: 26px 0; }
  .story-timeline small { margin-top: 25px; }
  .institutional-number-grid > div,
  .institutional-number-grid > div:last-child { min-height: 135px; border-right: 1px solid rgba(255, 255, 255, .14); }
  .institutional-pillars article,
  .institutional-pillars article:nth-child(3) { min-height: 220px; border-left: 1px solid rgba(255, 255, 255, .16); border-bottom: 1px solid rgba(255, 255, 255, .16); }
  .institutional-pillars h3 { margin-top: 48px; }
  .company-principle-grid article { padding-right: 24px; padding-left: 24px; }
  .company-operation { padding: 78px 0; }
  .presence-list span { border-right: 0; }
  .institutional-cta { padding: 62px 0; }
}

.solution-detail-page {
  --premium-blue: #0070d8;
  --premium-blue-light: #168bea;
  --premium-navy: #484848;
  --premium-ink: #3d4247;
  --solution-blue: #0070d8;
  --solution-cyan: #4fc2f3;
  --solution-navy: #272d32;
  --solution-ink: #41484e;
  --solution-muted: #697c88;
  --solution-line: #d7e4ea;
  background: #fff;
}
.solution-hero {
  position: relative;
  isolation: isolate;
  min-height: 670px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #122331;
  color: #fff;
}
.solution-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-implantacao .solution-hero > img { object-position: center 62%; }
.solution-financeiro .solution-hero > img,
.solution-juridico .solution-hero > img,
.solution-documentos .solution-hero > img,
.solution-assembleias .solution-hero > img { object-position: center; }
.solution-pessoas .solution-hero > img { object-position: center 55%; }
.solution-vencimentos .solution-hero > img { object-position: center; }
.solution-hero-overlay,
.debit-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 24, 37, .97) 0%, rgba(7, 30, 46, .88) 39%, rgba(7, 30, 46, .42) 67%, rgba(7, 30, 46, .12) 100%), linear-gradient(0deg, rgba(4, 17, 27, .58), transparent 50%);
}
.solution-hero-content { padding-top: 85px; padding-bottom: 82px; }
.solution-hero-content > * { max-width: 800px; }
.solution-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.solution-breadcrumb a:hover { color: #fff; }
.solution-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--solution-cyan);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.solution-kicker i { width: 25px; height: 1px; display: block; background: currentColor; }
.solution-kicker-dark { color: var(--solution-blue); }
.solution-hero h1 {
  max-width: 820px;
  margin: 20px 0 22px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(43px, 5.3vw, 69px);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1.08;
}
.solution-hero p { max-width: 720px; margin: 0 0 30px; color: rgba(255, 255, 255, .74); font-size: 17px; line-height: 1.75; }
.solution-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.solution-text-link { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 11px; font-weight: 800; }
.solution-text-link span { color: var(--solution-cyan); }
.solution-assurances { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 34px; }
.solution-assurances span { position: relative; padding-left: 17px; color: rgba(255, 255, 255, .68); font-size: 10px; font-weight: 700; }
.solution-assurances span::before { position: absolute; left: 0; color: var(--solution-cyan); content: "✓"; }
.solution-section { position: relative; padding: 105px 0; }
.solution-intro-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 95px; align-items: start; }
.solution-copy h2,
.solution-heading h2,
.solution-deliverables h2,
.solution-faq h2,
.solution-related h2,
.catalog-intro h2,
.catalog-integration h2,
.catalog-human h2 {
  margin: 20px 0 22px;
  color: var(--solution-navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(36px, 4.3vw, 53px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.15;
}
.solution-copy p { margin: 0 0 17px; color: var(--solution-muted); font-size: 15px; line-height: 1.85; }
.solution-result-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #252b30, #183d55);
  box-shadow: 0 28px 70px rgba(8, 42, 66, .18);
  padding: 38px;
  color: #fff;
}
.solution-result-panel::after {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 80px;
  height: 80px;
  background-image: linear-gradient(rgba(79, 194, 243, .18) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 194, 243, .18) 1px, transparent 1px);
  background-size: 20px 20px;
  content: "";
}
.solution-result-panel > span { color: var(--solution-cyan); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.solution-result-panel h3 { max-width: 360px; margin: 52px 0 30px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 25px; font-weight: 600; line-height: 1.35; }
.solution-result-panel > div { border-top: 1px solid rgba(255, 255, 255, .16); }
.solution-result-panel > div > div { display: grid; grid-template-columns: 38px 1fr; gap: 13px; border-bottom: 1px solid rgba(255, 255, 255, .16); padding: 17px 0; }
.solution-result-panel > div span { color: var(--solution-cyan); font-size: 8px; font-weight: 800; }
.solution-result-panel > div strong { color: rgba(255, 255, 255, .82); font-size: 12px; }
.solution-benefits { background: linear-gradient(145deg, #f6fafc, #eaf4f8); }
.solution-heading { max-width: 780px; margin-bottom: 52px; }
.solution-heading > p { max-width: 650px; margin: 0; color: var(--solution-muted); font-size: 15px; line-height: 1.8; }
.solution-benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #bfd3df; }
.solution-benefit-grid article { min-height: 300px; border-right: 1px solid #bfd3df; padding: 29px 27px; }
.solution-benefit-grid article:first-child { border-left: 1px solid #bfd3df; }
.solution-benefit-grid article > span { color: var(--solution-blue); font-size: 9px; font-weight: 800; }
.solution-benefit-grid h3 { margin: 75px 0 14px; color: var(--solution-navy); font-family: "Montserrat", Arial, sans-serif; font-size: 20px; font-weight: 600; line-height: 1.35; }
.solution-benefit-grid p { margin: 0; color: #697d89; font-size: 12px; line-height: 1.75; }
.solution-process { background: linear-gradient(120deg, #22282d, #173c54); padding: 105px 0; color: #fff; }
.solution-process-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 100px; align-items: start; }
.solution-process-copy { position: sticky; top: 210px; }
.solution-process h2 { margin: 20px 0; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: clamp(36px, 4.2vw, 51px); font-weight: 600; letter-spacing: -.045em; line-height: 1.15; }
.solution-process-copy > p { margin: 0; color: rgba(255, 255, 255, .62); font-size: 15px; line-height: 1.8; }
.solution-process-list { border-top: 1px solid rgba(255, 255, 255, .17); }
.solution-process-list article { display: grid; grid-template-columns: 54px 1fr; gap: 20px; border-bottom: 1px solid rgba(255, 255, 255, .17); padding: 25px 0; }
.solution-process-list article > span { color: var(--solution-cyan); font-size: 9px; font-weight: 800; }
.solution-process-list h3 { margin: 0 0 6px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 18px; font-weight: 600; }
.solution-process-list p { margin: 0; color: rgba(255, 255, 255, .56); font-size: 12px; line-height: 1.7; }
.solution-deliverables { background: #fff; }
.solution-deliverables-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 95px; align-items: start; }
.solution-deliverables-grid > div > p { margin: 0; color: var(--solution-muted); font-size: 15px; line-height: 1.8; }
.solution-deliverables ul { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid var(--solution-line); padding: 0; list-style: none; }
.solution-deliverables li { min-height: 90px; display: grid; grid-template-columns: 35px 1fr; gap: 10px; align-items: center; border-right: 1px solid var(--solution-line); border-bottom: 1px solid var(--solution-line); padding: 20px; color: #52616a; font-size: 12px; font-weight: 650; }
.solution-deliverables li:nth-child(even) { border-right: 0; }
.solution-deliverables li span { color: var(--solution-blue); font-size: 8px; font-weight: 800; }
.solution-deliverables li:nth-child(5) .solution-icon { position: relative; }
.solution-deliverables li:nth-child(5) .solution-icon svg { display: none; }
.solution-deliverables li:nth-child(5) .solution-icon::before {
  width: 17px;
  height: 21px;
  border: 1.7px solid currentColor;
  border-radius: 2px;
  content: "";
}
.solution-deliverables li:nth-child(5) .solution-icon::after {
  position: absolute;
  width: 9px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor;
  content: "";
}
.solution-digital .solution-benefit-grid article:nth-child(2) .solution-icon { position: relative; }
.solution-digital .solution-benefit-grid article:nth-child(2) .solution-icon svg { display: none; }
.solution-digital .solution-benefit-grid article:nth-child(2) .solution-icon::before {
  width: 17px;
  height: 21px;
  border: 1.7px solid currentColor;
  border-radius: 2px;
  content: "";
}
.solution-digital .solution-benefit-grid article:nth-child(2) .solution-icon::after {
  position: absolute;
  width: 9px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor;
  content: "";
}
.solutions-catalog-page .catalog-human ul li:nth-child(3) .solution-icon { position: relative; }
.solutions-catalog-page .catalog-human ul li:nth-child(3) .solution-icon svg { display: none; }
.solutions-catalog-page .catalog-human ul li:nth-child(3) .solution-icon::before {
  width: 22px;
  height: 16px;
  border: 1.7px solid currentColor;
  border-radius: 3px;
  content: "";
}
.solutions-catalog-page .catalog-human ul li:nth-child(3) .solution-icon::after {
  position: absolute;
  bottom: 3px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-bottom: 1.7px solid currentColor;
  border-left: 1.7px solid currentColor;
  background: inherit;
  content: "";
  transform: skewY(-35deg);
}
.solution-digital .solution-process-list article:first-child .solution-icon { position: relative; }
.solution-digital .solution-process-list article:first-child .solution-icon svg { display: none; }
.solution-digital .solution-process-list article:first-child .solution-icon::before {
  width: 14px;
  height: 22px;
  border: 1.7px solid currentColor;
  border-radius: 3px;
  content: "";
}
.solution-digital .solution-process-list article:first-child .solution-icon::after {
  position: absolute;
  bottom: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}
.solution-practical { background: var(--solution-blue); color: #fff; padding: 72px 0; }
.solution-practical-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
.solution-practical-grid > span { display: none; }
.solution-practical small { color: rgba(255, 255, 255, .66); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.solution-practical h2 { max-width: 900px; margin: 12px 0 14px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: clamp(31px, 4vw, 47px); font-weight: 600; letter-spacing: -.04em; line-height: 1.18; }
.solution-practical p { max-width: 800px; margin: 0; color: rgba(255, 255, 255, .75); font-size: 15px; line-height: 1.8; }
.solution-faq { background: linear-gradient(145deg, #f7fafc, #eaf4f8); }
.solution-faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; align-items: start; }
.solution-faq-grid > div:first-child > p { margin: 0; color: var(--solution-muted); font-size: 14px; }
.solution-faq-list { border-top: 1px solid #bdd2de; }
.solution-faq-list details { border-bottom: 1px solid #bdd2de; }
.solution-faq-list summary { display: flex; align-items: center; gap: 20px; padding: 22px 0; color: var(--solution-navy); cursor: pointer; font-family: "Montserrat", Arial, sans-serif; font-size: 15px; font-weight: 650; list-style: none; }
.solution-faq-list summary::-webkit-details-marker { display: none; }
.solution-faq-list summary span { margin-left: auto; color: var(--solution-blue); font-size: 22px; font-weight: 300; transition: transform .2s ease; }
.solution-faq-list details[open] summary span { transform: rotate(45deg); }
.solution-faq-list details p { margin: -4px 45px 23px 0; color: #687b87; font-size: 13px; line-height: 1.75; }
.solution-related { background: #f4f8fa; }
.solution-related-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 52px; }
.solution-related-heading h2 { max-width: 760px; margin-bottom: 0; }
.solution-cta { background: #eef6f9; border-top: 1px solid var(--solution-line); padding: 75px 0; }
.solution-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.solution-cta span { color: var(--solution-blue); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.solution-cta h2 { max-width: 780px; margin: 10px 0 0; color: var(--solution-navy); font-family: "Montserrat", Arial, sans-serif; font-size: clamp(29px, 3.5vw, 42px); font-weight: 600; letter-spacing: -.04em; line-height: 1.2; }
.catalog-hero > img { object-position: center 56%; }
.catalog-intro { background: #fff; }
.catalog-intro-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: start; }
.catalog-intro-grid h2 { margin-top: 20px; }
.catalog-intro-grid p { margin: 0 0 17px; color: var(--solution-muted); font-size: 15px; line-height: 1.85; }
.catalog-metrics { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 72px; border-top: 1px solid var(--solution-line); }
.catalog-metrics > div { min-height: 150px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--solution-line); padding: 25px; }
.catalog-metrics > div:first-child { border-left: 1px solid var(--solution-line); }
.catalog-metrics strong { color: var(--solution-navy); font-family: "Montserrat", Arial, sans-serif; font-size: 35px; font-weight: 600; }
.catalog-metrics span { margin-top: 8px; color: #71828c; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.catalog-services { background: linear-gradient(145deg, #f5fafc, #e8f3f8); }
.catalog-services-heading { align-items: start; }
.catalog-services-heading p { max-width: 620px; margin: 14px 0 0; color: var(--solution-muted); }
.catalog-integration { background: linear-gradient(120deg, #252b30, #173d55); padding: 105px 0; color: #fff; }
.catalog-integration-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; align-items: start; }
.catalog-integration h2 { color: #fff; }
.catalog-integration-grid > div:first-child > p { margin: 0 0 29px; color: rgba(255, 255, 255, .62); font-size: 15px; line-height: 1.8; }
.catalog-integration-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255, 255, 255, .17); }
.catalog-integration-list article { min-height: 210px; border-right: 1px solid rgba(255, 255, 255, .17); border-bottom: 1px solid rgba(255, 255, 255, .17); padding: 25px; }
.catalog-integration-list article:nth-child(even) { border-right: 0; }
.catalog-integration-list span { color: var(--solution-cyan); font-size: 9px; font-weight: 800; }
.catalog-integration-list h3 { margin: 58px 0 9px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 18px; font-weight: 600; }
.catalog-integration-list p { margin: 0; color: rgba(255, 255, 255, .55); font-size: 11px; line-height: 1.7; }
.catalog-human { background: #fff; }
.catalog-human-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.catalog-human figure { position: relative; min-height: 520px; margin: 0; border: 1px solid var(--solution-line); box-shadow: 0 28px 75px rgba(8, 46, 72, .13); }
.catalog-human figure::before { position: absolute; z-index: 2; top: -18px; left: -18px; width: 100px; height: 100px; border-top: 1px solid rgba(0, 112, 216, .35); border-left: 1px solid rgba(0, 112, 216, .35); content: ""; }
.catalog-human figure img { width: 100%; height: 520px; display: block; object-fit: cover; }
.catalog-human-grid > div > p { margin: 0; color: var(--solution-muted); font-size: 15px; line-height: 1.85; }
.catalog-human ul { margin: 31px 0 0; border-top: 1px solid var(--solution-line); padding: 0; list-style: none; }
.catalog-human li { display: grid; grid-template-columns: 38px 1fr; gap: 10px; border-bottom: 1px solid var(--solution-line); padding: 17px 0; color: #53626b; font-size: 12px; font-weight: 650; }
.catalog-human li span { color: var(--solution-blue); font-size: 8px; font-weight: 800; }

@media (max-width: 980px) {
  .solution-hero { min-height: 610px; }
  .solution-section { padding: 85px 0; }
  .solution-intro-grid,
  .solution-process-grid,
  .solution-deliverables-grid,
  .solution-faq-grid,
  .catalog-intro-grid,
  .catalog-integration-grid,
  .catalog-human-grid { grid-template-columns: 1fr; gap: 58px; }
  .solution-result-panel { width: min(620px, 100%); }
  .solution-benefit-grid { grid-template-columns: 1fr 1fr; }
  .solution-benefit-grid article:nth-child(3) { border-left: 1px solid #bfd3df; border-top: 1px solid #bfd3df; }
  .solution-benefit-grid article:nth-child(4) { border-top: 1px solid #bfd3df; }
  .solution-process-copy { position: static; }
  .solution-related-heading { align-items: start; flex-direction: column; gap: 20px; }
  .solution-cta-grid { grid-template-columns: 1fr; gap: 28px; }
  .catalog-metrics { grid-template-columns: 1fr 1fr; }
  .catalog-metrics > div:nth-child(3) { border-left: 1px solid var(--solution-line); border-top: 1px solid var(--solution-line); }
  .catalog-metrics > div:nth-child(4) { border-top: 1px solid var(--solution-line); }
}

@media (max-width: 640px) {
  .solution-hero { min-height: 660px; }
  .solution-hero-overlay,
  .debit-hero::before { background: linear-gradient(0deg, rgba(6, 23, 35, .97) 0%, rgba(6, 28, 43, .84) 62%, rgba(6, 28, 43, .38) 100%); }
  .solution-hero h1 { font-size: 40px; }
  .solution-hero p { font-size: 15px; }
  .solution-hero-actions { align-items: stretch; flex-direction: column; }
  .solution-hero-actions .button { width: 100%; }
  .solution-text-link { align-self: flex-start; }
  .solution-assurances { flex-direction: column; gap: 9px; }
  .solution-section { padding: 72px 0; }
  .solution-copy h2,
  .solution-heading h2,
  .solution-deliverables h2,
  .solution-faq h2,
  .solution-related h2,
  .catalog-intro h2,
  .catalog-integration h2,
  .catalog-human h2 { font-size: 36px; }
  .solution-result-panel { padding: 29px 24px; }
  .solution-result-panel h3 { margin-top: 45px; font-size: 22px; }
  .solution-benefit-grid,
  .solution-deliverables ul,
  .catalog-metrics,
  .catalog-integration-list { grid-template-columns: 1fr; }
  .solution-benefit-grid article,
  .solution-benefit-grid article:first-child,
  .solution-benefit-grid article:nth-child(3),
  .solution-benefit-grid article:nth-child(4) { min-height: 235px; border: 0; border-right: 1px solid #bfd3df; border-bottom: 1px solid #bfd3df; border-left: 1px solid #bfd3df; padding: 24px; }
  .solution-benefit-grid h3 { margin-top: 48px; }
  .solution-process { padding: 78px 0; }
  .solution-process h2 { font-size: 36px; }
  .solution-deliverables li { border-right: 0; }
  .solution-practical-grid { grid-template-columns: 1fr; }
  .solution-faq-list details p { margin-right: 0; }
  .catalog-metrics > div,
  .catalog-metrics > div:nth-child(3),
  .catalog-metrics > div:nth-child(4) { min-height: 120px; border-top: 0; border-right: 1px solid var(--solution-line); border-bottom: 1px solid var(--solution-line); border-left: 1px solid var(--solution-line); }
  .catalog-integration { padding: 78px 0; }
  .catalog-integration-list article { min-height: 180px; border-right: 0; }
  .catalog-human figure,
  .catalog-human figure img { min-height: 360px; height: 360px; }
  .solution-cta { padding: 62px 0; }
}

/* Padronização visual das novas soluções e das páginas institucionais */
:root { --blue: #0070d8; --blue-dark: #0070d8; }
body {
  --premium-blue: #0070d8;
  --premium-blue-light: #0070d8;
  --solution-blue: #0070d8;
  --solution-cyan: #0070d8;
  --institutional-blue: #0070d8;
  --insurance-blue: #0070d8;
}
.home-page,
.privacy-page,
.institutional-page,
.solution-detail-page,
.insurance-page {
  --premium-blue: #0070d8;
  --premium-blue-light: #0070d8;
  --solution-blue: #0070d8;
  --solution-cyan: #0070d8;
  --institutional-blue: #0070d8;
  --insurance-blue: #0070d8;
}

.solution-digital .solution-hero > img { object-position: center 45%; }
.solution-consultoria .solution-hero > img { object-position: center 52%; }
.digital-app-availability {
  max-width: 450px;
  display: inline-grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .3);
  padding: 15px 0 0;
}
.digital-app-availability img {
  width: 82px;
  aspect-ratio: 1;
  display: block;
  border: 4px solid #fff;
  border-radius: 3px;
  box-shadow: 0 8px 22px rgba(4, 21, 35, .2);
  object-fit: contain;
}
.digital-app-availability strong {
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.digital-app-availability span { display: block; margin-top: 5px; color: rgba(255, 255, 255, .72); font-size: 11px; line-height: 1.5; }

.solution-detail-page .solution-deliverables,
.solution-detail-page .catalog-intro,
.solution-detail-page .catalog-human {
  background:
    radial-gradient(ellipse at 92% 8%, rgba(0, 112, 216, .08), transparent 35%),
    radial-gradient(ellipse at 5% 90%, rgba(0, 112, 216, .055), transparent 32%),
    linear-gradient(145deg, #f7fafc, #eaf4f8);
}

.solution-detail-page .solution-related { background: linear-gradient(145deg, #f5fafc, #e8f3f8); }

.institutional-split.story-origin-team {
  grid-template-columns: minmax(0, 1.36fr) minmax(340px, .64fr);
  gap: 48px;
}
.story-team-block .team-roster-title { padding: 18px 24px; }
.story-team-block .team-roster-grid article { min-height: 104px; padding: 18px 16px; }
.story-team-block .team-roster-grid strong { font-size: 13px; }
.story-team-block .team-roster-grid small { font-size: 10px; }

.privacy-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: 64px;
  align-items: center;
  margin-bottom: 58px;
}
.privacy-intro-grid .privacy-intro { margin-bottom: 0; }
.privacy-visual {
  position: relative;
  min-height: 380px;
  margin: 0;
  border: 1px solid #d7e4ea;
  background: #edf4f7;
  box-shadow: 0 26px 65px rgba(8, 47, 75, .13);
}
.privacy-visual::before {
  position: absolute;
  z-index: 2;
  top: -18px;
  left: -18px;
  width: 92px;
  height: 92px;
  border-top: 1px solid rgba(0, 112, 216, .4);
  border-left: 1px solid rgba(0, 112, 216, .4);
  content: "";
  pointer-events: none;
}
.privacy-visual img { width: 100%; height: 380px; display: block; object-fit: cover; }
.privacy-visual figcaption {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 190px;
  padding: 20px;
  background: var(--blue);
  box-shadow: 0 18px 38px rgba(0, 87, 168, .24);
  color: #fff;
}
.privacy-visual figcaption strong { display: block; font-family: "Montserrat", Arial, sans-serif; font-size: 20px; font-weight: 600; line-height: 1.2; }
.privacy-visual figcaption span { display: block; margin-top: 7px; color: rgba(255, 255, 255, .75); font-size: 9px; font-weight: 800; letter-spacing: .08em; line-height: 1.45; text-transform: uppercase; }

@media (max-width: 980px) {
  .privacy-intro-grid { grid-template-columns: 1fr; gap: 45px; }
  .privacy-visual { width: min(680px, 100%); }
}

@media (max-width: 640px) {
  .story-team-block .team-roster-title { padding: 16px 18px; }
  .story-team-block .team-roster-grid article { min-height: 82px; padding: 14px 16px; }
  .privacy-visual,
  .privacy-visual img { min-height: 320px; height: 320px; }
  .privacy-visual figcaption { right: 14px; bottom: -24px; width: 175px; }
}

.team-hero > img { object-position: center 48%; }
.team-intro,
.team-growth { background: #fff; }
.team-specialties { background: linear-gradient(145deg, #f7fafc, #e9f4f8); }
.team-specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #bdd3df;
  border-left: 1px solid #bdd3df;
}
.team-specialty-grid article {
  min-height: 300px;
  border-right: 1px solid #bdd3df;
  border-bottom: 1px solid #bdd3df;
  padding: 31px 34px;
}
.team-specialty-grid article > span {
  color: var(--institutional-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.team-specialty-grid h3 {
  margin: 65px 0 16px;
  color: var(--institutional-navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}
.team-specialty-grid p {
  margin: 0;
  color: #697c88;
  font-size: 13px;
  line-height: 1.8;
}
.team-growth .company-presence-grid > div:first-child > p {
  margin: 0 0 24px;
  color: var(--institutional-muted);
  font-size: 15px;
  line-height: 1.85;
}

@media (max-width: 980px) {
  .team-specialty-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .team-hero > img { object-position: 58% center; }
  .team-specialty-grid { grid-template-columns: 1fr; }
  .team-specialty-grid article { min-height: 235px; padding: 25px 24px; }
  .team-specialty-grid h3 { margin-top: 45px; }
}

.about-premium-grid.real-team-layout {
  grid-template-columns: minmax(0, 1.36fr) minmax(340px, .64fr);
  gap: 48px;
}
.about-team-block,
.story-team-block { min-width: 0; align-self: center; }
.about-visual-team {
  min-height: 0;
  margin-bottom: 0;
}
.about-visual-team img {
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}
.about-visual-team .experience-card {
  right: 24px;
  bottom: -68px;
  width: 172px;
  min-height: 140px;
}
.institutional-split.story-origin-team {
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, .75fr);
  gap: 58px;
}
.story-team-portrait {
  min-height: 0;
  height: auto;
  align-self: center;
}
.story-team-portrait img {
  min-height: 0;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}
.story-team-portrait figcaption {
  right: auto;
  bottom: 24px;
  left: 24px;
}
/* Keep the original portrait visible outside the two edited tabletop regions. */
.story-team-portrait .story-photo-edit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.story-photo-edit-hand {
  clip-path: polygon(48% 53%, 52.8% 53%, 55% 61%, 55% 70%, 49% 70%, 48% 61%);
}
.story-photo-edit-documents {
  clip-path: polygon(32.9% 69.9%, 67.4% 69.9%, 77% 100%, 18.8% 100%, 19.2% 92%);
}
.team-roster {
  position: relative;
  z-index: 4;
  background: #fff;
  box-shadow: 0 24px 60px rgba(8, 47, 75, .1);
}
.about-team-block .team-roster { margin-top: 88px; }
.story-team-block .team-roster { margin-top: 28px; }
.team-roster-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--institutional-line, #d9e5eb);
  border-right: 1px solid var(--institutional-line, #d9e5eb);
  border-left: 1px solid var(--institutional-line, #d9e5eb);
  padding: 16px 20px;
}
.team-roster-title span {
  color: #2d3439;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.team-roster-title small {
  color: #7d909c;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.team-roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--institutional-line, #d9e5eb);
  border-left: 1px solid var(--institutional-line, #d9e5eb);
}
.team-roster-grid article {
  min-height: 92px;
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 9px;
  align-items: center;
  border-right: 1px solid var(--institutional-line, #d9e5eb);
  border-bottom: 1px solid var(--institutional-line, #d9e5eb);
  padding: 15px 13px;
}
.team-roster-grid article > span {
  align-self: start;
  padding-top: 3px;
  color: #0070d8;
  font-size: 8px;
  font-weight: 800;
}
.team-roster-grid strong {
  display: block;
  color: #30373c;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}
.team-roster-grid small {
  display: block;
  margin-top: 5px;
  color: #71838e;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .about-premium-grid.real-team-layout,
  .institutional-split.story-origin-team {
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .about-team-block,
  .story-team-block { width: min(800px, 100%); }
}

@media (max-width: 640px) {
  .about-visual-team .experience-card {
    right: 14px;
    bottom: -52px;
    width: 145px;
    min-height: 118px;
  }
  .story-team-portrait figcaption { display: none; }
  .about-team-block .team-roster { margin-top: 70px; }
  .story-team-block .team-roster { margin-top: 20px; }
  .team-roster-title { align-items: flex-start; flex-direction: column; gap: 5px; }
  .team-roster-grid { grid-template-columns: 1fr; }
  .team-roster-grid article { min-height: 74px; padding: 12px 16px; }
}

/* Formulários institucionais */
.page-hero::before {
  position: absolute;
  top: -230px;
  right: -120px;
  width: 650px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(255, 255, 255, .045), 0 0 0 112px rgba(255, 255, 255, .025);
  content: "";
  pointer-events: none;
}
.page-hero::after {
  position: absolute;
  right: 18%;
  bottom: 0;
  width: 1px;
  height: 72px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .34));
  content: "";
}
.page-hero > .container { position: relative; z-index: 1; }

.form-wrap {
  width: 100%;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  gap: 48px;
}
.form-wrap > div:first-child {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border: 1px solid rgba(73, 185, 237, .18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 8%, rgba(73, 185, 237, .2), transparent 32%),
    linear-gradient(145deg, #192f3e, #123f5b);
  box-shadow: 0 24px 65px rgba(8, 48, 77, .18);
  padding: 34px;
  color: rgba(255, 255, 255, .78);
}
.form-wrap > div:first-child::before {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 22px;
  background: #44baf0;
  content: "";
}
.form-wrap > div:first-child h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -.035em;
}
.form-wrap > div:first-child > p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.75;
}
.form-wrap .info-strip {
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
  padding: 0;
}
.form-wrap .info-item {
  min-width: 0;
  border: 0;
  background: rgba(255, 255, 255, .035);
  padding: 16px;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.form-wrap .info-item strong {
  color: #55c5f6;
  font-size: 9px;
  letter-spacing: .11em;
}
.form-wrap .grid.three {
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 20px !important;
}
.form-wrap .grid.three .card {
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .055);
  box-shadow: none;
  padding: 16px 18px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.form-wrap .grid.three .card:hover {
  border-color: rgba(85, 197, 246, .55);
  background: rgba(255, 255, 255, .1);
  transform: translateX(3px);
}
.form-wrap .grid.three .card h3 { margin: 0 0 4px; color: #fff; font-size: 15px; }
.form-wrap .grid.three .card p { margin: 0; color: rgba(255, 255, 255, .62); font-size: 12px; }

.form-wrap .form {
  overflow: hidden;
  border: 1px solid #d8e5ec;
  border-top: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(8, 48, 77, .14);
  padding: 38px;
}
.form-wrap .form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #0070d8, #4bc2f4);
  content: "";
}
.form-wrap .form label {
  margin: 17px 0 7px;
  color: #2e4859;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .035em;
}
.form-wrap .form input,
.form-wrap .form select,
.form-wrap .form textarea {
  min-height: 48px;
  border: 1px solid #cbd9e1;
  border-radius: 8px;
  background: #fbfdfe;
  padding: 12px 14px;
  color: #243946;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-wrap .form input:hover,
.form-wrap .form select:hover,
.form-wrap .form textarea:hover { border-color: #9fbccc; background: #fff; }
.form-wrap .form input:focus,
.form-wrap .form select:focus,
.form-wrap .form textarea:focus {
  border-color: #0789d4;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(7, 137, 212, .11);
  outline: 0;
}
.form-wrap .form textarea { min-height: 140px; line-height: 1.6; }
.form-wrap .form input[type="file"] { height: auto; border-style: dashed; background: #f5fafc; padding: 16px; }
.form-wrap .checks {
  margin: 20px 0;
  border: 1px solid #dce9ef;
  border-radius: 9px;
  background: #f3f9fc;
  padding: 14px;
}
.form-wrap .checks + .checks { margin-top: -10px; }
.form-wrap .checks label { color: #5d7280; font-size: 11px; font-weight: 600; letter-spacing: 0; line-height: 1.55; }
.form-wrap .checks input { min-height: 0; accent-color: #0070d8; }
.form-wrap .mini-link { color: #0070d8; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.form-wrap .btn.primary {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 112, 216, .2);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .035em;
}
.form-wrap .notice {
  border: 1px solid rgba(85, 197, 246, .28);
  border-radius: 10px;
  background: rgba(79, 184, 232, .1);
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
}
.form label[for="condomino_nome"],
.form label[for="correntista_nome"],
.form label[for="agencia_nome"] {
  margin-top: 30px;
  border-top: 1px solid #dce8ee;
  padding-top: 24px;
}
.form label[for="condomino_nome"]::before,
.form label[for="correntista_nome"]::before,
.form label[for="agencia_nome"]::before {
  display: block;
  margin-bottom: 13px;
  color: #0070d8;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -.015em;
}
.form label[for="condomino_nome"]::before { content: "Dados do condômino"; }
.form label[for="correntista_nome"]::before { content: "Dados do correntista"; }
.form label[for="agencia_nome"]::before { content: "Dados bancários"; }

.proposal-form,
.campaign-form {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .23);
}
.proposal-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0070d8, #4bc2f4);
  content: "";
}
.campaign-form input,
.proposal-form input,
.proposal-form textarea {
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.campaign-form input:focus,
.proposal-form input:focus,
.proposal-form textarea:focus { box-shadow: 0 3px 0 rgba(0, 112, 216, .1); }

@media (max-width: 900px) {
  .form-wrap { grid-template-columns: 1fr; gap: 28px; }
  .form-wrap > div:first-child { position: static; }
}

@media (max-width: 640px) {
  .page-hero { min-height: 260px; }
  .page-hero::before { right: -360px; }
  .form-wrap > div:first-child,
  .form-wrap .form { border-radius: 12px; padding: 24px 20px; }
  .form-wrap .info-strip { grid-template-columns: 1fr; }
  .form-wrap .info-item { padding: 14px; }
  .form-wrap .form input,
  .form-wrap .form select,
  .form-wrap .form textarea { font-size: 16px; }
}

/* Ajustes finais de consistência visual */
.institutional-page,
.solution-detail-page,
.privacy-page,
.insurance-page,
.home-page {
  --premium-blue: #0070d8;
  --premium-blue-light: #0070d8;
  --solution-blue: #0070d8;
  --solution-cyan: #0070d8;
  --institutional-blue: #0070d8;
  --insurance-blue: #0070d8;
}
.institutional-split.story-origin-team { grid-template-columns: minmax(0, 1.36fr) minmax(340px, .64fr); gap: 48px; }

/* A seção de sócios deve ter a mesma escala da seção equivalente da home. */
.story-page .story-origin-team {
  width: min(1200px, calc(100% - 48px));
}
.story-page .story-team-block .team-roster-title { padding: 16px 20px; }
.story-page .story-team-block .team-roster-grid article {
  min-height: 92px;
  padding: 15px 13px;
}
.story-page .story-team-block .team-roster-grid strong { font-size: 12px; }
.story-page .story-team-block .team-roster-grid small { font-size: 9px; }

@media (max-width: 1160px) {
  .story-page .story-origin-team { width: min(1200px, calc(100% - 36px)); }
}

@media (max-width: 640px) {
  .story-page .story-origin-team { width: min(1200px, calc(100% - 28px)); }
}

@media (max-width: 980px) {
  .institutional-split.story-origin-team { grid-template-columns: 1fr; gap: 58px; }
}

/* Altura única para os heros de Soluções e LGPD */
.solution-detail-page .solution-hero,
.privacy-page .privacy-hero { min-height: 720px; }

@media (max-width: 980px) {
  .solution-detail-page .solution-hero,
  .privacy-page .privacy-hero { min-height: 610px; }
}

@media (max-width: 640px) {
  .solution-detail-page .solution-hero,
  .privacy-page .privacy-hero { min-height: 660px; }
  .privacy-hero-actions { align-items: stretch; flex-direction: column; }
  .privacy-hero-actions .button { width: 100%; }
  .privacy-hero-link { align-self: flex-start; }
  .privacy-hero-assurances { flex-direction: column; gap: 9px; }
}

/* Padronização global de todos os heros do site */
:root { --global-hero-height: 720px; }
.hero,
.page-hero,
.corporate-hero,
.campaign-hero,
.institutional-hero,
.solution-detail-page .solution-hero,
.privacy-page .privacy-hero,
.insurance-hero {
  height: var(--global-hero-height);
  min-height: var(--global-hero-height);
}

.hero-media,
.hero-overlay,
.campaign-hero-media,
.institutional-hero > img,
.solution-hero > img,
.privacy-hero > img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}
.corporate-hero .hero-media { background-size: cover; background-position: center 54%; }
.campaign-hero--implantacao .campaign-hero-media { background-position: center 52%; }
.campaign-hero--troca .campaign-hero-media { background-position: center 58%; }
.institutional-hero > img { object-position: center; }
.story-hero > img { object-position: center 58%; }
.team-hero > img { object-position: center 48%; }
.solution-hero > img { object-position: center; }
.solution-implantacao .solution-hero > img { object-position: center 62%; }
.solution-pessoas .solution-hero > img { object-position: center 55%; }
.solution-digital .solution-hero > img { object-position: center 45%; }
.solution-consultoria .solution-hero > img { object-position: center 52%; }
.privacy-hero > img { object-position: center 47%; }
.insurance-hero-photo { width: 100%; height: 430px; object-fit: cover; object-position: center; }

@media (max-width: 980px) {
  :root { --global-hero-height: 610px; }
  .insurance-hero-photo { height: 360px; }
}

@media (max-width: 640px) {
  :root { --global-hero-height: 660px; }
  .insurance-hero-photo { height: 300px; }
  .page-hero .page-title { width: 100%; }
}

/* Conteúdo longo em telas estreitas precisa crescer sem ser cortado. */
@media (max-width: 640px) {
  .campaign-hero,
  .insurance-hero {
    height: auto;
    min-height: var(--global-hero-height);
  }
}

/* Implantação: composição mais compacta para manter todo o conteúdo legível. */
.campaign-hero--implantacao .campaign-copy h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(40px, 4.35vw, 58px);
}
.campaign-hero--implantacao .campaign-copy > p {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
}
.campaign-hero--implantacao .campaign-list {
  gap: 7px;
  margin-top: 20px;
}
.campaign-hero--implantacao .campaign-trust {
  margin-top: 20px;
}

@media (max-width: 980px) {
  .campaign-hero {
    height: auto;
    min-height: var(--global-hero-height);
  }
  .campaign-hero-grid {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 640px) {
  .campaign-hero--implantacao .campaign-copy h1 { font-size: 34px; }
  .campaign-hero--implantacao .campaign-copy > p { font-size: 15px; }
  .campaign-hero--implantacao .campaign-list li { font-size: 12px; line-height: 1.45; }
  .campaign-hero--implantacao .campaign-trust { gap: 6px; margin-top: 17px; }
}

/* A altura é uma base visual; o conteúdo da implantação nunca deve ser recortado. */
.campaign-hero--implantacao {
  height: auto;
  min-height: var(--global-hero-height);
  overflow: visible;
}

/* Solução Implantação: todo o bloco textual precisa caber dentro da hero. */
.solution-implantacao .solution-hero-content {
  padding-top: 62px;
  padding-bottom: 54px;
}
.solution-implantacao .solution-breadcrumb { margin-bottom: 22px; }
.solution-implantacao .solution-hero h1 {
  max-width: 980px;
  margin-top: 16px;
  margin-bottom: 18px;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.05;
}
.solution-implantacao .solution-hero p {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
}
.solution-implantacao .solution-assurances {
  gap: 18px;
  margin-top: 20px;
}

@media (max-width: 980px) {
  .solution-implantacao .solution-hero {
    height: auto;
    min-height: var(--global-hero-height);
    overflow: visible;
  }
  .solution-implantacao .solution-hero-content {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}

@media (max-width: 640px) {
  .solution-implantacao .solution-hero h1 { font-size: 34px; }
  .solution-implantacao .solution-hero p { font-size: 15px; }
  .solution-implantacao .solution-assurances { gap: 8px; }
}

/* Bento de soluções: cada linha fecha quatro colunas sem áreas vazias. */
.service-bento > .service-accent {
  grid-column: span 2;
  order: 4;
}
.service-bento > :nth-child(5) {
  grid-column: span 2;
  order: 9;
}
.service-bento > :nth-child(6) { order: 5; }
.service-bento > :nth-child(7) { order: 6; }
.service-bento > :nth-child(8) { order: 7; }
.service-bento > :nth-child(9) { order: 8; }

@media (max-width: 640px) {
  .service-bento > .service-premium-card,
  .service-bento > .service-accent,
  .service-bento > :nth-child(5) {
    grid-column: auto;
    order: initial;
  }
}

/* Bento de solucoes: os paineis duplos alternam entre esquerda e direita. */
.service-bento {
  grid-template-areas:
    "one one two three"
    "four five six six"
    "seven seven eight nine";
}
.service-bento > :nth-child(1) { grid-area: one; }
.service-bento > :nth-child(2) { grid-area: nine; }
.service-bento > :nth-child(3) { grid-area: three; }
.service-bento > :nth-child(4) { grid-area: six; }
.service-bento > :nth-child(5) { grid-area: seven; }
.service-bento > :nth-child(6) { grid-area: eight; }
.service-bento > :nth-child(7) { grid-area: two; }
.service-bento > :nth-child(8) { grid-area: four; }
.service-bento > :nth-child(9) { grid-area: five; }

/* Imagens sutis por solucao para dar profundidade sem comprometer a leitura. */
.service-premium-card { --card-image: url("../img/condominio-noturno.webp"); }
.service-bento > :nth-child(1) { --card-image: url("../img/solucao-financeira.png"); }
.service-bento > :nth-child(2) { --card-image: url("../img/instalacao-condominios.webp"); }
.service-bento > :nth-child(3) { --card-image: url("../img/tecnologia-gestao.webp"); }
.service-bento > :nth-child(4) { --card-image: url("../img/equipe-gestao.webp"); }
.service-bento > :nth-child(5) { --card-image: url("../img/solucao-juridica.png"); }
.service-bento > :nth-child(6) { --card-image: url("../img/solucao-assembleias.png"); }
.service-bento > :nth-child(7) { --card-image: url("../img/departamento-pessoal-equipe.webp"); }
.service-bento > :nth-child(8) { --card-image: url("../img/solucao-documentos.png"); }
.service-bento > :nth-child(9) { --card-image: url("../img/controle-vencimentos.webp"); }

.service-premium-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(235, 247, 252, .72)), var(--card-image);
  background-position: center;
  background-size: cover;
  content: "";
  opacity: .18;
  pointer-events: none;
  transition: opacity .25s ease, transform .45s ease;
}
.service-premium-card:hover::before { opacity: .28; transform: scale(1.04); }
.service-featured::before {
  display: block;
  background-image: var(--home-final-hero-overlay), var(--home-final-hero-vignette), var(--card-image);
  opacity: 1;
}
.service-accent::before {
  display: block;
  background-image: var(--home-final-hero-overlay), var(--home-final-hero-vignette), var(--card-image);
  opacity: 1;
}
.service-featured:hover::before,
.service-accent:hover::before { opacity: 1; }

@media (max-width: 980px) {
  .service-bento {
    grid-template-areas:
      "one one"
      "two three"
      "four five"
      "six six"
      "seven seven"
      "eight nine";
  }
}

@media (max-width: 640px) {
  .service-bento {
    grid-template-areas:
      "one"
      "two"
      "three"
      "four"
      "five"
      "six"
      "seven"
      "eight"
      "nine";
  }
}

/* O painel juridico segue a mesma assinatura visual do painel financeiro. */
.service-bento > :nth-child(5) {
  background: var(--premium-navy);
  border-color: var(--premium-navy);
}
.service-bento > :nth-child(5) svg { stroke: #5dcbfb; }
.service-bento > :nth-child(5) h3 { color: #fff; font-size: 28px; }
.service-bento > :nth-child(5) p { max-width: 500px; color: rgba(255, 255, 255, .6); }
.service-bento > :nth-child(5) small { color: #5dcbfb; }
.service-bento > :nth-child(5) .service-index { color: rgba(255, 255, 255, .4); }
.service-bento > :nth-child(5)::before {
  display: block;
  background-image: var(--home-final-hero-overlay), var(--home-final-hero-vignette), var(--card-image);
  opacity: 1;
}
.service-bento > :nth-child(5)::after { --card-grid-color: rgba(255, 255, 255, .17); }

/* Ajuste final de tom: os dois paineis duplos ficam mais profundos e uniformes. */
.service-bento > :nth-child(1),
.service-bento > :nth-child(5) {
  background: var(--premium-navy);
  border-color: var(--premium-navy);
}
.service-bento > :nth-child(1)::before,
.service-bento > :nth-child(5)::before {
  background-image: var(--home-final-hero-overlay), var(--home-final-hero-vignette), var(--card-image);
  opacity: 1;
}
.service-bento > :nth-child(1):hover::before,
.service-bento > :nth-child(5):hover::before { opacity: 1; }

/* Solucoes: fundos claros com formas suaves inspiradas na identidade visual. */
.solution-detail-page {
  background: #f2f8fb;
}
.solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 92% 8%, rgba(0, 112, 216, .11), transparent 36%),
    linear-gradient(145deg, rgba(247, 251, 253, .96), rgba(232, 244, 249, .88));
}
.solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration)::before,
.solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration)::after {
  position: absolute;
  z-index: -1;
  width: 780px;
  height: 470px;
  border: 1px solid rgba(0, 112, 216, .14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration)::before {
  top: -275px;
  right: -285px;
  box-shadow: 0 0 0 42px rgba(0, 112, 216, .045), 0 0 0 96px rgba(0, 112, 216, .025);
  transform: rotate(-10deg);
}
.solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration)::after {
  bottom: -330px;
  left: -320px;
  border-color: rgba(0, 112, 216, .1);
  box-shadow: 0 0 0 38px rgba(0, 112, 216, .035), 0 0 0 88px rgba(0, 112, 216, .022);
  transform: rotate(12deg);
}
.solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration) > * {
  position: relative;
  z-index: 1;
}
.solution-detail-page .solution-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 92% 10%, rgba(0, 112, 216, .1), transparent 38%),
    linear-gradient(145deg, rgba(242, 249, 252, .96), rgba(225, 240, 247, .9));
}
.solution-detail-page .solution-cta::before {
  position: absolute;
  z-index: -1;
  top: -250px;
  right: -290px;
  width: 760px;
  height: 430px;
  border: 1px solid rgba(0, 112, 216, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(0, 112, 216, .04), 0 0 0 92px rgba(0, 112, 216, .022);
  content: "";
  pointer-events: none;
}
.solution-detail-page .solution-cta-grid { position: relative; z-index: 1; }

@media (max-width: 640px) {
  .solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration)::before,
  .solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration)::after {
    width: 620px;
    height: 380px;
  }
  .solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration)::before {
    top: -245px;
    right: -390px;
  }
  .solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration)::after {
    bottom: -270px;
    left: -390px;
  }
}

/* Continuidade entre as secoes claras: um unico fundo atravessa toda a pagina. */
.solution-detail-page main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 94% 16%, rgba(0, 112, 216, .11), transparent 30%),
    radial-gradient(ellipse at 4% 43%, rgba(0, 112, 216, .07), transparent 28%),
    linear-gradient(145deg, #f8fbfd 0%, #edf7fb 48%, #e6f3f8 100%);
}
.solution-detail-page main::before,
.solution-detail-page main::after {
  position: absolute;
  z-index: -1;
  width: 820px;
  height: 500px;
  border: 1px solid rgba(0, 112, 216, .13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.solution-detail-page main::before {
  top: 730px;
  right: -310px;
  box-shadow: 0 0 0 45px rgba(0, 112, 216, .045), 0 0 0 102px rgba(0, 112, 216, .025);
  transform: rotate(-10deg);
}
.solution-detail-page main::after {
  top: 1250px;
  left: -350px;
  border-color: rgba(0, 112, 216, .1);
  box-shadow: 0 0 0 42px rgba(0, 112, 216, .035), 0 0 0 94px rgba(0, 112, 216, .022);
  transform: rotate(12deg);
}
.solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration),
.solution-detail-page .solution-cta {
  background: transparent !important;
}
.solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration)::before,
.solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration)::after,
.solution-detail-page .solution-cta::before {
  display: none;
}

@media (max-width: 640px) {
  .solution-detail-page main::before,
  .solution-detail-page main::after {
    width: 640px;
    height: 390px;
  }
  .solution-detail-page main::before {
    top: 690px;
    right: -390px;
  }
  .solution-detail-page main::after {
    top: 1120px;
    left: -410px;
  }
}

/* Mais profundidade nas partes longas e claras, sem criar novas faixas de corte. */
.solution-detail-page main {
  background:
    radial-gradient(ellipse 900px 520px at 96% 14%, rgba(0, 112, 216, .12), transparent 68%),
    radial-gradient(ellipse 820px 540px at 2% 40%, rgba(0, 112, 216, .075), transparent 70%),
    radial-gradient(ellipse 980px 560px at 94% 72%, rgba(79, 194, 243, .1), transparent 68%),
    radial-gradient(ellipse 760px 480px at 8% 93%, rgba(0, 112, 216, .06), transparent 70%),
    linear-gradient(145deg, #f8fbfd 0%, #edf7fb 48%, #e6f3f8 100%);
}

/* Faixas azuis ganham halos e anéis discretos em vez de uma cor chapada. */
.solution-detail-page .solution-practical,
.solution-detail-page .solution-process {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.solution-detail-page .solution-practical {
  background:
    radial-gradient(ellipse at 92% 8%, rgba(255, 255, 255, .15), transparent 32%),
    radial-gradient(ellipse at 8% 92%, rgba(3, 45, 111, .24), transparent 36%),
    linear-gradient(120deg, #0070d8 0%, #0876d4 48%, #075eaf 100%);
}
.solution-detail-page .solution-practical::before,
.solution-detail-page .solution-practical::after,
.solution-detail-page .solution-process::before {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.solution-detail-page .solution-practical::before {
  top: -220px;
  right: -185px;
  width: 650px;
  height: 390px;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, .055), 0 0 0 82px rgba(255, 255, 255, .028);
  transform: rotate(-12deg);
}
.solution-detail-page .solution-practical::after {
  bottom: -240px;
  left: -260px;
  width: 620px;
  height: 370px;
  border-color: rgba(1, 42, 105, .25);
  box-shadow: 0 0 0 40px rgba(1, 42, 105, .1), 0 0 0 84px rgba(1, 42, 105, .055);
  transform: rotate(10deg);
}
.solution-detail-page .solution-process {
  background:
    radial-gradient(ellipse at 88% 12%, rgba(79, 194, 243, .15), transparent 34%),
    linear-gradient(120deg, #22282d 0%, #173c54 58%, #12466a 100%);
}
.solution-detail-page .solution-process::before {
  top: -220px;
  right: -270px;
  width: 760px;
  height: 450px;
  box-shadow: 0 0 0 45px rgba(79, 194, 243, .045), 0 0 0 95px rgba(79, 194, 243, .022);
  transform: rotate(-9deg);
}
.solution-detail-page .solution-practical > .container,
.solution-detail-page .solution-process > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .solution-detail-page .solution-practical::before,
  .solution-detail-page .solution-practical::after,
  .solution-detail-page .solution-process::before {
    transform: scale(.78);
  }
}

/* Quem Somos: continuidade visual entre as areas claras e os blocos de destaque. */
.institutional-page {
  background: #f2f8fb;
}
.institutional-page main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 520px at 96% 15%, rgba(0, 112, 216, .12), transparent 68%),
    radial-gradient(ellipse 820px 540px at 2% 42%, rgba(0, 112, 216, .075), transparent 70%),
    radial-gradient(ellipse 980px 560px at 94% 76%, rgba(79, 194, 243, .1), transparent 68%),
    linear-gradient(145deg, #f8fbfd 0%, #edf7fb 48%, #e6f3f8 100%);
}
.institutional-page main::before,
.institutional-page main::after {
  position: absolute;
  z-index: -1;
  width: 820px;
  height: 500px;
  border: 1px solid rgba(0, 112, 216, .13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.institutional-page main::before {
  top: 730px;
  right: -310px;
  box-shadow: 0 0 0 45px rgba(0, 112, 216, .045), 0 0 0 102px rgba(0, 112, 216, .025);
  transform: rotate(-10deg);
}
.institutional-page main::after {
  top: 1250px;
  left: -350px;
  border-color: rgba(0, 112, 216, .1);
  box-shadow: 0 0 0 42px rgba(0, 112, 216, .035), 0 0 0 94px rgba(0, 112, 216, .022);
  transform: rotate(12deg);
}
.institutional-page .institutional-section:not(.who-section),
.institutional-page .institutional-cta {
  background: transparent !important;
}
.institutional-page .institutional-section:not(.who-section) > *,
.institutional-page .institutional-cta-grid {
  position: relative;
  z-index: 1;
}

/* As areas azuis e escuras recebem a mesma linguagem de halos e aneis. */
.institutional-page .institutional-numbers,
.institutional-page .who-section,
.institutional-page .company-operation {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.institutional-page .institutional-numbers {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(79, 194, 243, .15), transparent 34%),
    linear-gradient(115deg, #252b30 0%, #173a50 58%, #12466a 100%);
}
.institutional-page .who-section {
  background:
    radial-gradient(ellipse at 10% 90%, rgba(0, 112, 216, .2), transparent 34%),
    linear-gradient(120deg, #252a2f 0%, #1c384b 62%, #123f5e 100%);
}
.institutional-page .company-operation {
  background:
    radial-gradient(ellipse at 90% 8%, rgba(79, 194, 243, .14), transparent 34%),
    linear-gradient(120deg, #22282d 0%, #173b52 58%, #12486b 100%);
}
.institutional-page .institutional-numbers::before,
.institutional-page .who-section::before,
.institutional-page .company-operation::before {
  position: absolute;
  z-index: -1;
  top: -220px;
  right: -270px;
  width: 760px;
  height: 450px;
  border: 1px solid rgba(79, 194, 243, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(79, 194, 243, .045), 0 0 0 95px rgba(79, 194, 243, .022);
  content: "";
  pointer-events: none;
  transform: rotate(-9deg);
}
.institutional-page .institutional-numbers > .container,
.institutional-page .who-section > .container,
.institutional-page .company-operation > .container {
  position: relative;
  z-index: 1;
}
.institutional-page .institutional-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.institutional-page .institutional-cta::before {
  position: absolute;
  z-index: -1;
  top: -245px;
  right: -300px;
  width: 760px;
  height: 440px;
  border: 1px solid rgba(0, 112, 216, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(0, 112, 216, .04), 0 0 0 92px rgba(0, 112, 216, .022);
  content: "";
  pointer-events: none;
}

@media (max-width: 640px) {
  .institutional-page main::before,
  .institutional-page main::after,
  .institutional-page .institutional-numbers::before,
  .institutional-page .who-section::before,
  .institutional-page .company-operation::before {
    transform: scale(.78);
  }
}

/* Pesquisa rapida de satisfacao no lugar do painel de gestao do hero. */
.home-page .hero-command { display: none; }
.hero-notice {
  position: relative;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
  background: linear-gradient(145deg, rgba(5, 44, 70, .78), rgba(7, 35, 54, .70));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
  padding: 24px 24px 20px;
  color: #fff;
}
.hero-notice[hidden] { display: none; }
.hero-notice::before {
  position: absolute;
  top: -135px;
  right: -145px;
  width: 330px;
  height: 230px;
  border: 1px solid rgba(79, 194, 243, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(79, 194, 243, .045), 0 0 0 48px rgba(79, 194, 243, .022);
  content: "";
  pointer-events: none;
}
.hero-notice > * { position: relative; z-index: 1; }
.notice-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 255, .14); padding-bottom: 17px; }
.notice-kicker { display: flex; align-items: center; gap: 9px; color: #54c7f5; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.notice-kicker i { width: 18px; height: 1px; background: currentColor; }
.notice-mark { color: #54c7f5; font-size: 21px; line-height: 1; }
.notice-body { padding: 25px 0 23px; }
.notice-body h2 { max-width: 340px; margin: 0 0 10px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 25px; font-weight: 600; line-height: 1.25; }
.notice-body p { max-width: 350px; margin: 0; color: rgba(255, 255, 255, .68); font-size: 13px; line-height: 1.65; }
.notice-link { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 16px; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.notice-link:hover { color: #8bdcff; }

.hero-survey {
  position: relative;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
  background: linear-gradient(145deg, rgba(5, 44, 70, .88), rgba(7, 35, 54, .82));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
  padding: 24px 24px 20px;
  color: #fff;
}
.hero-survey::before {
  position: absolute;
  top: -135px;
  right: -145px;
  width: 330px;
  height: 230px;
  border: 1px solid rgba(79, 194, 243, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(79, 194, 243, .045), 0 0 0 48px rgba(79, 194, 243, .022);
  content: "";
  pointer-events: none;
}
.hero-survey > * { position: relative; z-index: 1; }
.hero-survey input[name="website"] { display: none; }
.survey-head { border-bottom: 1px solid rgba(255, 255, 255, .14); padding-bottom: 17px; }
.survey-kicker { display: flex; align-items: center; gap: 9px; color: #54c7f5; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.survey-kicker i { width: 18px; height: 1px; background: currentColor; }
.survey-head h2 { max-width: 330px; margin: 13px 0 7px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 23px; font-weight: 600; line-height: 1.25; }
.survey-head p { margin: 0; color: rgba(255, 255, 255, .62); font-size: 11px; line-height: 1.55; }
.survey-question { min-width: 0; margin: 17px 0 0; border: 0; padding: 0; }
.survey-question + .survey-question { margin-top: 17px; border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 16px; }
.survey-question legend { padding: 0; color: rgba(255, 255, 255, .88); font-size: 11px; font-weight: 700; }
.survey-options { display: grid; gap: 6px; margin-top: 10px; }
.survey-rating-options { grid-template-columns: repeat(5, 1fr); }
.survey-recommend-options { grid-template-columns: repeat(3, 1fr); }
.survey-option { position: relative; display: flex; min-width: 0; flex-direction: column; align-items: center; gap: 5px; cursor: pointer; text-align: center; }
.survey-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.survey-option span { width: 100%; display: grid; min-height: 34px; place-items: center; border: 1px solid rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .07); color: #fff; font-size: 11px; font-weight: 800; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.survey-recommend-options .survey-option span { font-size: 10px; }
.survey-option small { color: rgba(255, 255, 255, .53); font-size: 8px; line-height: 1.1; }
.survey-option:hover span { border-color: rgba(84, 199, 245, .8); background: rgba(0, 112, 216, .35); transform: translateY(-1px); }
.survey-option input:checked + span { border-color: #168bea; background: #0070d8; box-shadow: 0 0 0 2px rgba(84, 199, 245, .18); }
.survey-option input:focus-visible + span { outline: 2px solid #fff; outline-offset: 2px; }
.survey-comment { display: flex; align-items: center; gap: 5px; margin-top: 16px; color: rgba(255, 255, 255, .78); font-size: 10px; font-weight: 700; }
.survey-comment small { color: rgba(255, 255, 255, .47); font-size: 8px; font-weight: 500; }
.hero-survey textarea { width: 100%; min-height: 48px; margin-top: 7px; resize: vertical; border: 1px solid rgba(255, 255, 255, .2); border-radius: 2px; background: rgba(255, 255, 255, .08); padding: 9px 10px; color: #fff; font: inherit; font-size: 11px; }
.hero-survey textarea::placeholder { color: rgba(255, 255, 255, .44); }
.hero-survey textarea:focus { border-color: #54c7f5; outline: 2px solid rgba(84, 199, 245, .2); }
.survey-consent { display: flex; align-items: flex-start; gap: 7px; margin-top: 12px; color: rgba(255, 255, 255, .55); font-size: 8px; font-weight: 500; line-height: 1.45; }
.survey-consent input { flex: 0 0 auto; margin-top: 2px; accent-color: #168bea; }
.survey-consent a { color: #8bdcff; text-decoration: underline; }
.survey-submit { width: 100%; min-height: 43px; margin-top: 15px; border: 0; cursor: pointer; font-size: 11px; }
.survey-note { margin: 10px 0 0; color: rgba(255, 255, 255, .4); font-size: 8px; text-align: center; }

@media (max-width: 640px) {
  .home-page .hero-notice { width: 100%; max-width: none; }
  .home-page .hero-survey { width: 100%; max-width: none; }
  .hero-notice { padding: 21px 18px 18px; }
  .hero-survey { padding: 21px 18px 18px; }
  .notice-body h2 { font-size: 22px; }
  .survey-head h2 { font-size: 21px; }
}

/* Dimensiona o hero para manter a barra de princípios na primeira tela. */
.home-page .corporate-hero {
  height: auto;
  min-height: clamp(520px, calc(100vh - 420px), 760px);
}
.home-page .corporate-hero-grid {
  padding-top: 52px;
  padding-bottom: 52px;
}
.survey-details { display: grid; grid-template-columns: 1fr 1.2fr; gap: 8px; margin-top: 14px; }
.survey-details label { display: flex; flex-direction: column; gap: 5px; min-width: 0; color: rgba(255, 255, 255, .76); font-size: 9px; font-weight: 700; }
.survey-details input { width: 100%; min-height: 34px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 2px; background: rgba(255, 255, 255, .08); padding: 8px 9px; color: #fff; font: inherit; font-size: 11px; }
.survey-details input:focus { border-color: #54c7f5; outline: 2px solid rgba(84, 199, 245, .2); }

@media (max-width: 980px) {
  .home-page .corporate-hero { min-height: auto; }
  .home-page .corporate-hero-grid { padding-top: 72px; padding-bottom: 92px; }
}

@media (max-width: 640px) {
  .home-page .corporate-hero { min-height: auto; }
  .home-page .corporate-hero-grid {
    grid-template-columns: 1fr;
    min-width: 0;
    padding-top: 55px;
    padding-bottom: 75px;
  }
  .home-page .corporate-hero-copy {
    width: min(100%, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    min-width: 0;
  }
  .home-page .corporate-hero h1 {
    width: min(100%, 350px);
    max-width: calc(100vw - 28px);
    font-size: clamp(30px, 8.1vw, 35px);
    overflow-wrap: break-word;
  }
  .home-page .corporate-hero-copy > p {
    width: min(100%, 350px);
    max-width: calc(100vw - 28px);
    overflow-wrap: break-word;
  }
  .home-page .hero-actions,
  .home-page .hero-assurances {
    width: min(100%, 350px);
    max-width: calc(100vw - 28px);
  }
  .survey-details { grid-template-columns: 1fr; }
}

/* Em monitores grandes, reserva uma altura fixa para a barra aparecer na primeira tela. */
@media (min-width: 981px) {
  .home-page .corporate-hero {
    height: 720px;
    min-height: 720px;
  }
  .home-page .corporate-hero-grid {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

/* Home: foto clara e movimento leve apenas por transform. */
.home-page .hero-media {
  background-image: url('../img/home-hero-slide-family-v1.webp');
  background-position: center 52%;
  overflow: hidden;
  transform: scale(1.012);
}
.home-page .hero-slider {
  animation: none;
  transform: none;
  will-change: auto;
}
.home-page .hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--hero-slide-image);
  background-position: center 52%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.012) translate3d(0, 0, 0);
  transition: opacity 1.25s ease-in-out, transform 6.8s ease-out;
  will-change: opacity, transform;
}
.home-page .hero-slide.is-active {
  opacity: 1;
  transform: scale(1.036) translate3d(-8px, -3px, 0);
}
.home-page .hero-slide:nth-child(1),
.home-page .hero-slide:nth-child(2),
.home-page .hero-slide:nth-child(4) {
  background-position: center 50%;
}
.home-page .hero-slide:nth-child(3) {
  background-position: center 56%;
}
.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 24, 34, .74) 0%, rgba(15, 37, 54, .56) 34%, rgba(16, 55, 76, .26) 59%, rgba(16, 55, 76, .07) 82%, transparent 100%),
    linear-gradient(0deg, rgba(8, 23, 35, .18), transparent 44%);
}
.home-page .corporate-hero::before {
  opacity: .18;
  background-size: 104px 104px;
}
.home-page .corporate-hero h1 {
  max-width: 690px;
  text-shadow: 0 12px 34px rgba(5, 22, 34, .18);
}
.home-page .corporate-hero h1 em {
  color: #1593e6;
  text-shadow: 0 8px 24px rgba(4, 34, 54, .18);
}
.home-page .corporate-hero-copy > p {
  max-width: 630px;
  color: rgba(255, 255, 255, .78);
}
.home-page .hero-survey {
  display: none !important;
}
.home-page .hero-notice::before,
.home-page .hero-survey::before {
  opacity: .42;
}
.home-page .notice-head,
.home-page .notice-link,
.home-page .survey-head,
.home-page .survey-question + .survey-question {
  border-color: rgba(255, 255, 255, .10);
}
.home-page .scroll-cue {
  color: rgba(255, 255, 255, .56);
}

@keyframes home-hero-drift {
  from { transform: scale(1.012) translate3d(0, 0, 0); }
  to { transform: scale(1.035) translate3d(-10px, -4px, 0); }
}

/* Home: continuidade entre tecnologia, processo, FAQ e demais areas claras. */
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) main {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  overflow-y: visible;
  background:
    radial-gradient(ellipse 900px 520px at 96% 24%, rgba(0, 112, 216, .12), transparent 68%),
    radial-gradient(ellipse 820px 540px at 2% 47%, rgba(0, 112, 216, .075), transparent 70%),
    radial-gradient(ellipse 980px 560px at 94% 76%, rgba(79, 194, 243, .1), transparent 68%),
    #edf7fb;
}
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) main::before,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) main::after {
  position: absolute;
  z-index: 0;
  width: 820px;
  height: 500px;
  border: 1px solid rgba(0, 112, 216, .13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) main::before {
  top: 980px;
  right: -315px;
  box-shadow: 0 0 0 45px rgba(0, 112, 216, .045), 0 0 0 102px rgba(0, 112, 216, .025);
  transform: rotate(-10deg);
}
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) main::after {
  top: 1640px;
  left: -350px;
  border-color: rgba(0, 112, 216, .1);
  box-shadow: 0 0 0 42px rgba(0, 112, 216, .035), 0 0 0 94px rgba(0, 112, 216, .022);
  transform: rotate(12deg);
}
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .about-premium,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .services-premium,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .technology-section,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .process-section,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .regions-section,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .faq-section {
  background: transparent !important;
}

/* Uma camada única de formas evita que cada seção crie um corte ou uma forma
   por cima da outra. O conteúdo de cada seção permanece sempre à frente. */
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) main > section {
  position: relative;
  z-index: 1;
}
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .about-premium,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .services-premium,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .technology-section,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .process-section,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .regions-section,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .faq-section {
  background-image: none !important;
}
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .about-premium::before,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .about-premium::after,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .services-premium::before,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .technology-section::before,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .technology-section::after,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .process-section::after,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .regions-section::before,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .regions-section::after,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .faq-section::before {
  display: none;
}
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) .process-icon {
  box-shadow: 0 0 0 10px #edf7fb;
}
.home-page .premium-section.about-home-overview { padding: 82px 0; }
.home-page .about-home-overview > .container {
  width: min(1340px, calc(100% - 64px));
}
.home-page .about-home-overview .about-premium-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, .78fr);
  align-items: center;
  gap: 42px 72px;
}
.home-page .about-home-overview .about-team-block,
.home-page .about-home-overview .about-copy { min-width: 0; }
.home-page .about-home-overview .about-visual-team {
  width: 100%;
  min-height: 0;
  margin: 0;
}
.home-page .about-home-overview .about-visual-team::before { display: none; }
.home-page .about-home-overview .about-visual-team img {
  height: auto;
  aspect-ratio: 1672 / 941;
  box-shadow: none;
}
.home-page .about-home-overview .about-image-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 0;
}
.home-page .about-home-overview .about-experience {
  display: flex;
  align-items: center;
  gap: 14px;
}
.home-page .about-home-overview .about-experience strong {
  color: var(--premium-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
.home-page .about-home-overview .about-experience > span {
  color: #526773;
  font-size: 12px;
  line-height: 1.5;
}
.home-page .about-home-overview .about-image-footer > p {
  margin: 0;
  border-left: 1px solid #cbdde5;
  padding-left: 24px;
  color: var(--premium-navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}
.home-page .about-home-overview .kicker { margin-bottom: 18px; letter-spacing: 0; }
.home-page .about-home-overview .about-copy h2 {
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0;
}
.home-page .about-home-overview .about-copy .lead {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.65;
}
.home-page .about-home-overview .about-copy > p:not(.lead) {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.75;
}
.home-page .about-home-overview .text-link { letter-spacing: 0; }
.home-page .about-home-overview .about-points {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  border-top: 1px solid #cbdde5;
  padding-top: 26px;
}
.home-page .about-home-overview .about-points > div {
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  border: 0;
  padding: 0;
}
.home-page .about-home-overview .about-points strong {
  margin-bottom: 6px;
  font-size: 15px;
}
.home-page .about-home-overview .about-points p { line-height: 1.65; }

@media (max-width: 980px) {
  .home-page .premium-section.about-home-overview { padding: 68px 0; }
  .home-page .about-home-overview > .container { width: min(720px, calc(100% - 40px)); }
  .home-page .about-home-overview .about-premium-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .home-page .about-home-overview .about-copy { grid-row: 1; }
  .home-page .about-home-overview .about-copy h2 { font-size: 42px; }
  .home-page .about-home-overview .about-team-block { width: 100%; }
}

@media (max-width: 640px) {
  .home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) main::before,
  .home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) main::after {
    width: 640px;
    height: 390px;
    transform: scale(.78);
  }
  .home-page .premium-section.about-home-overview { padding: 48px 0; }
  .home-page .about-home-overview > .container { width: calc(100% - 28px); }
  .home-page .about-home-overview .about-copy h2 { font-size: 34px; }
  .home-page .about-home-overview .about-points {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding-top: 22px;
  }
  .home-page .about-home-overview .about-image-footer { gap: 12px; padding-top: 18px; }
  .home-page .about-home-overview .about-experience { gap: 8px; }
  .home-page .about-home-overview .about-experience strong { font-size: 34px; }
  .home-page .about-home-overview .about-experience > span { font-size: 11px; }
  .home-page .about-home-overview .about-image-footer > p { padding-left: 12px; font-size: 11px; }
}

/* Remoção global dos anéis decorativos. Círculos funcionais de ícones e
   indicadores permanecem intactos; somente os elementos de fundo são ocultos. */
.section::before,
.section::after,
.about-premium::before,
.about-premium::after,
.technology-section::before,
.technology-section::after,
.regions-section::before,
.regions-section::after,
.numbers-section::after,
.contact-ribbon::before,
.premium-footer::before,
.main-header::after,
.services-premium::before,
.process-section::after,
.faq-section::before,
.privacy-hero::after,
.privacy-content-section::before,
.tbs-partner::before,
.image-break::after,
.campaign-hero::after,
.insurance-pricing::after,
.insurance-coverage::after,
.page-hero::before,
.solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration)::before,
.solution-detail-page .solution-section:not(.solution-process):not(.solution-practical):not(.catalog-integration)::after,
.solution-detail-page .solution-cta::before,
.solution-detail-page .solution-practical::before,
.solution-detail-page .solution-practical::after,
.solution-detail-page .solution-process::before,
.solution-detail-page main::before,
.solution-detail-page main::after,
.institutional-page main::before,
.institutional-page main::after,
.institutional-page .institutional-numbers::before,
.institutional-page .who-section::before,
.institutional-page .company-operation::before,
.institutional-page .institutional-cta::before,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) main::before,
.home-page:not(.campaign-page):not(.privacy-page):not(.insurance-page) main::after,
.hero-survey::before,
.map-orbit,
.insurance-orbit {
  display: none !important;
}

/* A hero digital mantém a altura das demais soluções com conteúdo mais compacto. */
@media (min-width: 981px) {
  .solution-digital .solution-hero {
    height: 720px;
    min-height: 720px;
  }
  .solution-digital .solution-hero-content {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .solution-digital .solution-breadcrumb { margin-bottom: 24px; }
  .solution-digital .solution-hero h1 { margin-top: 16px; margin-bottom: 18px; }
  .solution-digital .solution-hero p { margin-bottom: 22px; line-height: 1.65; }
  .solution-digital .solution-assurances { margin-top: 24px; }
  .solution-digital .digital-app-availability { margin-top: 16px; }
}

@media (max-width: 980px) {
  .solution-digital .solution-hero {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .digital-app-availability {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .digital-app-availability img {
    width: 82px;
    border-width: 4px;
  }
}

/* Páginas de atendimento: hero fotográfica e formulário centralizado. */
.contact-page .page-hero {
  height: 430px;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 29, 43, .88), rgba(17, 54, 77, .64) 52%, rgba(7, 30, 46, .46)),
    url('../img/servicos-hero.webp') center 58% / cover no-repeat;
}
.contact-page .page-title {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}
.contact-page .page-hero::before,
.contact-page .page-hero::after {
  display: none !important;
  content: none;
}
.contact-page .breadcrumb {
  justify-content: center;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, .72);
}
.contact-page .page-title h1 {
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -.045em;
}
.contact-page .page-title p {
  margin: 12px auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}
.contact-page main > .section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 92% 12%, rgba(0, 112, 216, .1), transparent 36%),
    linear-gradient(145deg, #f8fbfd 0%, #edf7fb 100%);
  padding: 88px 0 112px;
}
.contact-page main > .section::before,
.contact-page main > .section::after {
  position: absolute;
  z-index: 0;
  top: 92px;
  display: block !important;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  width: clamp(165px, 14vw, 260px);
  height: 535px;
  border: 1px solid rgba(0, 112, 216, .14);
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 55px rgba(8, 48, 77, .1);
  content: "";
  pointer-events: none;
}
.contact-page main > .section::before {
  left: clamp(18px, 4vw, 72px);
  background-image:
    linear-gradient(180deg, rgba(12, 45, 66, .18), rgba(8, 39, 58, .62)),
    url('../img/servicos-hero.webp');
  background-position: 62% center;
}
.contact-page main > .section::after {
  right: clamp(18px, 4vw, 72px);
  background-image:
    linear-gradient(180deg, rgba(8, 39, 58, .16), rgba(8, 39, 58, .64)),
    url('../img/servicos-integracao.webp');
  background-position: 44% center;
}
.contact-page .form-wrap { position: relative; z-index: 1; }
.contact-page .form-wrap {
  display: flex;
  width: min(820px, calc(100% - 40px));
  flex-direction: column;
  align-items: center;
  gap: 34px;
  margin: 0 auto;
}
.contact-page .form-wrap > div:first-child {
  position: static;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  color: #5f7481;
  text-align: center;
}
.contact-page .form-wrap > div:first-child::before { display: none; }
.contact-page .form-wrap > div:first-child h2 {
  margin-bottom: 10px;
  color: var(--premium-navy);
  font-size: clamp(28px, 3vw, 38px);
}
.contact-page .form-wrap > div:first-child > p {
  max-width: 650px;
  margin: 0 auto 27px;
  color: #687d89;
  font-size: 15px;
}
.contact-page .form-wrap .info-strip {
  width: 100%;
  border: 1px solid #d8e6ed;
  border-radius: 12px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 14px 36px rgba(8, 48, 77, .06);
}
.contact-page .form-wrap .info-item {
  background: rgba(255, 255, 255, .56);
  color: #617783;
  text-align: left;
}
.contact-page .form-wrap .info-item strong { color: var(--premium-blue); }
.contact-page .form-wrap .grid.three {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.contact-page .form-wrap .grid.three .card {
  border: 1px solid #d8e6ed;
  border-radius: 10px;
  background: #fff;
  padding: 18px;
  text-align: left;
}
.contact-page .form-wrap .grid.three .card h3 { color: var(--premium-navy); }
.contact-page .form-wrap .grid.three .card p { color: #6d818d; }
.contact-page .form-wrap .form {
  position: relative;
  width: min(680px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(201, 220, 230, .82);
  border-radius: 20px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 28px 75px rgba(8, 48, 77, .13);
  padding: 44px 48px 48px;
}
.contact-page .form-wrap .form::before {
  height: 5px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #0070d8, #4bc2f4 58%, #b6e8fa);
}
.contact-page .form-wrap .form label {
  margin-top: 19px;
  color: #304b5c;
  font-size: 10px;
  letter-spacing: .04em;
}
.contact-page .form-wrap .form input,
.contact-page .form-wrap .form select,
.contact-page .form-wrap .form textarea {
  border: 1px solid #d5e2e9;
  border-radius: 10px;
  background: #f9fcfd;
  padding: 13px 15px;
}
.contact-page .form-wrap .form input:hover,
.contact-page .form-wrap .form select:hover,
.contact-page .form-wrap .form textarea:hover { border-color: #9fc4d5; }
.contact-page .form-wrap .form input:focus,
.contact-page .form-wrap .form select:focus,
.contact-page .form-wrap .form textarea:focus {
  border-color: #168bea;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 139, 234, .1);
}
.contact-page .form-wrap .form textarea { min-height: 125px; }
.contact-page .form-wrap .form .checks {
  border: 0;
  border-top: 1px solid #e2ebef;
  border-radius: 0;
  background: transparent;
  padding: 20px 0 4px;
}
.contact-page .form-wrap .btn.primary {
  min-height: 54px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 112, 216, .18);
}
.contact-page .form-wrap > div:first-child .info-strip { display: none; }

@media (max-width: 640px) {
  .contact-page .page-hero {
    height: 350px;
    min-height: 350px;
  }
  .contact-page .page-title p { font-size: 15px; }
  .contact-page main > .section { padding: 64px 0 82px; }
  .contact-page .form-wrap {
    width: min(100% - 28px, 680px);
    gap: 26px;
  }
  .contact-page .form-wrap .info-strip,
  .contact-page .form-wrap .grid.three { grid-template-columns: 1fr; }
  .contact-page .form-wrap .form { padding: 28px 20px 30px; }
}

@media (max-width: 1240px) {
  .contact-page main > .section::before,
  .contact-page main > .section::after { display: none !important; }
}

/* As páginas legadas de atendimento não usam <main>; esta regra aplica as
   imagens laterais diretamente à seção que contém o formulário. */
.contact-page > .section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 92% 12%, rgba(0, 112, 216, .1), transparent 36%),
    linear-gradient(145deg, #f8fbfd 0%, #edf7fb 100%);
}
.contact-page > .section::before,
.contact-page > .section::after {
  position: absolute;
  z-index: 0;
  top: 92px;
  display: block !important;
  width: clamp(165px, 14vw, 260px);
  height: 535px;
  border: 1px solid rgba(0, 112, 216, .14);
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 55px rgba(8, 48, 77, .1);
  content: "";
  pointer-events: none;
}
.contact-page > .section::before {
  left: clamp(18px, 4vw, 72px);
  background-image:
    linear-gradient(180deg, rgba(12, 45, 66, .18), rgba(8, 39, 58, .62)),
    url('../img/servicos-hero.webp');
  background-position: 62% center;
}
.contact-page > .section::after {
  right: clamp(18px, 4vw, 72px);
  background-image:
    linear-gradient(180deg, rgba(8, 39, 58, .16), rgba(8, 39, 58, .64)),
    url('../img/servicos-integracao.webp');
  background-position: 44% center;
}
.contact-page > .section .form-wrap { position: relative; z-index: 1; }

@media (max-width: 1240px) {
  .contact-page > .section::before,
  .contact-page > .section::after { display: none !important; }
}

/* Correção dos painéis laterais: sem a rotação herdada das antigas formas
   decorativas e com posicionamento independente em cada lado. */
.contact-page > .section::before,
.contact-page > .section::after {
  top: 108px;
  right: auto;
  bottom: auto;
  left: auto;
  transform: none !important;
  opacity: .9;
}
.contact-page > .section::before {
  left: clamp(18px, 4vw, 72px);
}
.contact-page > .section::after {
  right: clamp(18px, 4vw, 72px);
}

/* Os painéis laterais foram removidos; a área do formulário permanece limpa. */
.contact-page > .section::before,
.contact-page > .section::after {
  display: none !important;
  content: none !important;
}

/* Formulários em estilo página de agenda: papel, linhas leves e campos
   sublinhados, sem a moldura externa tradicional. */
.contact-page .form-wrap .form {
  overflow: visible;
  border: 0;
  border-radius: 2px;
  background-color: #fffefa;
  background-image:
    linear-gradient(90deg, transparent 0, transparent 62px, rgba(0, 112, 216, .13) 62px, rgba(0, 112, 216, .13) 63px, transparent 63px),
    repeating-linear-gradient(180deg, transparent 0, transparent 53px, rgba(0, 112, 216, .06) 53px, rgba(0, 112, 216, .06) 54px);
  box-shadow: 15px 16px 0 rgba(0, 112, 216, .055), 0 25px 58px rgba(8, 48, 77, .12);
  padding: 58px 48px 46px 82px;
}
.contact-page .form-wrap .form::before {
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  width: 4px;
  height: auto;
  border-radius: 2px 0 0 2px;
  background: linear-gradient(180deg, #0070d8, #51c6f2 48%, rgba(81, 198, 242, .1));
}
.contact-page .form-wrap .form::after {
  position: absolute;
  top: 25px;
  right: 38px;
  color: #8aa2af;
  content: "PÁGINA DE ATENDIMENTO";
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.contact-page .form-wrap .form input,
.contact-page .form-wrap .form select,
.contact-page .form-wrap .form textarea {
  border: 0 !important;
  border-bottom: 1px solid #c9dce5 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 11px 4px;
}
.contact-page .form-wrap .form input:focus,
.contact-page .form-wrap .form select:focus,
.contact-page .form-wrap .form textarea:focus {
  border-bottom-color: #0070d8 !important;
  outline: 0;
}
.contact-page .form-wrap .form textarea {
  min-height: 120px;
  background-image: repeating-linear-gradient(180deg, transparent 0, transparent 31px, rgba(0, 112, 216, .07) 31px, rgba(0, 112, 216, .07) 32px) !important;
}
.contact-page .form-wrap .form .checks {
  border-top: 1px solid rgba(0, 112, 216, .13);
  padding-top: 18px;
}
.contact-page .form-wrap .form .button,
.contact-page .form-wrap .form .btn {
  border-radius: 4px;
  box-shadow: 0 10px 22px rgba(0, 112, 216, .16);
}

@media (max-width: 640px) {
  .contact-page .form-wrap .form {
    box-shadow: 8px 10px 0 rgba(0, 112, 216, .045), 0 20px 45px rgba(8, 48, 77, .1);
    padding: 52px 23px 32px 57px;
  }
  .contact-page .form-wrap .form::after { right: 20px; font-size: 7px; }
}

/* Nova composição dos formulários: painel central translúcido sobre uma
   imagem clara, inspirado em uma página editorial de contato. */
.contact-page > .section {
  background:
    linear-gradient(90deg, rgba(238, 247, 251, .9), rgba(235, 246, 251, .78)),
    url('../img/empresa-tecnologia.webp') center 46% / cover no-repeat;
  padding: 96px 0 122px;
}
.contact-page .form-wrap {
  display: block;
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 4px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 30px 85px rgba(8, 48, 77, .16);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 54px 72px 62px;
}
.contact-page .form-wrap > div:first-child {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}
.contact-page .form-wrap > div:first-child:empty { display: none; }
.contact-page .form-wrap > div:first-child h2 {
  margin-bottom: 12px;
  color: #263d4b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.045em;
}
.contact-page .form-wrap > div:first-child > p {
  max-width: 610px;
  margin: 0 auto 18px;
  color: #6c808c;
  font-size: 14px;
}
.contact-page .form-wrap .grid.three {
  grid-template-columns: repeat(3, 1fr);
  margin: 22px auto 0 !important;
  text-align: left;
}
.contact-general .form-wrap .grid.three { grid-template-columns: repeat(2, 1fr); }
.contact-page .form-wrap .grid.three .card {
  background: rgba(255, 255, 255, .65);
  box-shadow: none;
}
.contact-page .form-wrap .form {
  width: 100%;
  margin: 24px auto 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  background-image: none;
  box-shadow: none;
  padding: 14px 0 0;
}
.contact-page .form-wrap .form::before,
.contact-page .form-wrap .form::after { display: none; content: none; }
.contact-page .form-wrap .form label {
  color: #486170;
  text-align: left;
}
.contact-page .form-wrap .form input,
.contact-page .form-wrap .form select,
.contact-page .form-wrap .form textarea {
  border: 1px solid rgba(157, 184, 197, .7) !important;
  border-radius: 2px !important;
  background: rgba(255, 255, 255, .72) !important;
  padding: 12px 13px;
}
.contact-page .form-wrap .form input:focus,
.contact-page .form-wrap .form select:focus,
.contact-page .form-wrap .form textarea:focus {
  border-color: #168bea !important;
  box-shadow: 0 0 0 3px rgba(22, 139, 234, .1) !important;
}
.contact-page .form-wrap .form textarea {
  min-height: 128px;
  background-image: none !important;
}
.contact-page .form-wrap .form .checks {
  margin-top: 22px;
  border-top: 1px solid rgba(157, 184, 197, .5);
  padding-top: 17px;
}
.contact-page .form-wrap .form .btn.primary {
  border-radius: 2px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Conteúdo comercial e redes sociais dentro da composição central. */
.contact-kicker {
  display: block;
  margin-bottom: 12px;
  color: #0070d8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 25px auto 0;
  border-top: 1px solid rgba(157, 184, 197, .45);
  padding-top: 18px;
}
.contact-socials > span {
  margin-right: 5px;
  color: #728792;
  font-size: 10px;
  font-weight: 700;
}
.contact-socials a {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid #b9d3df;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  color: #126b9f;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.contact-socials a:hover {
  border-color: #0070d8;
  background: #0070d8;
  color: #fff;
  transform: translateY(-2px);
}
.contact-socials svg { width: 17px; height: 17px; fill: currentColor; }
.contact-socials .social-instagram svg { fill: none; stroke: currentColor; stroke-width: 1.7; }
.contact-socials .social-instagram circle:last-child { fill: currentColor; stroke: none; }
.contact-socials .social-linkedin svg { fill: none; stroke: currentColor; stroke-width: 1.7; }
.contact-socials .social-linkedin path { fill: currentColor; stroke: none; }

/* Fundo editorial claro inspirado na referência enviada. */
.contact-page > .section {
  background:
    linear-gradient(90deg, rgba(242, 249, 252, .76), rgba(245, 250, 252, .82)),
    url('../img/contact-editorial-bg.png') center / cover no-repeat;
}

@media (max-width: 640px) {
  .contact-page > .section { padding: 64px 0 82px; }
  .contact-page .form-wrap {
    width: min(100% - 28px, 680px);
    padding: 38px 22px 42px;
  }
  .contact-page .form-wrap .grid.three { grid-template-columns: 1fr; }
  .contact-page .form-wrap .form { margin-top: 18px; }
}

/* Heroes de atendimento no mesmo padrão cinematográfico das páginas de
   soluções, com uma imagem específica para cada tipo de contato. */
.contact-page {
  --premium-blue: #0070d8;
  --solution-cyan: #48bff2;
  --solution-blue: #0070d8;
}
.contact-page .page-hero {
  height: 720px;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background-color: #122331;
  background-image: none;
  background-position: center;
  background-size: cover;
  padding: 0;
  text-align: left;
}
.contact-page .page-title {
  width: min(var(--max), calc(100% - 40px));
  max-width: none;
  margin: auto;
  padding-top: 85px;
  padding-bottom: 82px;
  text-align: left;
}
.contact-page .page-title > * { max-width: 800px; }
.contact-page .page-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block !important;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-image: var(--contact-hero-image);
  background-position: var(--contact-hero-position, center);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  filter: brightness(1.12) contrast(.96) saturate(1.03);
  content: "" !important;
  pointer-events: none;
}
.contact-page .page-hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block !important;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(90deg, rgba(7, 24, 37, .97) 0%, rgba(7, 30, 46, .88) 39%, rgba(7, 30, 46, .42) 67%, rgba(7, 30, 46, .12) 100%),
    linear-gradient(0deg, rgba(4, 17, 27, .58), transparent 50%);
  opacity: .42;
  content: "" !important;
  pointer-events: none;
}
.contact-page .breadcrumb {
  justify-content: flex-start;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  letter-spacing: .08em;
}
.contact-page .page-title .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  color: #48bff2;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.contact-page .page-title .hero-kicker::before {
  width: 25px;
  height: 1px;
  background: currentColor;
  content: "";
}
.contact-page .page-title h1 {
  max-width: 820px;
  margin: 20px 0 22px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(43px, 5.3vw, 69px);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1.08;
}
.contact-page .page-title p {
  max-width: 720px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
  line-height: 1.75;
}
.contact-general .page-hero {
  --contact-hero-image: url('/assets/img/hero-contato-entrada.png');
  --contact-hero-position: center 58%;
}
.contact-fale .page-hero {
  --contact-hero-image: url('/assets/img/hero-fale-conosco-headset-claro-v6.png');
  --contact-hero-position: center 50%;
}
.contact-proposta .page-hero {
  --contact-hero-image: url('/assets/img/hero-contato-proposta-comercial-claro-v5.png');
  --contact-hero-position: center;
  background-image: url('/assets/img/hero-contato-proposta-comercial-claro-v5.png') !important;
  background-position: center;
}
.contact-trabalhe .page-hero {
  --contact-hero-image: url('/assets/img/hero-contato-equipe-claro-v2.png');
  --contact-hero-position: center 48%;
}
.contact-opinion .page-hero {
  --contact-hero-image: url('/assets/img/hero-contato-opiniao-claro-v3.png');
  --contact-hero-position: center;
}

.debit-page .page-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 29, 43, .9), rgba(17, 54, 77, .68) 48%, rgba(7, 30, 46, .28) 76%, rgba(7, 30, 46, .08)),
    url('/assets/img/hero-debito-em-conta-v5.png') center 52% / cover no-repeat;
  color: #fff;
}
.debit-page .page-title {
  position: relative;
  z-index: 1;
  max-width: 850px;
}
.debit-page .page-title h1 {
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.12;
}
.debit-page .page-title p {
  max-width: 690px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}

/* Pesquisa de satisfação no acabamento claro das páginas de formulário. */
.opinion-form .survey-details {
  gap: 18px;
  margin-top: 0;
}
.opinion-form .survey-details label {
  gap: 7px;
  font-size: 11px;
}
.opinion-form .survey-details input { color: #263d4b; }
.opinion-form .survey-field-wide { grid-column: 1 / -1; }
.opinion-form .survey-question {
  margin: 26px 0 0;
  border: 0;
  border-top: 1px solid rgba(157, 184, 197, .5);
  padding: 22px 0 0;
}
.opinion-form .survey-question + .survey-question {
  margin-top: 24px;
  border-top-color: rgba(157, 184, 197, .5);
  padding-top: 22px;
}
.opinion-form .survey-question legend {
  color: #385361;
  font-size: 12px;
  font-weight: 750;
}
.opinion-form .survey-options { gap: 9px; margin-top: 14px; }
.opinion-form .survey-option { margin: 0; }
.opinion-form .survey-option input {
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  opacity: 0;
}
.opinion-form .survey-option span {
  min-height: 42px;
  border-color: #b9d1dd;
  background: rgba(247, 251, 253, .9);
  color: #385361;
  font-size: 12px;
}
.opinion-form .survey-option small {
  color: #778b96;
  font-size: 9px;
}
.opinion-form .survey-option:hover span {
  border-color: #168bea;
  background: #eef8fd;
}
.opinion-form .survey-option input:checked + span {
  border-color: #168bea;
  background: #0070d8;
  color: #fff;
}
.opinion-form .survey-comment {
  gap: 7px;
  margin-top: 26px;
  font-size: 11px;
}
.opinion-form .survey-comment small { color: #8496a0; }
.opinion-form .survey-consent {
  color: #627985;
  font-size: 10px;
  line-height: 1.55;
}
.opinion-form .survey-consent input {
  width: 16px !important;
  height: 16px !important;
  min-height: 0 !important;
  margin-top: 1px;
  padding: 0 !important;
}
.opinion-form .survey-consent a { color: #0070d8; }
.opinion-form .survey-submit { min-height: 48px; margin-top: 20px; }
.opinion-form .survey-note { color: #7d909b; font-size: 9px; }

@media (max-width: 980px) {
  .contact-page .page-hero {
    height: var(--global-hero-height);
    min-height: var(--global-hero-height);
  }
}

@media (max-width: 640px) {
  .contact-page .page-hero {
    height: var(--global-hero-height);
    min-height: var(--global-hero-height);
  }
  .contact-proposta .page-hero { --contact-hero-position: 34% 48%; background-position: 34% 48%; }
  .contact-page .page-title {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    min-width: 0;
    padding-top: 64px;
    padding-bottom: 48px;
  }
  .contact-page .page-title h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 40px);
    overflow-wrap: break-word;
  }
  .contact-page .page-title p {
    max-width: 100%;
    font-size: 15px;
    overflow-wrap: break-word;
  }
}

/* Linguagem única para os formulários do site: campos limpos, bordas leves
   e o mesmo acabamento editorial usado nas páginas de contato. */
body:not(.contact-page) .form-wrap .form-contact-standard {
  border: 1px solid rgba(201, 220, 230, .82);
  border-radius: 4px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 26px 70px rgba(8, 48, 77, .14);
  padding: 44px 48px 48px;
}
body:not(.contact-page) .form-wrap .form-contact-standard::before,
.campaign-form.form-contact-standard::before,
.proposal-form.form-contact-standard::before { height: 3px; }
.campaign-form.form-contact-standard,
.proposal-form.form-contact-standard {
  border: 1px solid rgba(201, 220, 230, .82);
  border-radius: 4px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 28px 75px rgba(8, 48, 77, .16);
  padding: 38px;
}
body:not(.contact-page) .form-wrap .form-contact-standard label,
.campaign-form.form-contact-standard label,
.proposal-form.form-contact-standard label {
  color: #486170;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: none;
}
body:not(.contact-page) .form-wrap .form-contact-standard input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
body:not(.contact-page) .form-wrap .form-contact-standard select,
body:not(.contact-page) .form-wrap .form-contact-standard textarea,
.campaign-form.form-contact-standard input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
.campaign-form.form-contact-standard select,
.campaign-form.form-contact-standard textarea,
.proposal-form.form-contact-standard input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
.proposal-form.form-contact-standard select,
.proposal-form.form-contact-standard textarea {
  min-height: 48px;
  border: 1px solid rgba(157, 184, 197, .7);
  border-radius: 2px;
  background: rgba(255, 255, 255, .72);
  box-shadow: none;
  padding: 12px 13px;
  color: #263d4b;
  font-size: 13px;
  text-transform: none;
}
body:not(.contact-page) .form-wrap .form-contact-standard input:hover,
body:not(.contact-page) .form-wrap .form-contact-standard select:hover,
body:not(.contact-page) .form-wrap .form-contact-standard textarea:hover,
.campaign-form.form-contact-standard input:hover,
.campaign-form.form-contact-standard select:hover,
.campaign-form.form-contact-standard textarea:hover,
.proposal-form.form-contact-standard input:hover,
.proposal-form.form-contact-standard select:hover,
.proposal-form.form-contact-standard textarea:hover { border-color: #9fbccc; background: #fff; }
body:not(.contact-page) .form-wrap .form-contact-standard input:focus,
body:not(.contact-page) .form-wrap .form-contact-standard select:focus,
body:not(.contact-page) .form-wrap .form-contact-standard textarea:focus,
.campaign-form.form-contact-standard input:focus,
.campaign-form.form-contact-standard select:focus,
.campaign-form.form-contact-standard textarea:focus,
.proposal-form.form-contact-standard input:focus,
.proposal-form.form-contact-standard select:focus,
.proposal-form.form-contact-standard textarea:focus {
  border-color: #168bea;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22, 139, 234, .1);
  outline: 0;
}
body:not(.contact-page) .form-wrap .form-contact-standard textarea,
.campaign-form.form-contact-standard textarea,
.proposal-form.form-contact-standard textarea { min-height: 128px; }
body:not(.contact-page) .form-wrap .form-contact-standard input[type="file"] {
  height: auto;
  border-style: dashed;
  padding: 14px;
}
.campaign-form.form-contact-standard .campaign-form-head,
.proposal-form.form-contact-standard .form-title { margin-bottom: 21px; }
.campaign-form.form-contact-standard .campaign-form-head small,
.proposal-form.form-contact-standard .form-title small {
  color: #0070d8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.campaign-form.form-contact-standard .campaign-form-head strong,
.proposal-form.form-contact-standard .form-title strong {
  margin-top: 8px;
  color: #263d4b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.04em;
}
.campaign-form.form-contact-standard .campaign-form-row,
.proposal-form.form-contact-standard .field-row { gap: 16px; }
.campaign-form.form-contact-standard .form-consent,
.proposal-form.form-contact-standard .form-consent,
body:not(.contact-page) .form-wrap .form-contact-standard .checks {
  margin-top: 22px;
  border: 0;
  border-top: 1px solid rgba(157, 184, 197, .5);
  border-radius: 0;
  background: transparent;
  padding: 17px 0 0;
}
.campaign-form.form-contact-standard .form-consent,
.proposal-form.form-contact-standard .form-consent {
  gap: 9px;
  margin-bottom: 18px;
  color: #6c808c;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.55;
}
.campaign-form.form-contact-standard .form-consent input,
.proposal-form.form-contact-standard .form-consent input,
body:not(.contact-page) .form-wrap .form-contact-standard .checks input { accent-color: #0070d8; }
.campaign-form.form-contact-standard .button,
.proposal-form.form-contact-standard .button,
body:not(.contact-page) .form-wrap .form-contact-standard .btn.primary {
  min-height: 54px;
  border-radius: 2px;
  box-shadow: 0 12px 28px rgba(0, 112, 216, .18);
  cursor: pointer;
}
.hero-survey.form-contact-standard { border-radius: 4px; }

/* Ícones sociais do rodapé no mesmo padrão circular dos formulários. */
.footer-social { gap: 16px; }
.footer-social-icons { display: flex; align-items: center; gap: 9px; }
.footer-social-icons a {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(166, 211, 232, .58);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  padding: 0;
  color: #d9f1fb;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-social-icons a:hover {
  border-color: #4fc2f3;
  background: #0070d8;
  color: #fff;
  transform: translateY(-2px);
}
.footer-social-icons svg { width: 17px; height: 17px; fill: currentColor; }
.footer-social-icons .social-instagram svg { fill: none; stroke: currentColor; stroke-width: 1.7; }
.footer-social-icons .social-instagram circle:last-child { fill: currentColor; stroke: none; }
.footer-social-icons .social-linkedin svg { fill: none; stroke: currentColor; stroke-width: 1.7; }
.footer-social-icons .social-linkedin path { fill: currentColor; stroke: none; }

/* Rodapé institucional premium: marca, associação e canais sociais. */
.premium-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 112, 216, .14), transparent 34%),
    linear-gradient(115deg, #1c2329 0%, #17242d 58%, #122b3b 100%);
}
.premium-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 194, 243, .65), transparent);
  content: "";
}
.premium-footer .container { position: relative; z-index: 1; }
.footer-lead {
  display: grid;
  grid-template-columns: minmax(470px, 1.55fr) minmax(190px, .58fr) auto;
  align-items: center;
  gap: 42px;
}
.footer-association,
.footer-social {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, .12);
  padding-left: 34px;
}
.footer-association > span,
.footer-social > span {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.footer-association a {
  display: block;
  border: 0;
  padding: 0;
  line-height: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.footer-association a:hover { opacity: .88; transform: translateY(-2px); }
.footer-association img {
  width: 142px;
  height: 92px;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.footer-social { gap: 0; }
.footer-social-icons { gap: 10px; }
.footer-social-icons a {
  width: 40px;
  height: 40px;
  border-color: rgba(174, 220, 239, .42);
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
}
.footer-social-icons img {
  width: 17px;
  height: 17px;
  display: block;
  object-fit: contain;
}
.footer-social-icons a:hover {
  border-color: #4fc2f3;
  background: linear-gradient(135deg, #0070d8, #0097df);
  box-shadow: 0 9px 20px rgba(0, 112, 216, .25);
}
.footer-columns { border-bottom: 1px solid rgba(255, 255, 255, .03); }
.footer-columns.footer-sitemap {
  grid-template-columns: .72fr .88fr 1.62fr 1.12fr 1.2fr 1.06fr;
  gap: 30px;
  padding-top: 42px;
}
.footer-sitemap > div { min-width: 0; }
.footer-sitemap h3 { margin-bottom: 17px; }
.footer-sitemap h4 {
  margin: 24px 0 12px;
  color: rgba(79, 194, 243, .82);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-sitemap a {
  max-width: 100%;
  line-height: 1.45;
}

@media (max-width: 1200px) {
  .footer-columns.footer-sitemap { grid-template-columns: repeat(3, 1fr); gap: 38px 28px; }
}

@media (max-width: 1100px) {
  .footer-lead { grid-template-columns: 1fr 1fr; }
  .footer-identity { grid-column: 1 / -1; }
  .footer-association { border-left: 0; padding-left: 0; }
}

@media (max-width: 760px) {
  .footer-columns.footer-sitemap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .footer-lead { grid-template-columns: 1fr; gap: 28px; }
  .footer-identity { grid-column: auto; }
  .footer-association,
  .footer-social {
    min-height: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 0;
    padding-top: 25px;
    padding-left: 0;
  }
}

@media (max-width: 440px) {
  .footer-columns.footer-sitemap { grid-template-columns: 1fr; }
}

/* Telefone em destaque na barra branca de navegação. */
.header-phone {
  min-width: 154px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  margin-left: 14px;
  border: 1px solid rgba(0, 112, 216, .2);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(238, 248, 254, .92), rgba(255, 255, 255, .98));
  box-shadow: 0 7px 20px rgba(11, 67, 104, .08);
  padding: 7px 12px 7px 7px;
  color: #263d4c;
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}
.header-phone::after { display: none; content: none; }
.header-phone:hover {
  border-color: rgba(0, 112, 216, .5);
  box-shadow: 0 9px 24px rgba(0, 112, 216, .15);
  color: #0070d8;
  transform: translateY(-1px);
}
.header-phone-icon {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0070d8, #0798df);
  color: #fff;
}
.header-phone-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.header-phone-copy { display: flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
.header-phone-copy small {
  color: #758996;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.header-phone-copy strong {
  margin-top: 3px;
  color: #243d4d;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .015em;
}

@media (max-width: 1160px) {
  .header-phone { min-width: 42px; margin-left: 8px; padding-right: 7px; }
  .header-phone-copy { display: none; }
}

@media (max-width: 980px) {
  .header-phone {
    position: absolute;
    top: 50%;
    right: 88px;
    min-width: 0;
    margin: 0;
    transform: translateY(-50%);
  }
  .header-phone:hover { transform: translateY(-50%); }
  .header-phone-copy { display: none; }
  .header-composition .menu-btn { margin-left: auto; }
}

@media (max-width: 440px) {
  .header-phone { margin-right: 7px; margin-left: 7px; padding: 6px; }
  .header-phone-copy { display: none; }
}

@media (max-width: 640px) {
  body:not(.contact-page) .form-wrap .form-contact-standard,
  .campaign-form.form-contact-standard,
  .proposal-form.form-contact-standard { padding: 32px 22px 36px; }
}

/* Seguro Conteúdo: limite de cobertura em evidência */
.insurance-coverage-limit {
  display: grid;
  gap: 5px;
  max-width: 430px;
  margin: 2px 0 28px;
  border-left: 3px solid #48bbf2;
  background: linear-gradient(90deg, rgba(72, 187, 242, .14), rgba(72, 187, 242, .025));
  padding: 18px 21px;
}
.insurance-coverage-limit span {
  color: #7fd4fb;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.insurance-coverage-limit strong {
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.1;
}
.insurance-coverage-limit small {
  max-width: 350px;
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
  line-height: 1.55;
}

/* Débito em conta: experiência editorial e formulário em etapas */
.debit-page { background: #f4f9fc; }
.debit-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 720px;
  background: #eaf6fc url('../img/hero-debito-em-conta-v5.png') center 52% / cover no-repeat;
  color: #fff;
}
.debit-hero::before {
  pointer-events: none;
  content: "";
}
.debit-hero::after {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -280px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(91, 196, 241, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(64, 181, 239, .035), 0 0 0 128px rgba(64, 181, 239, .02);
  content: "";
}
.debit-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  gap: 92px;
  align-items: center;
  min-height: 720px;
  padding-top: 72px;
  padding-bottom: 72px;
}
.debit-hero-copy { max-width: 790px; }
.debit-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 45px;
  color: rgba(255, 255, 255, .46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.debit-breadcrumb a { color: inherit; }
.debit-breadcrumb strong { color: rgba(255, 255, 255, .7); }
.debit-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3fc2f5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.debit-kicker i { width: 27px; height: 1px; background: currentColor; }
.debit-hero h1 {
  max-width: 760px;
  margin: 24px 0 23px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(45px, 5vw, 67px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.08;
}
.debit-hero-copy > p {
  max-width: 680px;
  margin: 0 0 31px;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  line-height: 1.75;
}
.debit-hero-assurances { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 31px; }
.debit-hero-assurances span { color: rgba(255, 255, 255, .63); font-size: 10px; font-weight: 650; }
.debit-hero-assurances span::first-letter { color: #42c4f6; }
.debit-hero-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035));
  box-shadow: 0 35px 90px rgba(1, 15, 24, .35);
  padding: 38px 38px 28px;
  backdrop-filter: blur(10px);
}
.debit-hero-card > span { color: #46c5f5; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.debit-hero-card > strong { display: block; margin: 9px 0 21px; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-size: 26px; font-weight: 600; }
.debit-hero-card ol { margin: 0; padding: 0; list-style: none; }
.debit-hero-card li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; border-top: 1px solid rgba(255, 255, 255, .13); padding: 18px 0; }
.debit-hero-card li b { color: #4fc7f6; font-size: 9px; }
.debit-hero-card li span { display: grid; gap: 4px; }
.debit-hero-card li strong { color: #fff; font-size: 12px; }
.debit-hero-card li small { color: rgba(255, 255, 255, .52); font-size: 10px; line-height: 1.5; }

.debit-banks-section { position: relative; background: linear-gradient(135deg, #f7fbfd 0%, #eaf6fc 100%); padding: 92px 0 86px; }
.debit-banks-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr); gap: 80px; align-items: end; margin-bottom: 44px; }
.debit-banks-heading h2 {
  max-width: 760px;
  margin: 19px 0 0;
  color: #263d4b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 49px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.16;
}
.debit-banks-heading > p { margin: 0; color: #708591; font-size: 14px; line-height: 1.75; }
.debit-bank-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); border-top: 1px solid #c9dfe9; border-left: 1px solid #c9dfe9; }
.debit-bank-card { display: grid; grid-template-rows: 55px auto; gap: 14px; place-items: center; min-height: 135px; border-right: 1px solid #c9dfe9; border-bottom: 1px solid #c9dfe9; background: rgba(255, 255, 255, .68); padding: 25px 14px 20px; transition: background .2s ease, transform .2s ease; }
.debit-bank-card {
  border-top: 0;
  border-left: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  appearance: none;
}
.debit-bank-card:hover { z-index: 1; background: #fff; box-shadow: 0 15px 34px rgba(13, 65, 96, .1); transform: translateY(-3px); }
.debit-bank-card:focus-visible {
  z-index: 2;
  outline: 3px solid rgba(0, 112, 216, .45);
  outline-offset: -3px;
}
.debit-bank-card.is-selected {
  z-index: 1;
  background: #fff;
  box-shadow: inset 0 0 0 2px #0070d8, 0 15px 34px rgba(13, 65, 96, .12);
  transform: translateY(-3px);
}
.debit-bank-card.is-selected span { color: #0070d8; }
.debit-bank-card img { display: block; max-width: 96px; max-height: 48px; width: auto; height: auto; }
.debit-bank-card span { color: #526a78; font-size: 10px; font-weight: 700; text-align: center; }
.debit-bank-card[data-bank="Banrisul"] { grid-template-rows: 64px auto; min-height: 144px; }
.debit-bank-card[data-bank="Banrisul"] img { max-width: 112px; max-height: 64px; }
.debit-bank-card[data-bank="Banrisul"] span { font-size: 9px; }

.debit-form-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(244, 250, 253, .9), rgba(232, 245, 252, .78)),
    url('../img/contact-editorial-bg.png') center top / cover fixed;
  padding: 105px 0 125px;
}
.debit-form-layout { display: grid; grid-template-columns: minmax(270px, .62fr) minmax(0, 1.38fr); gap: 82px; align-items: start; }
.debit-form-aside { position: sticky; top: 220px; padding-top: 24px; }
.debit-form-aside h2 {
  margin: 21px 0 20px;
  color: #263d4b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(35px, 4vw, 49px);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1.13;
}
.debit-form-aside > p { color: #708591; font-size: 14px; line-height: 1.8; }
.debit-guidance { margin-top: 31px; border-left: 3px solid #0b85e8; background: rgba(255, 255, 255, .68); padding: 22px 24px; }
.debit-guidance > strong { color: #263d4b; font-size: 12px; }
.debit-guidance p { margin: 8px 0 0; color: #6a808d; font-size: 11px; line-height: 1.7; }
.debit-deadline-note { margin-top: 18px; border: 1px solid #b9d9e8; background: rgba(232, 247, 254, .82); padding: 18px 20px; }
.debit-deadline-note > strong { display: block; color: #075f9f; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.debit-deadline-note p { margin: 8px 0 0; color: #486575; font-size: 11px; font-weight: 650; line-height: 1.7; }
.debit-security-note { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; margin-top: 23px; color: #6b818d; font-size: 10px; line-height: 1.55; }
.debit-security-note > span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid #8ed2f3; border-radius: 50%; color: #0581dd; }
.debit-security-note p { margin: 0; }
.debit-security-note strong { display: block; margin-bottom: 3px; color: #38515f; font-size: 11px; }
.debit-form-steps {
  position: relative;
  overflow: hidden;
  margin: 0 0 34px;
  border: 1px solid rgba(152, 199, 222, .78);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(236, 248, 253, .9)),
    linear-gradient(180deg, rgba(0, 112, 216, .06), rgba(65, 200, 244, .02));
  box-shadow: 0 24px 54px rgba(9, 57, 86, .11);
  padding: 28px 26px 24px;
}
.debit-form-steps::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0070d8, #41c8f4);
  content: "";
}
.debit-form-steps > span {
  display: block;
  color: #0070d8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.debit-form-steps > strong {
  display: block;
  margin: 9px 0 18px;
  color: #263d4b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
}
.debit-form-steps ol { margin: 0; padding: 0; list-style: none; }
.debit-form-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(156, 191, 209, .55);
  padding: 16px 0;
}
.debit-form-steps li:last-child { padding-bottom: 0; }
.debit-form-steps li b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #a9d9ef;
  border-radius: 50%;
  color: #0070d8;
  font-size: 8px;
}
.debit-form-steps li span { display: grid; gap: 4px; }
.debit-form-steps li strong { color: #334c5a; font-size: 12px; }
.debit-form-steps li small { color: #718691; font-size: 10px; line-height: 1.55; }

.form.debit-request-form {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 35px 90px rgba(9, 57, 86, .16);
  padding: 0 52px 48px;
}
.form.debit-request-form::before { display: block; width: calc(100% + 104px); height: 4px; margin-left: -52px; background: linear-gradient(90deg, #0070d8, #41c8f4); content: ""; }
.debit-form-heading { margin: 0 -52px; border-bottom: 1px solid #dce8ee; background: linear-gradient(135deg, rgba(245, 251, 254, .95), rgba(255, 255, 255, .98)); padding: 37px 52px 32px; }
.debit-form-heading > span { color: #0070d8; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.debit-form-heading h2 { margin: 9px 0 8px; color: #263d4b; font-family: "Montserrat", Arial, sans-serif; font-size: 30px; font-weight: 600; letter-spacing: -.04em; }
.debit-form-heading p { margin: 0; color: #7a8e99; font-size: 11px; line-height: 1.6; }
.debit-fieldset { min-width: 0; margin: 0; border: 0; border-bottom: 1px solid #dce8ee; padding: 35px 0 38px; }
.debit-fieldset legend { display: grid; grid-template-columns: 34px auto 1fr; gap: 11px; align-items: center; width: 100%; margin: 0 0 25px; padding: 0; }
.debit-fieldset legend > span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid #a9d9ef; border-radius: 50%; color: #0070d8; font-size: 8px; font-weight: 800; }
.debit-fieldset legend strong { color: #334c5a; font-size: 13px; }
.debit-fieldset legend small { justify-self: end; color: #8a9ca5; font-size: 9px; }
.debit-fields-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 21px 18px; }
.debit-field { display: grid; align-content: start; gap: 8px; min-width: 0; }
.debit-field-wide { grid-column: 1 / -1; }
.form.debit-request-form .debit-field label { margin: 0; color: #425c69; font-size: 10px; font-weight: 800; letter-spacing: .015em; text-transform: none; }
.form.debit-request-form label[for="condomino_nome"],
.form.debit-request-form label[for="correntista_nome"],
.form.debit-request-form label[for="agencia_nome"] { margin-top: 0; border-top: 0; padding-top: 0; }
.form.debit-request-form label[for="condomino_nome"]::before,
.form.debit-request-form label[for="correntista_nome"]::before,
.form.debit-request-form label[for="agencia_nome"]::before { display: none; content: none; }
.form.debit-request-form .debit-field input:not([type="checkbox"]),
.form.debit-request-form .debit-field select,
.form.debit-request-form .debit-field textarea {
  width: 100%;
  min-height: 50px;
  margin: 0;
  border: 1px solid #bfd2dc;
  border-radius: 2px;
  background: rgba(250, 253, 254, .82);
  box-shadow: none;
  padding: 12px 14px;
  color: #243d4b;
  font-size: 13px;
}
.form.debit-request-form .debit-field textarea { min-height: 116px; resize: vertical; }
.form.debit-request-form .debit-field input:hover,
.form.debit-request-form .debit-field select:hover,
.form.debit-request-form .debit-field textarea:hover { border-color: #8eb8cc; background: #fff; }
.form.debit-request-form .debit-field select:disabled {
  cursor: not-allowed;
  border-color: #d6e3ea;
  background: #eef4f7;
  color: #8a9ca5;
}
.form.debit-request-form .debit-field input:focus,
.form.debit-request-form .debit-field select:focus,
.form.debit-request-form .debit-field textarea:focus { border-color: #168bea; background: #fff; box-shadow: 0 0 0 3px rgba(22, 139, 234, .09); outline: 0; }
.debit-consents { padding: 23px 0 9px; }
.form.debit-request-form .debit-consents .checks { margin: 0; border: 0; background: none; padding: 9px 0; }
.form.debit-request-form .debit-consents .checks label { position: relative; display: block; color: #71848f; padding-left: 27px; font-size: 10px; font-weight: 600; line-height: 1.55; }
.form.debit-request-form .debit-consents input { position: absolute; top: 1px; left: 0; width: 15px; height: 15px; margin: 0; accent-color: #0070d8; }
.form.debit-request-form .debit-consents .mini-link { display: inline; color: #0070d8; font-size: inherit; font-weight: 750; letter-spacing: 0; text-transform: none; }
.form.debit-request-form .debit-consents .checks.debit-authorization-consent { margin: 8px 0 12px; border: 1px solid #b8d8e8; background: #eef8fd; padding: 18px 20px; }
.form.debit-request-form .debit-consents .checks.debit-authorization-consent label { color: #405b69; padding-left: 30px; font-size: 11px; line-height: 1.7; }
.form.debit-request-form .debit-consents .checks.debit-authorization-consent label strong { color: #075f9f; }
.form.debit-request-form .debit-consents .checks.debit-authorization-consent input { top: 2px; width: 17px; height: 17px; }
.debit-form-footer { display: flex; gap: 25px; align-items: center; justify-content: space-between; border-top: 1px solid #dce8ee; margin-top: 13px; padding-top: 27px; }
.debit-form-footer small { max-width: 360px; color: #84959e; font-size: 9px; line-height: 1.55; }
.debit-submit { flex: 0 0 auto; min-width: 210px; border: 0; cursor: pointer; }

@media (max-width: 1100px) {
  .debit-hero-grid { grid-template-columns: 1fr .72fr; gap: 45px; }
  .debit-bank-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .debit-form-layout { grid-template-columns: 1fr; gap: 48px; }
  .debit-form-aside { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 30px; padding-top: 0; }
  .debit-form-steps { grid-column: 1 / -1; margin-bottom: 4px; }
  .debit-form-aside .debit-kicker, .debit-form-aside h2 { grid-column: 1 / -1; }
  .debit-form-aside h2 { max-width: 760px; }
  .debit-form-aside > p { margin: 0; }
  .debit-guidance { margin-top: 0; }
  .debit-deadline-note { grid-column: 1 / -1; }
  .debit-security-note { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .debit-hero,
  .debit-hero-grid { min-height: 610px; }
}

@media (max-width: 780px) {
  .debit-hero { min-height: 660px; }
  .debit-hero-grid { grid-template-columns: 1fr; min-height: 0; padding-top: 72px; padding-bottom: 72px; }
  .debit-hero-card { display: none; }
  .debit-breadcrumb { margin-bottom: 33px; }
  .debit-hero h1 { font-size: 45px; }
  .debit-banks-section { padding: 72px 0; }
  .debit-banks-heading { grid-template-columns: 1fr; gap: 23px; }
  .debit-bank-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .debit-form-section { padding: 75px 0 90px; background-attachment: scroll; }
  .debit-form-aside { display: block; }
  .debit-guidance { margin-top: 26px; }
  .form.debit-request-form { padding-right: 26px; padding-left: 26px; }
  .form.debit-request-form::before { width: calc(100% + 52px); margin-left: -26px; }
  .debit-form-heading { margin-right: -26px; margin-left: -26px; padding: 31px 26px 27px; }
  .debit-fieldset legend { grid-template-columns: 34px 1fr; }
  .debit-fieldset legend small { grid-column: 2; justify-self: start; margin-top: -7px; }
  .debit-fields-grid { grid-template-columns: 1fr; }
  .debit-field-wide { grid-column: auto; }
  .debit-form-footer { align-items: stretch; flex-direction: column; }
  .debit-submit { width: 100%; }
}

@media (max-width: 480px) {
.debit-hero h1 { font-size: 38px; }
  .debit-hero-copy > p { font-size: 14px; }
  .debit-hero-assurances { display: grid; }
  .debit-bank-card { min-height: 120px; padding: 21px 10px 17px; }
  .debit-bank-card img { max-width: 82px; }
  .debit-form-heading h2 { font-size: 25px; }
}

/* Tamanho único para os títulos principais das heroes. */
:root { --hero-title-size: clamp(40px, 4vw, 58px); }
.hero h1,
.page-hero .page-title h1,
.corporate-hero h1,
.campaign-hero h1,
.institutional-hero h1,
.solution-hero h1,
.privacy-hero h1,
.debit-hero h1,
.contact-page .page-title h1 {
  font-size: var(--hero-title-size);
}

@media (max-width: 640px) {
  :root { --hero-title-size: clamp(35px, 9.5vw, 44px); }
}

/* Profundidade visual para superfícies escuras, sem perder contraste. */
.solution-hero > img,
.institutional-hero > img,
.privacy-hero > img {
  z-index: -1;
  opacity: .86;
}
.campaign-hero-media { z-index: -1; opacity: .86; }
.solution-hero-overlay,
.institutional-hero-overlay,
.privacy-hero-overlay,
.debit-hero::before,
.campaign-hero::before {
  z-index: 0;
}
.solution-hero-overlay,
.institutional-hero-overlay,
.privacy-hero-overlay,
.debit-hero::before {
  opacity: .42;
}
.solution-hero-content,
.institutional-hero-content,
.privacy-hero .container,
.campaign-hero-grid {
  position: relative;
  z-index: 1;
}

/* Débito em conta: hero diurna no padrão claro das demais páginas. */
.debit-page .debit-hero::before {
  background:
    linear-gradient(90deg, rgba(12, 45, 66, .76) 0%, rgba(12, 55, 82, .58) 42%, rgba(12, 55, 82, .22) 72%, rgba(255, 255, 255, .08) 100%),
    linear-gradient(0deg, rgba(6, 24, 38, .22), rgba(255, 255, 255, .1) 52%);
  opacity: .82;
}
.debit-page .debit-hero-card {
  border-color: rgba(91, 196, 241, .32);
  background: linear-gradient(145deg, rgba(5, 44, 70, .84), rgba(7, 35, 54, .76));
  box-shadow: 0 25px 70px rgba(8, 48, 77, .26);
}

.trust-line,
.premium-footer,
.campaign-final,
.campaign-proof,
.campaign-footer,
.insurance-coverage,
.insurance-documents,
.insurance-lead,
.insurance-hero,
.institutional-numbers,
.who-section,
.company-operation,
.solution-process,
.catalog-integration,
.tbs-partner {
  background-image:
    linear-gradient(120deg, rgba(20, 35, 46, .92), rgba(8, 78, 122, .84)),
    url('../img/condominio-noturno.webp');
  background-position: center;
  background-size: cover;
}

/* Painéis azuis mais vibrantes recebem uma camada cromática própria. */
.insurance-documents {
  background-image:
    linear-gradient(120deg, rgba(8, 124, 208, .68), rgba(7, 85, 142, .62)),
    url('../img/condominio-noturno.webp');
}

.trust-line,
.premium-footer,
.campaign-final,
.campaign-proof,
.campaign-footer,
.insurance-coverage,
.insurance-lead,
.institutional-numbers,
.who-section,
.company-operation,
.solution-process,
.catalog-integration,
.tbs-partner {
  background-image:
    linear-gradient(120deg, rgba(20, 35, 46, .72), rgba(8, 78, 122, .62)),
    url('../img/condominio-noturno.webp');
}

.tbs-partner {
  background-image:
    var(--home-final-hero-overlay),
    var(--home-final-hero-vignette),
    url('../img/hero-juridico-home-tbs-v4.webp');
  background-position: center;
  box-shadow: 0 -24px 60px rgba(8, 48, 77, .16);
}

/* Rodapés: degradê um pouco mais escuro para destacar os links sobre a foto. */
.premium-footer,
.campaign-footer {
  background-image:
    linear-gradient(120deg, rgba(6, 19, 31, .94), rgba(4, 42, 69, .88)),
    url('../img/condominio-noturno.webp');
}

/* A barra de princípios da home usa uma cor uniforme, sem imagem de fundo. */
.trust-line {
  background: #173344;
  background-image: none;
}

.solution-result-panel,
.hero-survey,
.debit-hero-card,
.management-standard {
  background-image:
    linear-gradient(145deg, rgba(5, 44, 70, .78), rgba(7, 35, 54, .72)),
    url('../img/condominio-noturno.webp');
}

/* Soluções: fotografia arquitetônica translúcida nas faixas antes chapadas. */
.solution-detail-page .solution-process {
  background-image:
    linear-gradient(110deg, rgba(29, 36, 41, .66) 0%, rgba(18, 49, 67, .58) 56%, rgba(8, 69, 108, .54) 100%),
    url('../img/condominio-noturno.webp');
  background-position: center 48%;
  background-size: cover;
}
.solution-detail-page .solution-practical {
  background-image:
    linear-gradient(110deg, rgba(0, 112, 216, .72) 0%, rgba(8, 95, 177, .62) 58%, rgba(5, 73, 132, .56) 100%),
    url('../img/condominio-noturno.webp');
  background-position: center 56%;
  background-size: cover;
}
.solution-detail-page .solution-result-panel {
  background-image:
    linear-gradient(145deg, rgba(25, 35, 42, .68), rgba(8, 67, 101, .60)),
    url('../img/condominio-noturno.webp');
  background-position: center;
  background-size: cover;
}

/* Soluções: uma única foto opaca evita sobrepor enquadramentos diferentes.
   O contraste continua na camada de degradê, com os ajustes de cada página. */
body.solution-detail-page .solution-hero,
body.solutions-catalog-page .solution-hero {
  background-image: none;
}
body.solution-detail-page .solution-hero > img,
body.solutions-catalog-page .solution-hero > img {
  opacity: 1;
}

/* As fotos de Assembleias e Seguro já possuem iluminação naturalmente baixa.
   A compensação aproxima essas heroes do brilho das demais páginas. */
body.solution-assembleias .solution-hero > img {
  opacity: 1;
  filter: brightness(1.20) contrast(.88) saturate(.94);
}
body.insurance-page .solution-hero > img {
  opacity: 1;
  filter: none;
}
body.solution-assembleias .solution-hero-overlay {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(91, 112, 124, .22) 0%, rgba(91, 112, 124, .08) 42%, transparent 68%),
    linear-gradient(0deg, rgba(4, 17, 27, .14), transparent 48%);
}
body.insurance-page .solution-hero-overlay {
  opacity: 1;
  background: linear-gradient(0deg, rgba(4, 17, 27, .08), transparent 38%);
}

/* Títulos auxiliares: branco sempre que aparecem sobre fundos escuros. */
.corporate-hero .kicker-light,
.numbers-section .kicker-light,
.management-standard .kicker-light,
.image-break .kicker-light,
.proposal-section .kicker-light,
.privacy-page .privacy-hero .kicker-light,
.insurance-page .insurance-fire-story .kicker-light,
.insurance-page .insurance-coverage .kicker-light,
.insurance-page .insurance-documents .kicker-light,
.insurance-page .insurance-lead .kicker-light,
.institutional-hero .institutional-kicker,
.institutional-page .institutional-kicker-light,
.solution-hero .solution-kicker,
.solution-process .solution-kicker,
.catalog-integration .solution-kicker,
.contact-page .page-hero .hero-kicker,
.debit-hero .debit-kicker,
.hero-notice .notice-kicker,
.hero-survey .survey-kicker,
.solution-result-panel > span {
  color: #fff;
}

/* Cards de Soluções escuros: ícones e categorias também ficam brancos. */
.service-featured svg,
.service-bento > :nth-child(5) svg,
.service-accent svg {
  stroke: #fff;
}
.service-featured small,
.service-bento > :nth-child(5) small,
.service-accent small,
.service-featured .service-index,
.service-bento > :nth-child(5) .service-index,
.service-accent .service-index { color: #fff; }

/* Camadas explícitas: a foto fica acima do fundo da seção, o overlay acima
   da foto e o conteúdo no topo. */

/* Ritmo vertical: evita a soma de dois respiros grandes entre blocos claros. */
@media (min-width: 981px) {
  .institutional-page .institutional-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .institutional-page .company-principles,
  .institutional-page .team-specialties,
  .institutional-page .story-timeline-section {
    padding-top: 48px;
  }
  .institutional-page .company-structure,
  .institutional-page .team-intro,
  .institutional-page .story-origin {
    padding-bottom: 48px;
  }

  .solution-detail-page .solution-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .solution-detail-page .solution-benefits,
  .solution-detail-page .solution-related,
  .solution-detail-page .catalog-services {
    padding-top: 48px;
  }
  .solution-detail-page .solution-intro,
  .solution-detail-page .solution-faq,
  .solution-detail-page .catalog-intro {
    padding-bottom: 48px;
  }

  .home-page .premium-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .home-page .services-premium,
  .home-page .technology-section {
    padding-bottom: 72px;
  }
  .home-page .technology-section,
  .home-page .process-section {
    padding-top: 72px;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .institutional-page .company-structure,
  .institutional-page .team-intro,
  .institutional-page .story-origin,
  .solution-detail-page .solution-intro,
  .solution-detail-page .solution-faq,
  .solution-detail-page .catalog-intro {
    padding-bottom: 48px;
  }
  .institutional-page .company-principles,
  .institutional-page .team-specialties,
  .institutional-page .story-timeline-section,
  .solution-detail-page .solution-benefits,
  .solution-detail-page .solution-related,
  .solution-detail-page .catalog-services {
    padding-top: 48px;
  }
}

@media (max-width: 640px) {
  .institutional-page .company-structure,
  .institutional-page .team-intro,
  .institutional-page .story-origin,
  .solution-detail-page .solution-intro,
  .solution-detail-page .solution-faq,
  .solution-detail-page .catalog-intro {
    padding-bottom: 38px;
  }
  .institutional-page .company-principles,
  .institutional-page .team-specialties,
  .institutional-page .story-timeline-section,
  .solution-detail-page .solution-benefits,
  .solution-detail-page .solution-related,
  .solution-detail-page .catalog-services {
    padding-top: 38px;
  }
}

.hero-command,
.hero-survey,
.solution-result-panel,
.debit-hero-card,
.management-standard {
  background-image:
    linear-gradient(145deg, rgba(5, 44, 70, .91), rgba(7, 35, 54, .88)),
    url('../img/condominio-noturno.webp');
  background-position: center;
  background-size: cover;
}

.debit-page .debit-hero-card {
  background-color: rgba(5, 44, 70, .84);
  background-image: linear-gradient(145deg, rgba(5, 44, 70, .84), rgba(7, 35, 54, .76));
}

.home-page .management-standard {
  background-image:
    var(--home-final-hero-overlay),
    var(--home-final-hero-vignette),
    url('../img/home-padrao-redoma-hero-v1.png');
  background-position: center;
  background-size: cover;
}
.home-page .technology-visual::after {
  content: none;
}

.home-page .technology-visual img {
  filter: none;
  object-position: center;
}


/* Regra final de segurança: nenhuma hero fica presa a uma altura fixa.
   Em telas menores ela usa a altura disponível; se o conteúdo precisar de
   mais espaço, a própria hero cresce e a página segue rolando normalmente. */

/* Ritmo vertical consolidado.
   Seções isoladas mantêm presença; blocos claros consecutivos dividem o
   respiro para evitar áreas vazias grandes entre o último texto e o título
   seguinte. */
@media (min-width: 981px) {
  .institutional-page .institutional-section,
  .solution-detail-page .solution-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .home-page .premium-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .company-operation,
  .solution-process,
  .catalog-integration,
  .management-standard,
  .insurance-coverage,
  .insurance-assistance,
  .insurance-lead {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .insurance-fire-content { padding-top: 84px; padding-bottom: 84px; }
  .insurance-documents { padding-top: 72px; padding-bottom: 72px; }
  .solution-practical { padding-top: 62px; padding-bottom: 62px; }
  .solution-cta,
  .institutional-cta { padding-top: 64px; padding-bottom: 64px; }
  .privacy-content-section { padding-top: 76px; padding-bottom: 88px; }
  .contact-page main > .section { padding-top: 72px; padding-bottom: 84px; }
  .debit-banks-section { padding-top: 78px; padding-bottom: 76px; }
  .debit-form-section { padding-top: 84px; padding-bottom: 96px; }

  .institutional-page .company-structure,
  .institutional-page .team-intro,
  .institutional-page .story-origin,
  .institutional-page .who-section,
  .solution-detail-page .solution-intro,
  .solution-detail-page .solution-faq,
  .solution-detail-page .catalog-intro {
    padding-bottom: 30px;
  }

  .institutional-page .company-principles,
  .institutional-page .team-specialties,
  .institutional-page .story-timeline-section,
  .institutional-page .institutional-services,
  .solution-detail-page .solution-benefits,
  .solution-detail-page .solution-related,
  .solution-detail-page .catalog-services {
    padding-top: 30px;
  }

  .home-page .services-premium { padding-bottom: 36px; }
  .home-page .technology-section { padding-top: 36px; padding-bottom: 36px; }
  .home-page .process-section { padding-top: 36px; }
}

@media (min-width: 641px) and (max-width: 980px) {
  .institutional-page .institutional-section,
  .solution-detail-page .solution-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-page .premium-section { padding-top: 68px; padding-bottom: 68px; }
  .company-operation,
  .solution-process,
  .catalog-integration,
  .management-standard,
  .insurance-coverage,
  .insurance-assistance,
  .insurance-lead { padding-top: 72px; padding-bottom: 72px; }
  .solution-practical { padding-top: 58px; padding-bottom: 58px; }
  .solution-cta,
  .institutional-cta { padding-top: 58px; padding-bottom: 58px; }
  .privacy-content-section { padding-top: 64px; padding-bottom: 74px; }
  .contact-page main > .section { padding-top: 60px; padding-bottom: 72px; }
  .debit-banks-section { padding-top: 68px; padding-bottom: 66px; }
  .debit-form-section { padding-top: 72px; padding-bottom: 82px; }

  .institutional-page .company-structure,
  .institutional-page .team-intro,
  .institutional-page .story-origin,
  .institutional-page .who-section,
  .solution-detail-page .solution-intro,
  .solution-detail-page .solution-faq,
  .solution-detail-page .catalog-intro { padding-bottom: 27px; }

  .institutional-page .company-principles,
  .institutional-page .team-specialties,
  .institutional-page .story-timeline-section,
  .institutional-page .institutional-services,
  .solution-detail-page .solution-benefits,
  .solution-detail-page .solution-related,
  .solution-detail-page .catalog-services { padding-top: 27px; }

  .home-page .services-premium { padding-bottom: 32px; }
  .home-page .technology-section { padding-top: 32px; padding-bottom: 32px; }
  .home-page .process-section { padding-top: 32px; }
}

@media (max-width: 640px) {
  .institutional-page .institutional-section,
  .solution-detail-page .solution-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .home-page .premium-section { padding-top: 58px; padding-bottom: 58px; }
  .company-operation,
  .solution-process,
  .catalog-integration,
  .management-standard,
  .insurance-coverage,
  .insurance-assistance,
  .insurance-lead { padding-top: 64px; padding-bottom: 64px; }
  .solution-practical { padding-top: 52px; padding-bottom: 52px; }
  .solution-cta,
  .institutional-cta { padding-top: 52px; padding-bottom: 52px; }
  .privacy-content-section { padding-top: 56px; padding-bottom: 64px; }
  .contact-page main > .section { padding-top: 48px; padding-bottom: 60px; }
  .debit-banks-section { padding-top: 58px; padding-bottom: 56px; }
  .debit-form-section { padding-top: 62px; padding-bottom: 70px; }

  .institutional-page .company-structure,
  .institutional-page .team-intro,
  .institutional-page .story-origin,
  .institutional-page .who-section,
  .solution-detail-page .solution-intro,
  .solution-detail-page .solution-faq,
  .solution-detail-page .catalog-intro { padding-bottom: 22px; }

  .institutional-page .company-principles,
  .institutional-page .team-specialties,
  .institutional-page .story-timeline-section,
  .institutional-page .institutional-services,
  .solution-detail-page .solution-benefits,
  .solution-detail-page .solution-related,
  .solution-detail-page .catalog-services { padding-top: 22px; }

  .home-page .services-premium { padding-bottom: 28px; }
  .home-page .technology-section { padding-top: 28px; padding-bottom: 28px; }
  .home-page .process-section { padding-top: 28px; }
}

/* Cabeçalho da home com QR visível no padrão da prévia aprovada. */
@media (min-width: 1201px) {
  .unified-main-header .container {
    width: min(1500px, calc(100% - 72px));
  }

  .header-composition {
    min-height: 190px;
    grid-template-columns: 360px minmax(0, 1fr);
    grid-template-rows: 78px 112px;
  }

  .unified-main-header .header-composition > .logo {
    width: 330px;
    grid-column: 1;
    grid-row: 2;
    border-right: 0;
  }

  .unified-main-header .header-composition > .logo img {
    width: 310px;
    max-height: 150px;
    transform: translateX(-18px) scale(1);
  }

  .header-composition .header-utility {
    position: relative;
    grid-column: 1 / -1;
    grid-row: 1;
    border-bottom: 0;
    background: linear-gradient(90deg, #e8f6ff 0%, #f2fbff 52%, #e8f6ff 100%);
    box-shadow: 0 0 0 100vmax #edf8ff;
    clip-path: inset(0 -100vmax);
  }

  .header-composition .online-services {
    grid-template-columns: 225px repeat(3, minmax(150px, 1fr)) 318px;
    align-items: center;
  }

  .header-services-intro {
    border-left: 3px solid #0070d8;
    padding-left: 20px;
  }

  .header-services-intro small {
    font-size: 10px;
  }

  .header-services-intro strong {
    color: #0a5fab;
    font-size: 18px;
  }

  .header-composition .online-service-link {
    min-height: 78px;
    padding: 0 18px;
    border-left-color: rgba(0, 112, 216, .16);
    color: #0b5597;
  }

  .online-service-copy strong {
    color: #24506f;
    font-size: 13px;
  }

  .online-service-copy small {
    color: #6a7d8b;
    font-size: 10px;
  }

  .online-app-card {
    width: 300px;
    min-height: 66px;
    justify-self: end;
    grid-template-columns: minmax(0, 1fr) 64px;
    gap: 15px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 13px 30px rgba(7, 46, 74, .12);
    padding: 8px 12px 8px 24px;
  }

  .online-app-card:hover,
  .online-app-card:focus-visible {
    background: #fff;
    box-shadow: 0 16px 36px rgba(7, 46, 74, .18);
    transform: translateY(-1px);
  }

  .online-app-copy strong {
    color: #0070d8;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -.02em;
  }

  .online-app-copy small {
    color: #4f5f6b;
    font-size: 14px;
    font-weight: 650;
  }

  .online-app-qr {
    width: 64px;
    height: 64px;
    box-shadow: none;
    padding: 2px;
  }

  .header-composition > .header-row {
    min-height: 112px;
    grid-column: 2;
    grid-row: 2;
  }

  .header-composition .corporate-nav {
    justify-content: flex-end;
    gap: 12px;
  }

  .header-phone {
    min-width: 214px;
    border-color: transparent;
    border-radius: 999px;
    background: #0070d8;
    box-shadow: 0 12px 28px rgba(0, 112, 216, .22);
    color: #fff;
    padding: 12px 20px 12px 14px;
  }

  .header-phone:hover {
    background: #0066c4;
    color: #fff;
  }

  .header-phone-icon {
    background: rgba(255, 255, 255, .17);
    color: #fff;
  }

  .header-phone-copy {
    display: flex;
  }

  .header-phone-copy small,
  .header-phone-copy strong {
    color: #fff;
  }

  .header-phone-copy strong {
    font-size: 17px;
  }
}

/* Refinamento: QR integrado ao fundo azul-claro, sem card branco e sem sobrepor a navegação. */
@media (min-width: 1201px) {
  .unified-main-header .container {
    width: min(1320px, calc(100% - 72px));
  }

  .header-composition {
    min-height: 154px;
    grid-template-columns: 300px minmax(0, 1fr);
    grid-template-rows: 58px 96px;
  }

  .unified-main-header .header-composition > .logo {
    width: 270px;
    grid-row: 2;
    align-self: center;
  }

  .unified-main-header .header-composition > .logo img {
    width: 242px;
    max-height: 94px;
    transform: translateX(-12px);
  }

  .header-composition .online-services {
    grid-template-columns: 210px repeat(3, minmax(140px, 1fr)) 238px;
  }

  .header-services-intro {
    padding-left: 18px;
  }

  .header-services-intro strong {
    font-size: 16px;
  }

  .header-composition .online-service-link {
    min-height: 58px;
    gap: 9px;
    padding: 0 14px;
  }

  .online-service-copy strong {
    font-size: 12px;
  }

  .online-service-copy small {
    font-size: 9px;
  }

  .online-app-card {
    width: auto;
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 12px;
    border-left: 1px solid rgba(0, 112, 216, .16);
    border-right: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 4px 8px 4px 18px;
  }

  .online-app-card:hover,
  .online-app-card:focus-visible {
    background: rgba(255, 255, 255, .22);
    box-shadow: inset 0 -2px rgba(0, 112, 216, .72);
    transform: none;
  }

  .online-app-copy strong {
    font-size: 16px;
    letter-spacing: -.01em;
  }

  .online-app-copy small {
    font-size: 11px;
  }

  .online-app-qr {
    width: 46px;
    height: 46px;
    border-radius: 3px;
    box-shadow: none;
    padding: 2px;
  }

  .header-composition > .header-row {
    min-height: 96px;
  }

  .header-composition .corporate-nav {
    gap: 4px;
  }

  .header-composition .corporate-nav > a,
  .header-composition .corporate-nav .nav-trigger {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
    letter-spacing: .11em;
  }

  .header-phone {
    min-width: 188px;
    margin-left: 14px;
    padding: 10px 16px 10px 12px;
  }

  .header-phone-copy strong {
    font-size: 15px;
  }
}

/* Header final: navegação branca acima, acesso rápido azul-claro abaixo. */
@media (min-width: 1201px) {
  .unified-main-header .container {
    width: min(1320px, calc(100% - 72px));
  }

  .header-composition {
    min-height: 166px;
    grid-template-columns: 318px minmax(0, 1fr);
    grid-template-rows: 108px 58px;
  }

  .unified-main-header .header-composition > .logo {
    width: 300px;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    border-right: 0;
  }

  .unified-main-header .header-composition > .logo img {
    width: 285px;
    max-height: 108px;
    transform: translateX(-14px);
  }

  .header-composition > .header-row {
    min-height: 108px;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
  }

  .header-composition .header-utility {
    position: relative;
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid rgba(0, 112, 216, .12);
    border-bottom: 0;
    background: linear-gradient(90deg, #e8f6ff 0%, #f3fbff 52%, #e8f6ff 100%);
    box-shadow: 0 0 0 100vmax #edf8ff;
    clip-path: inset(0 -100vmax);
  }

  .header-composition .online-services {
    grid-template-columns: 218px repeat(3, minmax(155px, 1fr)) 238px;
    align-items: center;
  }

  .header-services-intro {
    min-height: 58px;
    border-left: 3px solid #0070d8;
    padding: 0 18px;
  }

  .header-services-intro small { font-size: 9px; }
  .header-services-intro strong { color: #0a5fab; font-size: 16px; }

  .header-composition .online-service-link {
    min-height: 58px;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 10px;
    border-left-color: rgba(0, 112, 216, .16);
    padding: 0 14px;
    color: #0b5597;
  }

  .online-service-icon {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: #0070d8;
  }

  .online-service-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .online-service-number { display: none; }
  .online-service-copy strong { color: #24506f; font-size: 12px; }
  .online-service-copy small { color: #6a7d8b; font-size: 9px; }

  .online-app-card {
    width: auto;
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 12px;
    border-left: 1px solid rgba(0, 112, 216, .16);
    border-right: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 4px 8px 4px 18px;
  }

  .online-app-card:hover,
  .online-app-card:focus-visible {
    background: rgba(255, 255, 255, .24);
    box-shadow: inset 0 -2px rgba(0, 112, 216, .72);
    transform: none;
  }

  .online-app-copy strong { font-size: 16px; letter-spacing: -.01em; }
  .online-app-copy small { font-size: 11px; }

  .online-app-qr {
    width: 46px;
    height: 46px;
    border-radius: 3px;
    box-shadow: none;
    padding: 2px;
  }

  .header-composition .corporate-nav {
    gap: 4px;
  }

  .header-composition .corporate-nav > a,
  .header-composition .corporate-nav .nav-trigger {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
    letter-spacing: .11em;
  }

  .header-phone {
    min-width: 188px;
    margin-left: 14px;
    border-color: transparent;
    border-radius: 999px;
    background: #0070d8;
    box-shadow: 0 12px 28px rgba(0, 112, 216, .22);
    color: #fff;
    padding: 10px 16px 10px 12px;
  }

  .header-phone:hover { background: #0066c4; color: #fff; }
  .header-phone-icon { background: rgba(255, 255, 255, .17); color: #fff; }
  .header-phone-copy { display: flex; }
  .header-phone-copy small,
  .header-phone-copy strong { color: #fff; }
  .header-phone-copy strong { font-size: 15px; }

  .home-page .corporate-hero {
    height: min(620px, calc(100vh - 222px));
    min-height: min(620px, calc(100vh - 222px));
  }

  .home-page .corporate-hero-grid {
    min-height: min(620px, calc(100vh - 222px));
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .home-page .scroll-cue {
    display: none;
  }
}

@media (min-width: 1201px) and (max-height: 860px) {
  .home-page .corporate-hero h1 {
    font-size: clamp(38px, 3.3vw, 52px);
  }

  .home-page .corporate-hero-copy > p {
    font-size: 16px;
    line-height: 1.62;
  }

  .home-page .hero-actions {
    margin-top: 24px;
  }
}

.online-service-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  color: #0070d8;
}

.online-service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

/* Header refinado: logo lateral unificada e duas barras à direita. */
@media (min-width: 1201px) {
  .unified-main-header {
    background: #fff;
  }

  .unified-main-header .container {
    width: min(1360px, calc(100% - 64px));
  }

  .header-composition {
    min-height: 170px;
    grid-template-columns: 330px minmax(0, 1fr);
    grid-template-rows: 112px 58px;
    background: #fff;
  }

  .unified-main-header .header-composition > .logo {
    width: 330px;
    height: 170px;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0, 112, 216, .16);
    background: #fff;
  }

  .unified-main-header .header-composition > .logo img {
    width: 315px;
    max-height: 154px;
    transform: none;
    object-fit: contain;
  }

  .header-composition > .header-row {
    min-height: 112px;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    gap: 18px;
    justify-content: flex-start;
    padding-left: 18px;
  }

  .header-composition .header-utility {
    position: relative;
    grid-column: 2;
    grid-row: 2;
    min-height: 58px;
    border-top: 1px solid rgba(0, 112, 216, .12);
    border-bottom: 0;
    background: linear-gradient(90deg, #e8f6ff 0%, #f5fbff 100%);
    box-shadow: 100vmax 0 0 100vmax #edf8ff;
    clip-path: inset(0 -100vmax 0 0);
  }

  .header-composition .online-services {
    min-height: 58px;
    grid-template-columns: repeat(3, minmax(168px, 1fr)) 198px;
    align-items: center;
  }

  .header-services-intro {
    min-height: 58px;
    border-left: 0;
    padding: 0 14px 0 24px;
  }

  .header-services-intro small {
    display: none;
  }

  .header-services-intro strong {
    color: #0a5fab;
    font-size: 15px;
  }

  .header-composition .online-service-link {
    min-height: 58px;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 0 18px;
  }

  .online-service-copy strong {
    font-size: 12px;
    white-space: normal;
  }

  .online-service-copy small {
    font-size: 9px;
    white-space: normal;
  }

  .online-app-card {
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 10px;
    padding: 4px 0 4px 14px;
  }

  .online-app-copy strong {
    font-size: 14px;
  }

  .online-app-copy small {
    font-size: 10px;
  }

  .online-app-qr {
    width: 44px;
    height: 44px;
  }

  .header-composition .corporate-nav {
    flex: 1 1 auto;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
  }

  .header-composition .corporate-nav > a,
  .header-composition .corporate-nav .nav-trigger {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
    letter-spacing: .11em;
  }

  .header-phone {
    flex: 0 0 auto;
    min-width: 180px;
    margin-left: 6px;
    padding: 9px 14px 9px 11px;
  }

  .header-phone-copy strong {
    font-size: 14px;
  }

  .home-page .corporate-hero {
    height: 720px;
    min-height: 720px;
  }

  .home-page .corporate-hero-grid {
    min-height: 720px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .home-page .scroll-cue {
    display: flex;
    bottom: 14px;
  }
}

@media (min-width: 1201px) and (max-width: 1320px) {
  .header-composition {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .unified-main-header .header-composition > .logo {
    width: 300px;
  }

  .unified-main-header .header-composition > .logo img {
    width: 286px;
  }

  .header-composition .online-services {
    grid-template-columns: repeat(3, minmax(142px, 1fr)) 172px;
  }

  .header-composition .online-service-link {
    padding-right: 12px;
    padding-left: 12px;
  }

  .header-composition > .header-row {
    gap: 12px;
    padding-left: 14px;
  }

  .header-composition .corporate-nav {
    gap: 4px;
  }

  .header-composition .corporate-nav > a,
  .header-composition .corporate-nav .nav-trigger {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
    letter-spacing: .09em;
  }
}

/* Mantém o cabeçalho inteiro quando ele fica fixo durante a rolagem. */
@media (min-width: 1201px) {
  .unified-main-header,
  .unified-main-header.is-scrolled {
    position: sticky;
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .unified-main-header::before {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    height: 112px;
    background: #fff;
    content: "";
  }

  .unified-main-header::after {
    position: absolute;
    z-index: 0;
    top: 112px;
    right: 0;
    left: 0;
    display: block;
    height: 58px;
    background: #fff;
    content: "";
  }

  .unified-main-header .header-composition {
    position: relative;
    z-index: 1;
  }

  .unified-main-header .header-composition > .logo {
    position: relative;
    z-index: 2;
    box-shadow: none;
  }

  .unified-main-header .header-composition > .logo::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 100vw;
    background: #fff;
    content: "";
  }

  .header-composition .header-utility {
    isolation: isolate;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    clip-path: none;
  }

  .header-composition .header-utility::before {
    position: absolute;
    z-index: -1;
    inset: 0 -100vw 0 0;
    background: linear-gradient(90deg, #e8f6ff 0%, #f5fbff 100%);
    content: "";
  }

  .header-composition .online-services {
    position: relative;
    z-index: 1;
  }
}

/* Evita colisão entre LGPD e telefone na barra branca. */
@media (min-width: 1201px) {
  .header-composition > .header-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 18px;
  }

  .header-composition .corporate-nav {
    width: 100%;
    justify-content: space-between;
    overflow: visible;
  }

  .header-composition .corporate-nav > a,
  .header-composition .corporate-nav .nav-trigger {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }

  .header-phone {
    min-width: 166px;
    margin-left: 0;
    justify-self: end;
    padding-right: 16px;
  }

  .header-phone-copy small {
    display: none;
  }

  .header-phone-copy strong {
    margin-top: 0;
    font-size: 15px;
  }
}

@media (min-width: 1201px) and (max-width: 1480px) {
  .header-composition > .header-row {
    column-gap: 24px;
  }

  .header-composition .corporate-nav {
    gap: 2px;
  }

  .header-composition .corporate-nav > a,
  .header-composition .corporate-nav .nav-trigger {
    padding-right: 5px;
    padding-left: 5px;
    font-size: 11px;
    letter-spacing: .07em;
  }

  .header-phone {
    min-width: 154px;
    padding-right: 12px;
  }

  .header-phone-copy strong {
    font-size: 14px;
  }
}

/* Cabeçalho canônico: mantém a mesma barra em todas as páginas. */
@media (min-width: 1201px) {
  .main-header.unified-main-header,
  .main-header.unified-main-header.is-scrolled {
    top: 0;
    min-height: 170px;
    overflow: visible;
    border-bottom: 1px solid rgba(24, 67, 98, .12);
    background: #fff;
    box-shadow: 0 10px 35px rgba(11, 45, 70, .09);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .main-header.unified-main-header .container.header-composition {
    width: min(1360px, calc(100% - 64px));
    min-height: 170px;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    grid-template-rows: 112px 58px;
    background: #fff;
  }

  .main-header.unified-main-header .header-composition > .logo {
    position: relative;
    z-index: 2;
    width: 330px;
    height: 170px;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0, 112, 216, .16);
    background: #fff;
    box-shadow: none;
  }

  .main-header.unified-main-header .header-composition > .logo::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 100vw;
    background: #fff;
    content: "";
  }

  .main-header.unified-main-header .header-composition > .logo img {
    width: 315px;
    max-height: 154px;
    object-fit: contain;
    transform: none;
  }

  .main-header.unified-main-header .header-composition > .header-row {
    min-height: 112px;
    display: grid;
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 24px;
    padding: 0 0 0 18px;
  }

  .main-header.unified-main-header .header-composition .corporate-nav {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    padding: 0;
  }

  .main-header.unified-main-header .header-composition .corporate-nav > a,
  .main-header.unified-main-header .header-composition .corporate-nav .nav-trigger {
    padding: 12px 5px;
    font-size: 11px;
    letter-spacing: .07em;
  }

  .main-header.unified-main-header .header-phone {
    min-width: 154px;
    justify-self: end;
    margin: 0;
    padding: 9px 12px 9px 11px;
  }

  .main-header.unified-main-header .header-phone-copy {
    display: flex;
  }

  .main-header.unified-main-header .header-phone-copy small {
    display: none;
  }

  .main-header.unified-main-header .header-phone-copy strong {
    margin-top: 0;
    font-size: 14px;
  }

  .main-header.unified-main-header .header-composition .header-utility {
    position: relative;
    isolation: isolate;
    min-height: 58px;
    overflow: visible;
    display: block;
    grid-column: 2;
    grid-row: 2;
    border-top: 1px solid rgba(0, 112, 216, .12);
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    clip-path: none;
  }

  .main-header.unified-main-header .header-composition .header-utility::before {
    position: absolute;
    z-index: -1;
    inset: 0 -100vw 0 0;
    background: linear-gradient(90deg, #e8f6ff 0%, #f5fbff 100%);
    content: "";
  }

  .main-header.unified-main-header .header-composition .online-services {
    min-height: 58px;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(142px, 1fr)) 172px;
    align-items: center;
    margin: 0;
  }

  .main-header.unified-main-header .header-composition .online-service-link {
    min-height: 58px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 0 12px;
  }

  .main-header.unified-main-header .online-service-copy strong {
    font-size: 12px;
    white-space: normal;
  }

  .main-header.unified-main-header .online-service-copy small {
    font-size: 9px;
    white-space: normal;
  }

  .main-header.unified-main-header .online-app-card {
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 10px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 4px 0 4px 14px;
  }

  .main-header.unified-main-header .online-app-qr {
    width: 44px;
    height: 44px;
  }
}

@media (min-width: 1481px) {
  .main-header.unified-main-header .header-composition .corporate-nav > a,
  .main-header.unified-main-header .header-composition .corporate-nav .nav-trigger {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }

  .main-header.unified-main-header .header-phone {
    min-width: 166px;
    padding-right: 16px;
  }

  .main-header.unified-main-header .header-phone-copy strong {
    font-size: 15px;
  }

  .main-header.unified-main-header .header-composition .online-services {
    grid-template-columns: repeat(3, minmax(168px, 1fr)) 198px;
  }
}

@media (min-width: 1201px) and (max-width: 1320px) {
  .main-header.unified-main-header .container.header-composition {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .main-header.unified-main-header .header-composition > .logo {
    width: 300px;
  }

  .main-header.unified-main-header .header-composition > .logo img {
    width: 286px;
  }
}

@media (max-width: 1100px) {
  .google-review-cards { grid-template-columns: repeat(3, 1fr); }
  .google-review-card { min-height: 250px; }
}

@media (max-width: 980px) {
  .google-rating-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .google-rating-brand,
  .google-rating-actions { justify-content: center; }

  .google-review-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .google-reviews-section { padding: 58px 0 64px; }

  .google-reviews-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  .google-reviews-heading .kicker { justify-content: flex-start; }

  .google-reviews-heading h2 {
    font-size: 30px;
    letter-spacing: 0;
    line-height: 1.2;
  }

  .google-rating-panel { padding: 26px 24px; }

  .google-rating-brand {
    justify-content: flex-start;
    text-align: left;
  }

  .google-rating-score {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .google-rating-score strong { font-size: 64px; }

  .google-rating-score p {
    grid-column: auto;
    max-width: 100%;
  }

  .google-rating-actions { justify-content: stretch; }

  .google-rating-actions .button {
    width: 100%;
    min-width: 0;
  }

  .google-review-cards { grid-template-columns: 1fr; }

.google-review-card {
    min-height: 0;
    padding: 24px 26px;
  }
}

/* Faixa de atendimento: informações essenciais alinhadas antes do rodapé. */
.contact-ribbon {
  border-top: 1px solid #cfe2ec;
  border-bottom: 1px solid #c4dce7;
  background: linear-gradient(115deg, #fbfdfe 0%, #eef8fc 58%, #e1f1f8 100%);
}
.contact-ribbon-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.contact-ribbon-item,
.contact-ribbon-item:first-child {
  min-width: 0;
  min-height: 154px;
  border-right: 1px solid #c8dfe9;
  padding: 30px 34px;
}
.contact-ribbon-item:first-child { padding-left: 0; }
.contact-ribbon-item:last-child { border-right: 0; }
.contact-ribbon-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid #9fcee0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
  color: var(--premium-blue);
}
.contact-ribbon-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.contact-ribbon small { font-size: 10px; letter-spacing: .13em; }
.contact-ribbon strong { margin-top: 7px; font-size: 14px; line-height: 1.5; }
.contact-ribbon-item > div > span,
.contact-ribbon-item > div > a { margin-top: 4px; color: #637987; font-size: 12px; line-height: 1.55; }
.contact-ribbon-item > div > a { color: var(--premium-blue); font-weight: 700; }

@media (max-width: 980px) {
  .contact-ribbon-grid { grid-template-columns: 1fr 1fr; }
  .contact-ribbon-item,
  .contact-ribbon-item:first-child { padding: 26px 24px; }
  .contact-ribbon-item:nth-child(2) { border-right: 0; }
  .contact-ribbon-item:last-child { grid-column: 1 / -1; border-top: 1px solid #c8dfe9; border-right: 0; }
}

@media (max-width: 640px) {
  .contact-ribbon-grid { grid-template-columns: 1fr; }
  .contact-ribbon-item,
  .contact-ribbon-item:first-child,
  .contact-ribbon-item:nth-child(2),
  .contact-ribbon-item:last-child {
    min-height: 116px;
    grid-column: auto;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #c8dfe9;
    padding: 22px 0;
  }
  .contact-ribbon-item:last-child { border-bottom: 0; }
  .contact-ribbon-icon { width: 40px; height: 40px; flex-basis: 40px; }
  .contact-ribbon strong { font-size: 13px; }
  .contact-ribbon-item > div > span,
  .contact-ribbon-item > div > a { font-size: 11px; }
}

/* Área de atuação: uma rota visual torna a cobertura regional mais clara que
   um mapa abstrato e mantém os três pontos legíveis em qualquer tela. */
.home-page .regions-section .region-map {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid #d8eaf2;
  background: linear-gradient(145deg, #f7fcfe, #eaf6fb);
  box-shadow: 0 24px 55px rgba(7, 53, 84, .08);
  padding: 34px 36px 28px;
}
.home-page .regions-section .region-map::before {
  inset: 0;
  background-image: linear-gradient(rgba(132, 190, 214, .13) 1px, transparent 1px), linear-gradient(90deg, rgba(132, 190, 214, .13) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .7;
}
.home-page .regions-section .region-map::after {
  position: absolute;
  top: 92px;
  right: -70px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(0, 112, 216, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(0, 112, 216, .035), 0 0 0 72px rgba(0, 112, 216, .025);
  content: "";
  pointer-events: none;
}
.region-map-head,
.coverage-network,
.coverage-summary { position: relative; z-index: 1; }
.region-map-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.region-map-head span {
  display: block;
  margin-bottom: 7px;
  color: var(--premium-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.region-map-head strong {
  display: block;
  color: var(--premium-navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
}
.region-map-head b {
  color: rgba(0, 112, 216, .15);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 76px;
  font-weight: 600;
  line-height: .8;
}
.coverage-network { min-height: 260px; margin-top: 20px; }
.coverage-route {
  position: absolute;
  top: 51%;
  left: 11%;
  width: 78%;
  height: 58px;
  border-top: 2px solid #9dcfe4;
  border-radius: 50%;
  transform: rotate(-10deg);
}
.coverage-route::after {
  position: absolute;
  top: -6px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--premium-blue);
  border-right: 2px solid var(--premium-blue);
  content: "";
  transform: rotate(45deg);
}
.coverage-stop {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 190px;
}
.coverage-stop > i {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--premium-blue);
  box-shadow: 0 0 0 4px rgba(0, 112, 216, .15);
}
.coverage-stop > div {
  border: 1px solid #d8e8ef;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 24px rgba(7, 53, 84, .09);
  padding: 10px 12px;
}
.coverage-stop strong,
.coverage-stop small { display: block; }
.coverage-stop strong { color: var(--premium-navy); font-size: 12px; line-height: 1.35; }
.coverage-stop small { margin-top: 4px; color: #78909d; font-size: 10px; line-height: 1.35; }
.coverage-stop-metropolitan { top: 18%; left: 0; }
.coverage-stop-porto { top: 54%; left: 35%; }
.coverage-stop-litoral { top: 4%; right: 0; }
.coverage-summary {
  display: flex;
  gap: 18px;
  border-top: 1px solid #cfe3ec;
  padding-top: 18px;
  color: #607986;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.coverage-summary span + span { border-left: 1px solid #cfe3ec; padding-left: 18px; }

@media (max-width: 980px) {
  .home-page .regions-section .region-map { min-height: 410px; }
}

@media (max-width: 640px) {
  .home-page .regions-section .region-map { min-height: 390px; padding: 26px 22px 22px; }
  .region-map-head strong { font-size: 18px; }
  .region-map-head b { font-size: 58px; }
  .coverage-network { min-height: 235px; margin-top: 12px; }
  .coverage-route { left: 12%; width: 72%; }
  .coverage-stop { max-width: 160px; gap: 8px; }
  .coverage-stop > div { padding: 8px 9px; }
  .coverage-stop strong { font-size: 10px; }
  .coverage-stop small { font-size: 9px; }
  .coverage-stop-metropolitan { left: -5px; }
  .coverage-stop-porto { left: 25%; top: 56%; }
  .coverage-stop-litoral { right: -5px; }
  .coverage-summary { gap: 10px; font-size: 8px; }
  .coverage-summary span + span { padding-left: 10px; }
}

/* Marcadores visuais: os blocos usam simbolos, enquanto os numeros ficam
   reservados para indicadores e resultados mensuraveis. */
.sequence-marker {
  width: 28px;
  height: 28px;
  display: inline-grid;
  flex: 0 0 28px;
  place-items: center;
  color: var(--premium-blue);
  font-size: 0 !important;
  line-height: 1;
}
.sequence-marker svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-index {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0 !important;
  line-height: 1;
}
.service-index::before { display: none; content: none; }

.process-number {
  display: none;
}

.standard-pillars .pillar-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #7fd0f4;
}
.standard-pillars .pillar-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.story-page .team-roster-grid article {
  grid-template-columns: 1fr;
}
.story-page .story-team-block .team-roster-grid strong {
  font-size: 14px;
}
.story-page .story-icon,
.story-page .principle-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--institutional-blue, #0070d8);
}
.story-page .story-icon svg,
.story-page .principle-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.story-page .story-timeline small { margin-top: 24px; }
.story-page .company-principle-grid h3 { margin-top: 42px; }
.story-page .institutional-pillars h3 { margin-top: 42px; }
.story-page .company-principle-grid .principle-icon,
.story-page .institutional-pillars .principle-icon { color: #4fc2f3; }

.assistance-icon {
  font-size: 0;
}
.assistance-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (max-width: 640px) {
  .sequence-marker { width: 24px; height: 24px; flex-basis: 24px; }
  .sequence-marker svg { width: 23px; height: 23px; }
  .service-index { width: 26px; height: 26px; }
}

/* Icones tematicos das solucoes substituem os marcadores numericos. */
.solution-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  flex: 0 0 30px;
  place-items: center;
  color: currentColor;
  line-height: 1;
}
.solution-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.solution-detail-page .solution-benefit-grid h3 { margin-top: 42px; }
.solution-detail-page .catalog-integration-list h3 { margin-top: 30px; }

@media (max-width: 640px) {
  .solution-icon { width: 26px; height: 26px; flex-basis: 26px; }
  .solution-icon svg { width: 22px; height: 22px; }
  .solution-detail-page .solution-benefit-grid h3 { margin-top: 32px; }
  .solution-detail-page .catalog-integration-list h3 { margin-top: 25px; }
}

.solution-detail-page .solution-result-panel .solution-icon,
.solution-detail-page .solution-process .solution-icon,
.solution-detail-page .catalog-integration .solution-icon {
  color: #fff;
}

.institutional-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  flex: 0 0 30px;
  place-items: center;
  color: currentColor;
  line-height: 1;
}
.institutional-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.institutional-check-list .institutional-icon { color: var(--institutional-blue); }
.company-operation .institutional-icon { color: #fff; }

@media (max-width: 640px) {
  .institutional-icon { width: 26px; height: 26px; flex-basis: 26px; }
  .institutional-icon svg { width: 22px; height: 22px; }
}

.presence-list > .presence-item {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--institutional-line);
  border-bottom: 1px solid var(--institutional-line);
  padding: 22px 24px;
  color: var(--institutional-navy);
}
.presence-list > .presence-item:nth-child(even) { border-right: 0; }
.presence-list .presence-icon {
  width: 34px;
  height: 34px;
  min-height: 0;
  display: inline-grid;
  flex: 0 0 34px;
  place-items: center;
  border: 0;
  padding: 0;
  color: var(--institutional-blue);
}
.presence-list .presence-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.presence-list > .presence-item strong {
  display: block;
  color: var(--institutional-navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .presence-list > .presence-item {
    min-height: 92px;
    padding: 18px 20px;
  }
  .presence-list > .presence-item strong { font-size: 13px; }
}

.team-specialty-grid .institutional-icon { color: var(--institutional-blue); }
.team-specialty-grid h3 { margin-top: 42px; }

@media (max-width: 640px) {
  .team-specialty-grid h3 { margin-top: 32px; }
}

/* Ajustes finais para celulares: cada bloco cresce verticalmente, sem criar
   largura extra ou ocultar informações fora da tela. */
@media (max-width: 980px) {
  main,
  main > section,
  .container,
  .grid > *,
  [class$="-grid"] > *,
  [class*="-grid "] > *,
  [class$="-layout"] > *,
  [class*="-layout "] > * {
    min-width: 0;
  }

  input,
  select,
  textarea,
  button,
  .btn,
  .button {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  main * {
    min-width: 0;
  }

  main p,
  main li,
  main a,
  .privacy-banner p,
  .privacy-banner .btn {
    overflow-wrap: anywhere;
  }

  .privacy-banner {
    right: auto;
    left: 12px;
    width: calc(100vw - 24px);
    max-width: none;
    box-sizing: border-box;
    padding: 20px;
  }

  .privacy-banner .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-banner .actions .btn {
    width: 100%;
    flex: 0 0 auto;
  }

  /* Os atalhos deixam de disputar a mesma linha no telefone. */
  .header-composition {
    min-height: 232px;
    grid-template-rows: 82px minmax(150px, auto);
  }

  .header-composition .header-utility {
    min-height: 150px;
  }

  .header-composition .online-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 50px);
  }

  .header-composition .online-service-link {
    min-height: 50px;
  }

  .online-app-card {
    min-height: 50px;
    grid-column: 1 / -1;
    grid-template-columns: max-content 42px;
    justify-content: center;
    justify-items: stretch;
    gap: 9px;
    padding: 4px 12px;
  }

  .online-app-copy {
    display: grid;
    text-align: right;
  }
  .online-app-qr { width: 42px; height: 42px; }
}
