:root {
  --gpr-azul: #193d78;
  --gpr-azul-hover: #2c568b;
  --gpr-destaque: #ffaa00;

  --gpr-fundo: #f6f7fb;
  --gpr-branco: #ffffff;
  --gpr-preto: #0b1220;

  --gpr-texto: #111827;
  --gpr-texto-suave: #6b7280;

  --gpr-borda: rgba(17, 24, 39, 0.1);
  --gpr-sombra-suave: 0 10px 30px rgba(0, 0, 0, 0.1);
  --gpr-sombra-menu: 0 26px 70px rgba(0, 0, 0, 0.22);

  --gpr-raio: 18px;
  --gpr-raio-menor: 14px;

  --gpr-filtro-overlap: 44px;
  --gpr-paginacao-gap: clamp(18px, 2.8vh, 34px);
  --gpr-slide-duration: 4000ms;

  --gpr-menu-altura: 86px;

  --gpr-hero-altura: clamp(520px, 90vh, 760px);

  --cilog-navy: var(--gpr-azul);
  --cilog-teal: #0bc6c6;
  --cilog-green: #0bd88a;
  --cilog-border: rgba(255, 255, 255, 0.1);
  --cilog-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);

  --gpr-blog-gap: 18px;
  --gpr-blog-arrow-size: 56px;
  --gpr-blog-arrow-icon-w: 18px;
  --gpr-blog-arrow-icon-h: 34px;
  --gpr-blog-rail-gap: 14px;

  --gpr-fonte-base:
    "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --gpr-fonte-destaque:
    "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--gpr-fonte-base);
  color: var(--gpr-texto);
  background: var(--gpr-fundo);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #dddddd;
}
::-webkit-scrollbar-thumb {
  background: var(--gpr-azul);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
}

.form-label,
label {
  font-weight: 700;
  color: var(--gpr-texto);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-control,
.form-select,
textarea.form-control,
input.form-control,
select.form-select {
  min-height: 52px;
  border-radius: 3px;
  border: 1px solid rgba(25, 61, 120, 0.16);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(248, 250, 252, 1) 100%
  );
  color: var(--gpr-texto);
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

textarea.form-control {
  min-height: 140px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.form-control::placeholder,
textarea.form-control::placeholder {
  color: rgba(107, 114, 128, 0.86);
  font-weight: 500;
}

.form-control:hover,
.form-select:hover,
textarea.form-control:hover,
input.form-control:hover,
select.form-select:hover {
  border-color: rgba(25, 61, 120, 0.28);
  box-shadow: 0 10px 24px rgba(25, 61, 120, 0.06);
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus,
input.form-control:focus,
select.form-select:focus {
  border-color: rgba(25, 61, 120, 0.55);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(25, 61, 120, 0.12),
    0 10px 24px rgba(25, 61, 120, 0.08);
  outline: 0;
}

.form-control:disabled,
.form-select:disabled,
textarea.form-control:disabled,
input.form-control:disabled,
select.form-select:disabled {
  background: rgba(244, 246, 249, 0.96);
  color: rgba(107, 114, 128, 0.88);
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.form-control[readonly],
textarea.form-control[readonly],
input.form-control[readonly] {
  background: rgba(244, 246, 249, 0.72);
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: none;
}

.form-select {
  padding-right: 42px;
  background-position: right 14px center;
  background-size: 16px 12px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: auto;
  padding-left: 0;
  margin-bottom: 10px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  border: 1px solid rgba(25, 61, 120, 0.24);
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.form-check-input:hover {
  border-color: rgba(25, 61, 120, 0.42);
}

.form-check-input:focus {
  border-color: rgba(25, 61, 120, 0.55);
  box-shadow: 0 0 0 4px rgba(25, 61, 120, 0.12);
  outline: 0;
}

.form-check-input:checked {
  background-color: var(--gpr-azul);
  border-color: var(--gpr-azul);
}

.form-check-input[type="checkbox"] {
  border-radius: 3px;
}

.form-check-input[type="radio"] {
  border-radius: 999px;
}

.form-check-label {
  color: rgba(17, 24, 39, 0.82);
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
  margin: 0;
}

.form-text {
  color: var(--gpr-texto-suave);
  font-weight: 500;
  margin-top: 8px;
}

.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  z-index: 2;
}

.input-group-text {
  border-radius: 3px;
  border: 1px solid rgba(25, 61, 120, 0.16);
  background: rgba(25, 61, 120, 0.05);
  color: var(--gpr-azul);
  font-weight: 700;
}

.input-group:focus-within .input-group-text {
  border-color: rgba(25, 61, 120, 0.55);
  box-shadow: 0 0 0 4px rgba(25, 61, 120, 0.12);
}

.form-control.is-invalid,
.was-validated .form-control:invalid,
.form-select.is-invalid,
.was-validated .form-select:invalid {
  border-color: rgba(150, 0, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(150, 0, 0, 0.08);
}

.form-control.is-valid,
.was-validated .form-control:valid,
.form-select.is-valid,
.was-validated .form-select:valid {
  border-color: rgba(76, 175, 80, 0.48);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.08);
}

.form-check-input.is-invalid,
.was-validated .form-check-input:invalid {
  border-color: rgba(150, 0, 0, 0.5);
}

.form-check-input.is-valid,
.was-validated .form-check-input:valid {
  border-color: rgba(76, 175, 80, 0.48);
}

input[type="file"].form-control {
  padding-top: 8px;
  padding-bottom: 8px;
}

input[type="file"].form-control::file-selector-button {
  border: 0;
  border-radius: 3px;
  background: rgba(25, 61, 120, 0.08);
  color: var(--gpr-azul);
  font-weight: 700;
  padding: 10px 14px;
  margin-right: 14px;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

input[type="file"].form-control::file-selector-button:hover {
  background: var(--gpr-azul);
  color: #fff;
}

.gpr-filtro-select {
  height: 52px;
  border-radius: 3px;
  border: 1px solid rgba(25, 61, 120, 0.16);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(248, 250, 252, 1) 100%
  );
  color: var(--gpr-texto);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.gpr-filtro-select:hover {
  border-color: rgba(25, 61, 120, 0.28);
  box-shadow: 0 10px 24px rgba(25, 61, 120, 0.06);
}

.gpr-filtro-select:focus {
  border-color: rgba(25, 61, 120, 0.55);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(25, 61, 120, 0.12),
    0 10px 24px rgba(25, 61, 120, 0.08);
}

@media (max-width: 576px) {
  .form-control,
  .form-select,
  textarea.form-control,
  input.form-control,
  select.form-select,
  .gpr-filtro-select {
    min-height: 48px;
    font-size: 16px;
  }

  .form-check-input {
    width: 19px;
    height: 19px;
  }
}

.gpr-btn-outline {
  display: inline-block;
  position: relative;
  padding: 13px 20px;
  background: transparent;
  color: var(--gpr-azul);
  border: 0;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  font: 12px/1.2 var(--gpr-fonte-destaque);
  letter-spacing: 0.16em;
  text-indent: 0;
  text-transform: uppercase;
  font-weight: 800;
  overflow: hidden;
  border-radius: 2px;
  transition: color 0.1s linear 0.05s;
}

.gpr-btn-outline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gpr-azul);
  z-index: 1;
  opacity: 0;
  border-radius: 2px;
  transition:
    height 0.2s ease,
    top 0.2s ease,
    opacity 0s linear 0.2s;
}

.gpr-btn-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--gpr-azul);
  border-radius: 2px;
  z-index: 2;
  transition: border 0.1s linear 0.05s;
}

.gpr-btn-outline > span {
  position: relative;
  z-index: 3;
}

.gpr-btn-outline:hover {
  color: #fff;
  transition: color 0.1s linear 0s;
}

.gpr-btn-outline:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  transition:
    height 0.2s ease,
    top 0.2s ease,
    opacity 0s linear 0s;
}

.gpr-btn-outline:hover::after {
  border-color: var(--gpr-azul);
  transition: border 0.1s linear 0s;
}

.gpr-btn-outline:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(25, 61, 120, 0.22);
}

.gpr-btn {
  display: inline-block;
  position: relative;
  padding: 13px 20px;
  background: #fff;
  color: #fff;
  border: 0;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  font: 12px/1.2 var(--gpr-fonte-destaque);
  letter-spacing: 0.18em;
  text-indent: 0;
  text-transform: uppercase;
  font-weight: 800;
  overflow: hidden;
  border-radius: 3px;
  transition: color 0.1s linear 0.05s;
}

.gpr-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gpr-azul);
  z-index: 1;
  opacity: 1;
  border-radius: 2px;
  transition:
    height 0.2s ease,
    top 0.2s ease,
    opacity 0s linear 0s;
}

.gpr-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--gpr-azul);
  border-radius: 2px;
  z-index: 2;
  transition: border 0.1s linear 0.05s;
}

.gpr-btn > span {
  position: relative;
  z-index: 3;
}

.gpr-btn:hover {
  color: var(--gpr-azul);
  transition: color 0.1s linear 0s;
}

.gpr-btn:hover::before {
  top: 50%;
  height: 1px;
  opacity: 0;
  transition:
    height 0.2s ease,
    top 0.2s ease,
    opacity 0s linear 0.2s;
}

.gpr-btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(25, 61, 120, 0.22);
}
.gpr-btn--cilog {
  display: inline-block;
  position: relative;
  padding: 13px 20px;
  background: #fff;
  color: #fff;
  border: 0;
  cursor: pointer;
  user-select: none;
  text-decoration: none;

  font: 12px/1.2 var(--gpr-fonte-destaque);
  letter-spacing: 0.38em;
  text-indent: 2px;
  text-transform: uppercase;

  overflow: hidden;
  border-radius: 2px;

  --cilog-c1: #0bc6c6;
  --cilog-c2: #0bd88a;
  --cilog-grad: linear-gradient(
    90deg,
    var(--cilog-c1) 0%,
    var(--cilog-c2) 100%
  );
  --cilog-ink: color-mix(in srgb, var(--cilog-c1) 55%, #0b1220);
  --cilog-focus: rgba(11, 198, 198, 0.22);

  transition: color 0.1s linear 0.05s;
}

.gpr-btn--cilog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cilog-grad);
  z-index: 1;
  opacity: 1;
  border-radius: 2px;
  transition:
    height 0.2s ease,
    top 0.2s ease,
    opacity 0s linear 0s;
}

.gpr-btn--cilog::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2px;
  padding: 1px;
  background: var(--cilog-grad);
  z-index: 2;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  transition: opacity 0.1s linear 0.05s;
}

.gpr-btn--cilog > span {
  position: relative;
  z-index: 3;
}

.gpr-btn--cilog:hover {
  color: var(--cilog-ink);
  transition: color 0.1s linear 0s;
}

.gpr-btn--cilog:hover::before {
  top: 50%;
  height: 1px;
  opacity: 0;
  transition:
    height 0.2s ease,
    top 0.2s ease,
    opacity 0s linear 0.2s;
}

.gpr-btn--cilog:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px var(--cilog-focus);
}
.gpr-btn--destaque {
  display: inline-block;
  position: relative;
  padding: 13px 20px;
  background: #fff;
  color: #fff;
  border: 0;
  cursor: pointer;
  user-select: none;
  text-decoration: none;

  font: 12px/1.2 var(--gpr-fonte-destaque);
  font-weight: 900;
  letter-spacing: 0.38em;
  text-indent: 2px;
  text-transform: uppercase;

  overflow: hidden;
  border-radius: 2px;

  transition:
    color 0.18s ease,
    background-color 0.18s ease;
}

.gpr-btn--destaque::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gpr-destaque);
  z-index: 1;
  opacity: 1;
  border-radius: 2px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.gpr-btn--destaque::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gpr-destaque);
  border-radius: 2px;
  z-index: 2;
  transition: border-color 0.18s ease;
}

.gpr-btn--destaque > span {
  position: relative;
  z-index: 3;
}

.gpr-btn--destaque:hover {
  background: #fff;
  color: var(--gpr-destaque);
}

.gpr-btn--destaque:hover::before {
  opacity: 0;
  transform: scaleY(0.08);
}

.gpr-btn--destaque:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gpr-destaque) 22%, transparent);
}

.gpr-btn-branco {
  display: inline-block;
  position: relative;
  padding: 13px 20px;
  background: var(--gpr-azul);
  color: var(--gpr-azul);
  border: 0;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  font: 12px/1.2 var(--gpr-fonte-destaque);
  letter-spacing: 0.38em;
  text-indent: 2px;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 2px;
  transition: color 0.1s linear 0.05s;
}

.gpr-btn-branco::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
  opacity: 1;
  border-radius: 2px;
  transition:
    height 0.2s ease,
    top 0.2s ease,
    opacity 0s linear 0s;
}

.gpr-btn-branco::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gpr-branco);
  border-radius: 2px;
  z-index: 2;
  transition: border 0.1s linear 0.05s;
}

.gpr-btn-branco > span {
  position: relative;
  z-index: 3;
}

.gpr-btn-branco:hover {
  color: #fff;
  transition: color 0.1s linear 0s;
}

.gpr-btn-branco:hover::before {
  top: 50%;
  height: 1px;
  opacity: 0;
  transition:
    height 0.2s ease,
    top 0.2s ease,
    opacity 0s linear 0.2s;
}

.gpr-btn-branco:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(25, 61, 120, 0.22);
}

.gpr-cabecalho {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 2000;
  pointer-events: none;
  --gpr-menu-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gpr-navbar {
  pointer-events: auto;
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 14px 0;
  background: transparent;
  transition: padding 0.34s var(--gpr-menu-ease);
}

.gpr-navbar::before,
.gpr-navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gpr-navbar::before {
  z-index: -1;
  background: var(--gpr-branco);
  box-shadow: var(--gpr-sombra-menu);
  transform: translate3d(0, -105%, 0);
  transform-origin: top center;
  will-change: transform;
}

.gpr-navbar::after {
  z-index: -2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.18) 56%,
    rgba(0, 0, 0, 0) 100%
  );
}

.gpr-cabecalho.is-menu-ready .gpr-navbar::before {
  transition: transform 0.48s var(--gpr-menu-ease);
}

.gpr-navbar .navbar-nav {
  gap: 0.28rem;
}

@media (max-width: 991.98px) {
  .gpr-cabecalho:not(.is-scrolled) .gpr-navbar:has(#gprNav.show)::after,
  .gpr-cabecalho:not(.is-scrolled) .gpr-navbar:has(#gprNav.collapsing)::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.48) 0%,
      rgba(0, 0, 0, 0.48) 65%,
      rgba(0, 0, 0, 0.48) 100%
    );
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
  }

  .gpr-navbar .navbar-nav {
    gap: 0.15rem;
  }
}

.gpr-cabecalho.is-scrolled .gpr-navbar {
  background: transparent;
  padding: 14px 0;
}

.gpr-cabecalho.is-scrolled .gpr-navbar::before {
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .gpr-navbar,
  .gpr-cabecalho.is-menu-ready .gpr-navbar::before,
  .gpr-logo,
  .gpr-nav-link,
  .gpr-nav-icone,
  .gpr-toggler .navbar-toggler-icon {
    transition: none !important;
  }
}

.gpr-navbar-container {
  padding-left: 6px;
  padding-right: 12px;
}

.gpr-brand {
  margin-left: 30px;
}

@media (max-width: 991.98px) {
  .gpr-brand {
    margin-left: 0;
  }
}

.gpr-logo {
  height: 60px;
  width: auto;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}

.gpr-cabecalho:not(.is-scrolled) .gpr-logo {
  filter: brightness(0) invert(1);
}

.gpr-cabecalho.is-scrolled .gpr-logo {
  filter: none;
}

.gpr-nav-link {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.6rem 1.05rem;
  border-radius: 3px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  color: rgba(255, 255, 255, 0.94);
}

.gpr-nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.gpr-cabecalho.is-scrolled .gpr-nav-link {
  color: rgba(17, 24, 39, 0.86);
}

.gpr-cabecalho.is-scrolled .gpr-nav-link:hover {
  background: rgba(25, 61, 120, 0.08);
  color: var(--gpr-azul);
}

.gpr-nav-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.95);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.gpr-nav-icone:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.gpr-cabecalho.is-scrolled .gpr-nav-icone {
  color: rgba(17, 24, 39, 0.78);
}

.gpr-cabecalho.is-scrolled .gpr-nav-icone:hover {
  background: rgba(25, 61, 120, 0.08);
  color: var(--gpr-azul);
}

.gpr-toggler .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.gpr-cabecalho.is-scrolled .gpr-toggler .navbar-toggler-icon {
  filter: none;
}

.gpr-cabecalho.gpr-cabecalho--solid .gpr-navbar,
.gpr-cabecalho.gpr-cabecalho--solid.is-scrolled .gpr-navbar {
  background: var(--gpr-azul);
  box-shadow: var(--gpr-sombra-menu);
  padding: 14px 0;
}

.gpr-cabecalho.gpr-cabecalho--solid .gpr-logo,
.gpr-cabecalho.gpr-cabecalho--solid.is-scrolled .gpr-logo {
  filter: brightness(0) invert(1);
}

.gpr-cabecalho.gpr-cabecalho--solid .gpr-nav-link,
.gpr-cabecalho.gpr-cabecalho--solid.is-scrolled .gpr-nav-link {
  color: rgba(255, 255, 255, 0.94);
}

.gpr-cabecalho.gpr-cabecalho--solid .gpr-nav-link:hover,
.gpr-cabecalho.gpr-cabecalho--solid.is-scrolled .gpr-nav-link:hover {
  background: rgba(255, 170, 0, 0.16);
  color: #fff;
}

.gpr-cabecalho.gpr-cabecalho--solid .gpr-nav-icone,
.gpr-cabecalho.gpr-cabecalho--solid.is-scrolled .gpr-nav-icone {
  color: rgba(255, 255, 255, 0.95);
}

.gpr-cabecalho.gpr-cabecalho--solid .gpr-nav-icone:hover,
.gpr-cabecalho.gpr-cabecalho--solid.is-scrolled .gpr-nav-icone:hover {
  background: rgba(255, 170, 0, 0.16);
  color: #fff;
}

.gpr-cabecalho.gpr-cabecalho--solid .gpr-toggler .navbar-toggler-icon,
.gpr-cabecalho.gpr-cabecalho--solid.is-scrolled
  .gpr-toggler
  .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.gpr-nav-dropdown {
  position: relative;
}

.gpr-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
}

.gpr-dropdown-toggle::after {
  margin-left: 0.5rem;
  vertical-align: middle;
  border-top: 0.28em solid currentColor;
  border-right: 0.28em solid transparent;
  border-left: 0.28em solid transparent;
  border-bottom: 0;
  transform-origin: center;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.gpr-nav-dropdown:hover .gpr-dropdown-toggle::after,
.gpr-nav-dropdown:focus-within .gpr-dropdown-toggle::after,
.gpr-nav-dropdown.show .gpr-dropdown-toggle::after,
.gpr-dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg) translateY(1px);
}

.gpr-dropdown-menu {
  min-width: 240px;
  padding: 0.45rem 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.gpr-dropdown-item {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.78rem 1rem;
  font-family: var(--gpr-fonte-destaque);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gpr-azul);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}

.gpr-dropdown-item:hover,
.gpr-dropdown-item:focus {
  background: rgba(25, 61, 120, 0.06);
  color: var(--gpr-azul);
  padding-left: 1.15rem;
}

@media (min-width: 992px) {
  .gpr-navbar .navbar-nav {
    gap: 0.42rem;
  }

  .gpr-nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 16px;
  }

  .gpr-nav-dropdown .gpr-dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition:
      opacity 0.18s ease,
      transform 0.18s ease,
      visibility 0.18s ease;
  }

  .gpr-nav-dropdown:hover .gpr-dropdown-menu,
  .gpr-nav-dropdown:focus-within .gpr-dropdown-menu,
  .gpr-nav-dropdown .gpr-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .gpr-nav-link {
    padding: 0.72rem 1rem;
  }

  .gpr-dropdown-toggle {
    justify-content: center;
  }

  .gpr-dropdown-menu {
    min-width: 100%;
    margin-top: 0.35rem;
    border: 0;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0.35rem 0 0;
  }

  .gpr-dropdown-item {
    justify-content: center;
    min-height: 42px;
    padding: 0.85rem 1rem;
    background: transparent;
  }

  .gpr-dropdown-item:hover,
  .gpr-dropdown-item:focus {
    padding-left: 1rem;
    background: rgba(25, 61, 120, 0.05);
  }
}

.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: var(--gpr-hero-altura);
  z-index: 1;
  background: var(--gpr-preto);
}

.slideshow .slideshow-inner {
  position: absolute;
  inset: 0;
}

.slideshow .slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}

.slideshow .slide .image-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
}

.slideshow .slide .image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
}

.slideshow .slide .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow .slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.slideshow .slide .caption {
  width: min(980px, calc(100vw - 40px));
  margin-left: clamp(20px, 6vw, 110px);
  margin-right: auto;
  padding: 0;
}

.slideshow .slide .title {
  margin: 0 0 14px;
  font-family: var(--gpr-fonte-destaque, inherit);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.slideshow .slide .text {
  margin: 0;
  max-width: 880px;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

:root {
  --gpr-slide-duration: 4000ms;
}

.slideshow .pagination {
  position: absolute;
  bottom: calc(var(--gpr-filtro-overlap) + var(--gpr-paginacao-gap));
  left: 0;
  width: 100%;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  pointer-events: auto;
}

.slideshow .pagination .item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 56px;
  height: 34px;
  cursor: pointer;
  text-indent: -999em;
  border-radius: 999px;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1),
    background 0.35s ease;
}

.slideshow .pagination .item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.slideshow .pagination .item::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.35s ease;
}

.slideshow .pagination .item::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
}

.slideshow .pagination .item.is-active {
  transform: translateY(-1px);
}

.slideshow .pagination .item.is-active::before {
  background: rgba(255, 255, 255, 0.7);
}

.slideshow .pagination .item.is-active::after {
  opacity: 1;
  animation: gprPagProgress var(--gpr-slide-duration) linear both;
}

@keyframes gprPagProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}

.slideshow .arrows .prev {
  left: 18px;
}
.slideshow .arrows .next {
  right: 18px;
}

.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}

.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next:hover .svg {
  left: 10px;
}

.gpr-action-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.gpr-action-btn--primary {
  background: var(--gpr-azul, #193d78);
  color: #fff;
  box-shadow: 0 22px 46px rgba(25, 61, 120, 0.28);
}

.gpr-action-btn--primary:hover {
  background: var(--gpr-azul-hover, #143260);
  color: #fff;
}

.gpr-action-btn--light {
  background: #fff;
  color: rgba(11, 18, 32, 0.88);
  border-color: rgba(255, 255, 255, 0.68);
}

.gpr-action-btn--light:hover {
  color: var(--gpr-azul, #193d78);
  background: #fff;
}

.gpr-action-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gpr-action-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.gpr-action-btn--cilog {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.28),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--cilog-teal, #0bc6c6) 0%,
      var(--cilog-green, #0bd88a) 100%
    );
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 22px 46px rgba(11, 198, 198, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.gpr-action-btn--cilog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.24) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.gpr-action-btn--cilog > span {
  position: relative;
  z-index: 2;
}

.gpr-action-btn--cilog:hover {
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.32),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--cilog-green, #0bd88a) 0%,
      var(--cilog-teal, #0bc6c6) 100%
    );
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 30px 64px rgba(11, 216, 138, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.gpr-action-btn--cilog:hover::before {
  transform: translateX(120%);
}

.gpr-action-btn--cilog:focus-visible {
  outline: 0;
  color: #fff;
  box-shadow:
    0 0 0 4px rgba(11, 198, 198, 0.24),
    0 30px 64px rgba(11, 216, 138, 0.28);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 3px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  margin-bottom: 10px;
}

.meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.meta-badge i {
  font-size: 1.05em;
  opacity: 0.95;
}

.gpr-secao {
  padding: 30px 0;
  background: var(--gpr-branco);
}

.gpr-secao--suave {
  background: var(--gpr-fundo);
}

.gpr-bloco-topo-linha {
  display: flex;
  justify-content: center;
}

.gpr-bloco-topo {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.gpr-section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gpr-texto-suave, #6b7280);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gpr-section-label::before,
.gpr-section-label::after {
  content: "";
  width: 34px;
  height: 2px;
  margin: 0 14px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--gpr-azul, #193d78),
    var(--gpr-dourado, #c9a24d)
  );
}

.gpr-titulo {
  position: relative;
  display: block;
  margin: 0;
  font-family: var(--gpr-fonte-destaque, inherit);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--gpr-titulo-cor, #111827);
  text-shadow: none;
}

.gpr-titulo::after {
  display: none;
}

.gpr-titulo--com-icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  max-width: 100%;
  white-space: nowrap;
}

.gpr-titulo--com-icone > span:last-child {
  min-width: 0;
}

.gpr-titulo-icone {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gpr-laranja, #ff9800);
  font-size: 24px;
  line-height: 1;
}

.gpr-titulo-icone i {
  color: currentColor;
}

.gpr-subtitulo {
  max-width: 620px;
  margin: 0;
  color: var(--gpr-texto-suave, #6b7280);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 400;
  line-height: 1.65;
}

.gpr-subtitulo strong {
  color: var(--gpr-texto-suave, #6b7280);
  font-weight: 800;
}

.gpr-subtitulo--duas-linhas {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gpr-subtitulo--duas-linhas span {
  display: block;
}

@media (min-width: 992px) {
  .gpr-subtitulo--duas-linhas span {
    white-space: nowrap;
  }
}

@media (max-width: 991.98px) {
  .gpr-subtitulo {
    max-width: 680px;
    margin: 0 auto;
  }

  .gpr-titulo {
    font-size: clamp(26px, 5.2vw, 38px);
    line-height: 1.08;
  }

  .gpr-titulo--com-icone {
    justify-content: center;
    gap: 10px;
  }

  .gpr-titulo-icone {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 21px;
  }
}

@media (max-width: 575.98px) {
  .gpr-bloco-topo-linha {
    justify-content: flex-start;
  }

  .gpr-section-label {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .gpr-section-label::before,
  .gpr-section-label::after {
    width: 22px;
    margin: 0 10px;
  }

  .gpr-titulo {
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .gpr-titulo--com-icone {
    gap: 8px;
    white-space: normal;
  }

  .gpr-titulo--com-icone > span:last-child {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .gpr-titulo-icone {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    font-size: 18px;
  }

  .gpr-subtitulo {
    font-size: 15px;
  }

  .gpr-subtitulo--duas-linhas {
    display: block;
  }

  .gpr-subtitulo--duas-linhas span {
    display: inline;
    white-space: normal;
  }
}

.gpr-card {
  background: var(--gpr-branco);
  border: 1px solid var(--gpr-borda);
  border-radius: var(--gpr-raio);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.gpr-faixa-filtro {
  position: relative;
  background: var(--gpr-branco);
}

.gpr-filtro-container {
  position: relative;
  z-index: 3;
  margin-top: calc(-1 * var(--gpr-filtro-overlap));
}

.gpr-filtro-card {
  background: var(--gpr-branco);
  border-radius: 5px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.gpr-filtro-kicker {
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.62);
}

.gpr-filtro-frase {
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(11, 18, 32, 0.92);
  line-height: 1.15;
  font-size: clamp(13px, 0.95vw, 15px);
}

.gpr-empreendimentos-topo {
  margin-top: 22px;
}

.gpr-bloco-topo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.gpr-bloco-topo-linha {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

@media (min-width: 992px) {
  .gpr-bloco-topo-linha {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.gpr-empre-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.gpr-empre-card {
  grid-column: span 12;
  position: relative;
  border-radius: 5px;
  overflow: visible;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.gpr-empre-card:hover,
.gpr-empre-card:focus-within {
  transform: scale(1.05);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.16);
  z-index: 3;
}

@media (min-width: 768px) {
  .gpr-empre-card {
    grid-column: span 6;
  }
}

@media (min-width: 992px) {
  .gpr-empre-card {
    grid-column: span 3;
  }
}

.gpr-empre-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}

.gpr-empre-foto {
  position: relative;
  height: 260px;
  background: #0b1220;
  overflow: hidden;
}

.gpr-empre-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.gpr-empre-card:hover .gpr-empre-foto img,
.gpr-empre-card:focus-within .gpr-empre-foto img {
  transform: scale(1.04);
}

.gpr-empre-foto::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.06) 0%,
    rgba(0, 0, 0, 0.34) 100%
  );
}

@keyframes gprEmpreIndustrialZoomSuave {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}

.gpr-empre-card--industrial-logistico .gpr-empre-foto img {
  animation: gprEmpreIndustrialZoomSuave 5s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}

.gpr-empre-tipo {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  max-width: calc(100% - 28px);
  padding: 8px 12px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
}

.gpr-empre-tipo--residencial {
  background: rgba(25, 61, 120, 0.78);
}

.gpr-empre-tipo--industrial-logistico {
  background: rgba(11, 18, 32, 0.78);
}

.gpr-empre-statusbar {
  position: relative;
  z-index: 3;
  margin: -20px auto 0;
  width: clamp(210px, 72%, 340px);
  padding: 12px 14px;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.gpr-empre-statusbar--emobras {
  background: #2196f3;
  color: #fff;
}

.gpr-empre-statusbar--lancamento {
  background: #ff9800;
  color: #fff;
}

.gpr-empre-statusbar--entregue {
  background: #4caf50;
  color: #fff;
}

.gpr-empre-conteudo {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 22px 20px;
}

.gpr-empre-conteudo-topo {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 14px;
}

.gpr-empre-destaque-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.gpr-empre-destaque-card i {
  font-size: 14px;
  color: var(--gpr-destaque);
}

.gpr-empre-local {
  font-size: 13px;
  font-weight: 500;
  color: rgba(17, 24, 39, 0.62);
  letter-spacing: 0.02em;
}

.gpr-empre-titulo {
  margin: 6px 0 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--gpr-preto);
  text-transform: uppercase;
  line-height: 1.2;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gpr-empre-divider {
  height: 1px;
  background: rgba(17, 24, 39, 0.14);
  margin: 10px 0 14px;
}

.gpr-empre-infos {
  display: grid;
  gap: 10px;
}

.gpr-empre-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(17, 24, 39, 0.7);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
}

.gpr-empre-info i {
  width: 26px;
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gpr-destaque);
  font-size: 18px;
}

@media (max-width: 576px) {
  .gpr-empre-grid {
    gap: 16px;
  }

  .gpr-empre-foto {
    height: 240px;
  }

  .gpr-empre-tipo {
    min-height: 32px;
    max-width: calc(100% - 20px);
    padding: 7px 10px;
    font-size: 11px;
  }

  .gpr-empre-conteudo {
    padding: 20px 18px 18px;
  }

  .gpr-empre-conteudo-topo {
    margin: 0 0 12px;
  }

  .gpr-empre-destaque-card {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .gpr-empre-titulo {
    font-size: 18px;
    min-height: auto;
  }

  .gpr-empre-statusbar {
    width: min(88%, 320px);
    font-size: 13px;
    padding: 11px 12px;
  }

  .gpr-empre-info {
    font-size: 13px;
  }

  .gpr-empre-info i {
    width: 24px;
    min-width: 24px;
    font-size: 16px;
  }
}

.gpr-cilog {
  --cilog-teal: #0bc6c6;
  --cilog-green: #0bd88a;
  --cilog-border: rgba(255, 255, 255, 0.14);
  --cilog-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
  padding: 0;
}

.gpr-cilog-card {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-image: url("/assets/img/Foto_Industrial.jpeg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border: 1px solid var(--cilog-border);
  box-shadow: var(--cilog-shadow);
  isolation: isolate;
  border-radius: 90px 0px 90px 0px;
}

.gpr-cilog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(25, 61, 120, 0.9) 0%,
      rgba(25, 61, 120, 0.82) 22%,
      rgba(25, 61, 120, 0.58) 46%,
      rgba(25, 61, 120, 0.28) 68%,
      rgba(25, 61, 120, 0.22) 100%
    ),
    radial-gradient(
      900px 260px at 12% 18%,
      rgba(11, 198, 198, 0.1),
      transparent 60%
    ),
    radial-gradient(
      700px 240px at 86% 82%,
      rgba(11, 216, 138, 0.08),
      transparent 60%
    );
}

.gpr-cilog-card > * {
  position: relative;
  z-index: 1;
}

.gpr-cilog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    900px 220px at 20% 20%,
    rgba(255, 255, 255, 0.1),
    transparent 55%
  );
  mix-blend-mode: screen;
  opacity: 0.55;
}

.gpr-cilog-inner {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 38px 22px;
}

.gpr-cilog-left {
  display: flex;
  flex-direction: column;
}

.gpr-cilog-kpis {
  position: relative;
  padding-left: 18px;
  display: grid;
  gap: 18px;
}

.gpr-cilog-kpis::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 10px;
  border-radius: 0;
  background: linear-gradient(
    180deg,
    var(--cilog-teal) 0%,
    var(--cilog-green) 45%,
    var(--gpr-azul) 100%
  );
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  opacity: 0.95;
}

.gpr-cilog-kpi {
  color: rgba(255, 255, 255, 0.92);
}

.gpr-cilog-kpi-kicker {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.92);
}

.gpr-cilog-kpi-kicker span {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.74);
}

.gpr-cilog-kpi-hero {
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.gpr-cilog-kpi-num {
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.gpr-cilog-kpi-unit {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: lowercase;
}

.gpr-cilog-kpi-title {
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.18;
  color: rgba(255, 255, 255, 0.92);
}

.gpr-cilog-kpi-strong {
  color: #ffffff;
}

.gpr-cilog-kpi-sub {
  margin-top: 4px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.gpr-cilog-kpi-muted {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
  text-transform: none;
  letter-spacing: 0.02em;
}

.gpr-cilog-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gpr-cilog-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.gpr-cilog-logo {
  width: min(360px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.22));
  margin-bottom: 6px;
}

.gpr-cilog-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 72ch;
  line-height: 1.6;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-word;
}

.gpr-cilog-text strong {
  color: #ffffff;
  font-weight: 900;
}

.gpr-cilog-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 5px;
}

.gpr-cilog-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 3px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
}

.gpr-cilog-pill i {
  font-size: 15px;
  color: var(--cilog-teal);
}

.gpr-cilog-btn {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.28s ease,
    filter 0.28s ease;
  will-change: transform;
}

.gpr-cilog-btn i {
  font-size: 14px;
  opacity: 0.95;
}

.gpr-cilog-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.26);
  filter: saturate(1.05);
  color: #fff;
}

.gpr-cilog-btn:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 4px rgba(11, 198, 198, 0.24),
    0 22px 44px rgba(0, 0, 0, 0.26);
}

.gpr-cilog-cta {
  font-weight: 900;
}

.gpr-cilog-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 20px;
}

@media (max-width: 575.98px) {
  .gpr-cilog-logo {
    width: min(300px, 100%);
  }
}

@media (min-width: 768px) {
  .gpr-cilog-card {
    min-height: 500px;
  }

  .gpr-cilog-inner {
    min-height: 500px;
    padding: 46px 28px;
  }
}

@media (min-width: 992px) {
  .gpr-cilog-card {
    min-height: 560px;
  }

  .gpr-cilog-inner {
    min-height: 560px;
    padding: 56px 40px;
  }
}

@media (min-width: 1200px) {
  .gpr-cilog-card {
    min-height: 600px;
  }

  .gpr-cilog-inner {
    min-height: 600px;
    padding: 64px 46px;
  }
}

@media (max-width: 991.98px) {
  .gpr-cilog-card {
    background-attachment: scroll;
    background-position: center top;
  }

  .gpr-cilog-left::before {
    content: none;
    display: none;
  }
}

@media (max-width: 767.98px) {
  .gpr-cilog-kpis {
    gap: 16px;
    padding-left: 16px;
  }

  .gpr-cilog-kpi-num {
    font-size: 38px;
  }

  .gpr-cilog-kpi-unit {
    font-size: 18px;
  }

  .gpr-cilog-right {
    gap: 14px;
  }

  .gpr-cilog-text {
    text-align: left;
  }
}

.gpr-qs-painel {
  border-radius: 3px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: var(--gpr-branco);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.gpr-qs-lado {
  padding: 34px;
}

.gpr-qs-title {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  padding-bottom: 10px;
  font-weight: 800;
  font-family: var(--gpr-fonte-destaque);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gpr-preto);
}

.gpr-qs-title::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 0;
  width: 72px;
  height: 7px;
  border-radius: 999px;
  background: var(--gpr-destaque);
}

.gpr-qs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.62);
}

.gpr-qs-headline {
  font-weight: 950;
  letter-spacing: 0.01em;
  color: var(--gpr-preto);
  line-height: 1.12;
  font-size: clamp(20px, 1.45vw, 24px);
}

.gpr-qs-text {
  color: rgba(17, 24, 39, 0.72);
  font-weight: 600;
  line-height: 1.65;
  margin-top: 10px;
}

.gpr-qs-lista {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.gpr-qs-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 850;
  color: rgba(17, 24, 39, 0.84);
}

.gpr-qs-item i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: rgba(25, 61, 120, 0.96);
  border: 1px solid rgba(25, 61, 120, 0.14);
}

.gpr-qs-metricas {
  margin-top: 3px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gpr-qs-metrica {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 3px;
  padding: 14px 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.gpr-qs-num {
  font-family: var(--gpr-fonte-destaque);
  letter-spacing: 0.1em;
  font-size: 22px;
  color: var(--gpr-preto);
  font-weight: 950;
}

.gpr-qs-leg {
  font-weight: 900;
  color: var(--gpr-texto-suave);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gpr-qs-right {
  height: 100%;
  padding: 34px;
  border-left: 1px solid rgba(17, 24, 39, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.gpr-qs-videoFrame {
  position: relative;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.gpr-qs-videoFrame--tall {
  aspect-ratio: 16 / 8.8;
}

.gpr-qs-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.gpr-qs-videoOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
  text-decoration: none;
  color: #fff;
}

.gpr-qs-videoMask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      520px 280px at 32% 52%,
      rgba(0, 0, 0, 0.38),
      transparent 62%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.42) 55%,
      rgba(0, 0, 0, 0.16) 100%
    );
  transition: opacity 0.2s ease;
}

.gpr-qs-videoCTA {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.gpr-qs-play {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.gpr-qs-play i {
  font-size: 25px;
  color: #fff;
}

.gpr-qs-videoText strong {
  display: block;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: #fff;
}

.gpr-qs-videoText small {
  display: block;
  margin-top: 2px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
}

.gpr-qs-videoOverlay:hover .gpr-qs-play {
  background: rgba(25, 61, 120, 0.98);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.06);
  box-shadow: 0 28px 80px rgba(25, 61, 120, 0.45);
}

.gpr-qs-videoOverlay:hover .gpr-qs-videoMask {
  opacity: 0.92;
}

.gpr-qs-videoBtn {
  padding: 30px 16px;
  border-radius: 3px;
  box-shadow: 0 16px 40px rgba(25, 61, 120, 0.18);
}

@media (max-width: 991.98px) {
  .gpr-qs-lado {
    padding: 24px;
  }
  .gpr-qs-right {
    padding: 18px;
    border-left: 0;
    border-top: 1px solid rgba(17, 24, 39, 0.1);
  }
  .gpr-qs-videoOverlay {
    padding: 18px;
  }
  .gpr-qs-play {
    width: 74px;
    height: 74px;
  }
  .gpr-qs-videoFrame--tall {
    aspect-ratio: 16 / 9;
  }
}

.gpr-blog-rail {
  display: grid;
  grid-template-columns: var(--gpr-blog-arrow-size) minmax(0, 1fr) var(
      --gpr-blog-arrow-size
    );
  gap: var(--gpr-blog-rail-gap);
  align-items: center;
}

.gpr-blog-viewport {
  overflow: hidden;
  padding: 2px 0;
  min-width: 0;
}

.gpr-blog-track {
  display: flex;
  gap: var(--gpr-blog-gap);
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 4px 14px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.gpr-blog-track::-webkit-scrollbar {
  display: none;
}

.gpr-blog-item {
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.gpr-blog-track .gpr-blog-item {
  flex: 0 0 auto;
  width: min(360px, 88vw);
  scroll-snap-align: start;
}

.blog-grid .gpr-blog-item {
  width: 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .gpr-blog-track .gpr-blog-item {
    width: 340px;
  }
}

@media (min-width: 992px) {
  .gpr-blog-track .gpr-blog-item {
    width: 360px;
  }
}

.gpr-blog-item .gpr-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 3px;
  overflow: hidden;
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.gpr-blog-item:hover .gpr-card,
.gpr-blog-item:focus-visible .gpr-card,
.gpr-blog-item:focus-within .gpr-card {
  transform: scale(1.05);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.16);
}

.gpr-blog-item:focus-visible {
  outline: 0;
  border-radius: 3px;
}

.gpr-blog-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  transform: scale(1.01);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.gpr-blog-item:hover .gpr-blog-thumb,
.gpr-blog-item:focus-visible .gpr-blog-thumb,
.gpr-blog-item:focus-within .gpr-blog-thumb {
  transform: scale(1.06);
}

.gpr-blog-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 22px 22px 18px;
}

.gpr-blog-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.gpr-blog-badge-read {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 3px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.12);
  color: rgba(11, 18, 32, 0.9);
}

.gpr-blog-badge-read i {
  color: var(--gpr-azul);
}

.gpr-blog-title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
  color: var(--gpr-preto);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.2em * 2);
}

.gpr-blog-excerpt {
  margin: 0;
  color: rgba(17, 24, 39, 0.62);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.5em * 2);
}

.gpr-blog-cta {
  margin-top: auto;
  padding-top: 16px;
}

.gpr-blog-cta .gpr-btn-outline {
  width: 100%;
  text-align: center;
  border-radius: 3px;
  padding: 16px 18px;
  font-weight: 600;
}

.gpr-blog-arrow {
  width: var(--gpr-blog-arrow-size);
  height: var(--gpr-blog-arrow-size);
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  color: var(--gpr-azul);
}

.gpr-blog-arrow .svg {
  width: var(--gpr-blog-arrow-icon-w);
  height: var(--gpr-blog-arrow-icon-h);
  display: block;
  transition: transform 0.2s ease;
  will-change: transform;
}

.gpr-blog-arrow svg {
  width: var(--gpr-blog-arrow-icon-w);
  height: var(--gpr-blog-arrow-icon-h);
  display: block;
}

.gpr-blog-arrow svg path {
  fill: currentColor;
}

.gpr-blog-arrow:hover {
  transform: scale(1.04);
}

.gpr-blog-arrow.prev:hover .svg {
  transform: translateX(-10px);
}

.gpr-blog-arrow.next:hover .svg {
  transform: translateX(10px);
}

.gpr-blog-arrow:focus-visible {
  outline: 2px solid rgba(25, 61, 120, 0.35);
  outline-offset: 6px;
}

.gpr-blog-arrow:disabled {
  cursor: not-allowed;
  color: rgba(17, 24, 39, 0.35);
  transform: none;
}

.gpr-blog-arrow:disabled .svg {
  transform: none;
}

@media (max-width: 575.98px) {
  :root {
    --gpr-blog-gap: 14px;
    --gpr-blog-arrow-size: 46px;
    --gpr-blog-arrow-icon-w: 16px;
    --gpr-blog-arrow-icon-h: 30px;
    --gpr-blog-rail-gap: 10px;
  }

  .gpr-blog-track .gpr-blog-item {
    width: 100%;
  }

  .gpr-blog-thumb {
    height: 180px;
  }

  .gpr-blog-body {
    padding: 18px 18px 16px;
  }

  .gpr-blog-title {
    font-size: 20px;
  }

  .gpr-blog-excerpt {
    font-size: 15px;
  }
}

.gpr-faq {
  --faq-bg: #f6f7fb;
  --faq-card: #ffffff;
  --faq-line: rgba(17, 24, 39, 0.08);
  --faq-line-soft: rgba(17, 24, 39, 0.06);
  --faq-text: #0f172a;
  --faq-text-soft: #5b6472;
  --faq-accent: var(--gpr-azul);
  --faq-accent-hover: var(--gpr-azul-hover);
  --faq-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
  padding: clamp(52px, 7vw, 88px) 0;
}

.gpr-faq__intro {
  position: sticky;
  top: 110px;
}

.gpr-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--faq-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gpr-faq__eyebrow-icon {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 61, 120, 0.1);
  color: var(--faq-accent);
  flex: 0 0 auto;
}

.gpr-faq__title {
  position: relative;
  display: block;
  margin: 0;
  font-family: var(--gpr-fonte-destaque, inherit);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--gpr-titulo-cor, #111827);
  text-shadow: none;
}

.gpr-faq__subtitle strong {
  color: var(--faq-text);
  font-weight: 800;
}

.gpr-faq__nav {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gpr-faq__nav .nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: rgba(15, 23, 42, 0.72);
  box-shadow: none;
  text-align: left;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.gpr-faq__nav .nav-link:hover {
  color: var(--faq-text);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 24, 39, 0.08);
  transform: translateX(2px);
}

.gpr-faq__nav .nav-link.active {
  color: var(--faq-accent);
  background: var(--faq-card);
  border-color: rgba(25, 61, 120, 0.12);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.06);
  position: relative;
}

.gpr-faq__nav .nav-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--faq-accent);
}

.gpr-faq__nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 61, 120, 0.08);
  color: currentColor;
  flex: 0 0 auto;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.gpr-faq__nav .nav-link.active .gpr-faq__nav-icon {
  background: var(--faq-accent);
  color: #ffffff;
}

.gpr-faq__nav-text {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.gpr-faq__content {
  min-height: 100%;
}

.gpr-faq__panel {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--faq-line);
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.98) 100%
  );
  box-shadow: var(--faq-shadow);
  position: relative;
  overflow: hidden;
}

.gpr-faq__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--faq-accent);
}

.gpr-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gpr-faq__item {
  border: 0;
  border-bottom: 1px solid var(--faq-line-soft);
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.gpr-faq__item:last-child {
  border-bottom: 0;
}

.gpr-faq__item .accordion-header {
  margin: 0;
}

.gpr-faq__item .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 72px 24px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--faq-text);
  box-shadow: none;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.gpr-faq__item .accordion-button::after {
  display: none;
}

.gpr-faq__item .accordion-button:not(.collapsed) {
  color: var(--faq-text);
  background: transparent;
}

.gpr-faq__question-text {
  display: block;
  max-width: calc(100% - 8px);
  font-size: clamp(1.03rem, 1.3vw, 1.24rem);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.gpr-faq__plus {
  position: absolute;
  top: 50%;
  right: 0;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border-radius: 3px;
  background: rgba(25, 61, 120, 0.1);
  border: 1px solid rgba(25, 61, 120, 0.12);
  flex: 0 0 auto;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.gpr-faq__plus::before,
.gpr-faq__plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  margin-left: -7px;
  margin-top: -1px;
  border-radius: 999px;
  background: var(--faq-accent);
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    background 0.22s ease;
}

.gpr-faq__plus::after {
  transform: rotate(90deg);
}

.gpr-faq__item .accordion-button:hover .gpr-faq__plus {
  background: rgba(25, 61, 120, 0.14);
  border-color: rgba(25, 61, 120, 0.18);
}

.gpr-faq__item .accordion-button:not(.collapsed) .gpr-faq__plus {
  background: var(--faq-accent);
  border-color: var(--faq-accent);
  box-shadow: 0 12px 20px rgba(25, 61, 120, 0.18);
}

.gpr-faq__item .accordion-button:not(.collapsed) .gpr-faq__plus::before,
.gpr-faq__item .accordion-button:not(.collapsed) .gpr-faq__plus::after {
  background: #ffffff;
}

.gpr-faq__item .accordion-button:not(.collapsed) .gpr-faq__plus::after {
  transform: rotate(90deg) scaleX(0);
  opacity: 0;
}

.gpr-faq__item .accordion-body {
  padding: 0 76px 24px 0;
  color: var(--faq-text-soft);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.82;
}

.gpr-faq__item .accordion-body strong {
  color: var(--faq-text);
  font-weight: 800;
}

.gpr-faq__cta {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(25, 61, 120, 0.12);
  border-radius: 3px;
  background:
    radial-gradient(
      420px 140px at 10% 10%,
      rgba(25, 61, 120, 0.08),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(246, 248, 252, 1) 100%
    );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.gpr-faq__cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gpr-faq__cta-text strong {
  color: var(--faq-text);
  font-size: 1rem;
  font-weight: 800;
}

.gpr-faq__cta-text span {
  color: var(--faq-text-soft);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.6;
}

.gpr-faq__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(25, 61, 120, 0.2);
  border-radius: 3px;
  background: var(--faq-accent);
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.gpr-faq__cta-btn:hover {
  background: var(--faq-accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(25, 61, 120, 0.16);
}

.gpr-faq__cta-btn:focus-visible,
.gpr-faq__nav .nav-link:focus-visible,
.gpr-faq__item .accordion-button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(25, 61, 120, 0.14);
}

@media (max-width: 1199.98px) {
  .gpr-faq__intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 991.98px) {
  .gpr-faq {
    padding: 56px 0;
  }

  .gpr-faq__intro {
    margin-bottom: 10px;
  }

  .gpr-faq__nav {
    margin-top: 24px;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 10px;
    scrollbar-width: thin;
  }

  .gpr-faq__nav .nav-link {
    min-width: max-content;
    border-radius: 3px;
    padding: 12px 14px;
  }

  .gpr-faq__nav .nav-link.active::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 3px;
  }

  .gpr-faq__nav-icon {
    width: 34px;
    height: 34px;
  }

  .gpr-faq__panel {
    border-radius: 3px;
  }
}

@media (max-width: 767.98px) {
  .gpr-faq__title {
    margin-bottom: 14px;
  }

  .gpr-faq__subtitle {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .gpr-faq__panel {
    padding: 18px 16px;
  }

  .gpr-faq__item .accordion-button {
    padding: 18px 54px 18px 0;
    gap: 16px;
  }

  .gpr-faq__question-text {
    font-size: 1rem;
    line-height: 1.48;
  }

  .gpr-faq__plus {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }

  .gpr-faq__plus::before,
  .gpr-faq__plus::after {
    width: 12px;
    margin-left: -6px;
  }

  .gpr-faq__item .accordion-body {
    padding: 0 0 18px;
    font-size: 0.94rem;
    line-height: 1.76;
  }

  .gpr-faq__cta {
    padding: 16px;
  }

  .gpr-faq__cta-btn {
    width: 100%;
  }
}

.gpr-newsletter {
  padding: 0;
  background: transparent;
}

.gpr-newsletter-card {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;

  background: var(--gpr-azul);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--cilog-shadow);
}

.gpr-newsletter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      900px 260px at 12% 18%,
      rgba(11, 198, 198, 0.22),
      transparent 60%
    ),
    radial-gradient(
      700px 240px at 86% 82%,
      rgba(11, 216, 138, 0.18),
      transparent 60%
    );
}

.gpr-newsletter-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    900px 220px at 20% 20%,
    rgba(255, 255, 255, 0.1),
    transparent 55%
  );
  mix-blend-mode: screen;
  opacity: 0.55;
}

.gpr-newsletter-inner {
  position: relative;
  z-index: 1;
  padding: 26px 18px;
}

@media (min-width: 992px) {
  .gpr-newsletter-inner {
    padding: 40px 34px;
  }
}

.gpr-newsletter-left {
  position: relative;
  padding-left: 18px;
}

.gpr-newsletter-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 10px;
  background: linear-gradient(
    180deg,
    var(--gpr-destaque) 0%,
    color-mix(in srgb, var(--gpr-destaque) 75%, transparent) 45%,
    transparent 100%
  );

  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  opacity: 0.95;
}

@media (max-width: 991.98px) {
  .gpr-newsletter-left {
    padding-left: 0;
    text-align: center;
  }
  .gpr-newsletter-left::before {
    display: none;
  }
}

.gpr-newsletter-kicker {
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}

.gpr-newsletter-title {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.15;
  font-size: clamp(22px, 2.2vw, 34px);
}

.gpr-newsletter-icon {
  color: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

.gpr-newsletter-text {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  line-height: 1.6;
  max-width: 70ch;
}

@media (max-width: 991.98px) {
  .gpr-newsletter-text {
    margin-left: auto;
    margin-right: auto;
  }
}

.gpr-newsletter-text strong {
  color: #fff;
  font-weight: 900;
}

.gpr-newsletter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

@media (max-width: 991.98px) {
  .gpr-newsletter-pills {
    justify-content: center;
  }
}

.gpr-newsletter-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 3px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
}

.gpr-newsletter-pill i {
  font-size: 15px;
  color: var(--gpr-fundo);
}

.gpr-newsletter-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 991.98px) {
  .gpr-newsletter-right {
    align-items: center;
  }
}

.gpr-newsletter-form {
  width: 100%;
}

.gpr-newsletter-label {
  display: block;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}

.gpr-newsletter-inputgroup {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.gpr-newsletter-inputgroup:focus-within {
  background: rgba(255, 255, 255, 0.14);
  border-color: color-mix(
    in srgb,
    var(--gpr-destaque) 55%,
    rgba(255, 255, 255, 0.22)
  );
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.22),
    0 0 0 3px color-mix(in srgb, var(--gpr-destaque) 28%, transparent);
}

.gpr-newsletter-addon {
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  color: rgba(255, 255, 255, 0.92);
  padding: 0 14px;
  height: 54px;
  display: inline-flex;
  align-items: center;
}

.gpr-newsletter-input.form-control {
  height: 54px;
  padding: 0 14px;
  border: 0;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff;
  font-weight: 750;
  caret-color: #fff;
  box-shadow: none !important;
  transition:
    background-color 0.22s ease,
    color 0.22s ease;
}

.gpr-newsletter-input.form-control::placeholder {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.gpr-newsletter-input.form-control:hover,
.gpr-newsletter-input.form-control:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff;
  box-shadow: none !important;
  outline: none;
}

.gpr-newsletter-input:-webkit-autofill,
.gpr-newsletter-input:-webkit-autofill:hover,
.gpr-newsletter-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.12) inset;
  transition: background-color 9999s ease-out 0s;
}

.gpr-newsletter-hint {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

@media (max-width: 991.98px) {
  .gpr-newsletter-hint {
    text-align: center;
  }
}

.gpr-newsletter-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  width: fit-content;
}

.gpr-newsletter-trust i {
  color: var(--gpr-fundo);
}

.gpr-contato {
  position: relative;
  background: var(--gpr-branco);
  padding: 72px 0;
}

.gpr-contato .gpr-titulo {
  position: relative;
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 8px;
  padding-bottom: 10px;
}

.gpr-contato .gpr-titulo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--gpr-destaque);
}
.gpr-contato .gpr-subtitulo {
  margin: 0 0 22px;
  color: var(--gpr-texto-suave);
  font-weight: 500;
  max-width: 72ch;
}

.gpr-contato-card {
  border-radius: 3px;
  border: 1px solid var(--gpr-borda);
  background: var(--gpr-branco);
  box-shadow: var(--gpr-sombra-suave);
}

.gpr-contato-card--info {
  position: relative;
}

.gpr-contato-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gpr-texto-suave);
  font-weight: 700;
  margin: 0 0 10px;
}

.gpr-contato-title {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--gpr-texto);
}

.gpr-contato-desc {
  margin: 0 0 18px;
  color: var(--gpr-texto-suave);
  font-weight: 500;
  line-height: 1.6;
}

.gpr-contato-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 3px;
  border: 1px solid var(--gpr-borda);
  background: rgba(244, 246, 249, 0.65);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}

.gpr-contato-item + .gpr-contato-item {
  margin-top: 12px;
}

.gpr-contato-item:hover {
  background: rgba(244, 246, 249, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(25, 61, 120, 0.18);
}

.gpr-contato-ico {
  width: 44px;
  height: 44px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 61, 120, 0.1);
  color: var(--gpr-azul);
  flex: 0 0 auto;
}

.gpr-contato-item small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gpr-texto-suave);
  font-weight: 700;
  margin-bottom: 2px;
}

.gpr-contato-item strong {
  display: block;
  font-weight: 650;
  color: var(--gpr-texto);
  line-height: 1.25;
}

.gpr-contato-arrow {
  margin-left: auto;
  color: rgba(25, 61, 120, 0.65);
  transition:
    transform 0.15s ease,
    color 0.15s ease;
}

.gpr-contato-item:hover .gpr-contato-arrow {
  transform: translateX(3px);
  color: var(--gpr-azul);
}

a.gpr-contato-item {
  text-decoration: none;
  color: var(--gpr-texto);
}

a.gpr-contato-item:visited {
  color: var(--gpr-texto);
}

a.gpr-contato-item:hover {
  color: var(--gpr-texto);
}

a.gpr-contato-item:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(25, 61, 120, 0.12);
  border-radius: 3px;
}

.gpr-contato-trust {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 3px;
  border: 1px solid var(--gpr-borda);
  background: rgba(244, 246, 249, 0.75);
  color: var(--gpr-texto);
  font-weight: 600;
}

.gpr-contato-trust i {
  color: var(--gpr-azul);
}

.gpr-contato-formhead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.gpr-contato-formhead small {
  color: var(--gpr-texto-suave);
  font-weight: 600;
}

.gpr-contato .form-label {
  font-weight: 650;
  color: var(--gpr-texto);
  margin-bottom: 6px;
}

.gpr-contato .form-control,
.gpr-contato .form-select {
  border-radius: 3px;
  border: 1px solid var(--gpr-borda);
  background: #fff;
  color: var(--gpr-texto);
  box-shadow: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.gpr-contato .form-control::placeholder {
  color: rgba(17, 24, 39, 0.45);
  font-weight: 600;
}

.gpr-contato .form-control:focus,
.gpr-contato .form-select:focus {
  border-color: rgba(25, 61, 120, 0.45);
  box-shadow: 0 0 0 4px rgba(25, 61, 120, 0.1);
  background: #fff;
}

.gpr-contato .form-control-lg,
.gpr-contato .form-select-lg {
  min-height: 50px;
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
}

.gpr-contato textarea.form-control-lg {
  min-height: 150px;
}

.gpr-contato-send {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 3px;
  padding: 14px 16px;
  font: 12px/1.2 var(--gpr-fonte-destaque);
  font-weight: 600;
  letter-spacing: 0.38em;
  text-indent: 2px;
  text-transform: uppercase;
}
.gpr-contato-send i {
  font-size: 14px;
}

.gpr-contato-hint {
  margin-top: 10px;
  color: var(--gpr-texto-suave);
  font-weight: 500;
  line-height: 1.45;
}

.gpr-contato-mapwrap {
  margin-top: 16px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--gpr-borda);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.gpr-contato-mapbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--gpr-borda);
  background: rgba(244, 246, 249, 0.75);
}

.gpr-contato-mapbar span {
  font-weight: 700;
  color: var(--gpr-texto);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

.gpr-contato-mapbar a {
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gpr-azul);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gpr-contato-mapbar a:hover {
  text-decoration: underline;
}

.gpr-contato-map {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
  background: #fff;
}

@media (min-width: 992px) {
  .gpr-contato-map {
    height: 300px;
  }
}

@media (max-width: 991.98px) {
  .gpr-contato {
    padding: 64px 0;
  }
  .gpr-contato .gpr-titulo,
  .gpr-contato .gpr-subtitulo {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .gpr-contato-formhead {
    flex-direction: column;
    align-items: flex-start;
  }
}

.gpr-rodape {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #001328 0%, #001328 58%, #021b37 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 28px 0 18px;
}

.gpr-rodape::before,
.gpr-rodape::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.gpr-rodape::before {
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(25, 61, 120, 0.24) 0%,
    rgba(25, 61, 120, 0) 72%
  );
}

.gpr-rodape::after {
  left: -90px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 170, 0, 0.08) 0%,
    rgba(255, 170, 0, 0) 72%
  );
}

.gpr-rodape .container {
  position: relative;
  z-index: 1;
}

.gpr-rodape-container {
  padding-top: 0;
  padding-bottom: 0;
}

.gpr-rodape a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition:
    color 0.18s ease,
    opacity 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.gpr-rodape a:hover {
  color: #fff;
}

.gpr-rodape-logo {
  width: 168px;
  max-width: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.94;
  margin-left: auto;
  margin-right: auto;
}

.gpr-rodape-topo-link {
  padding: 12px 18px;
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.gpr-rodape-topo-link i {
  font-size: 0.95rem;
  transition: transform 0.18s ease;
}

.gpr-rodape-topo-link:hover {
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.gpr-rodape-titulo {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  font-family: var(--gpr-fonte-destaque);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}

.gpr-rodape-titulo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  background: var(--gpr-destaque);
  border-radius: 999px;
}

.gpr-rodape-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}

.gpr-rodape-lista li {
  display: flex;
  align-items: flex-start;
  line-height: 1.55;
}

.gpr-rodape-lista--redes a {
  display: inline-flex;
  align-items: center;
}

.gpr-rodape-lista--redes a:hover {
  transform: translateX(4px);
}

.gpr-rodape-local-card {
  height: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.gpr-rodape-local-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
}

@media (min-width: 992px) {
  .gpr-rodape-logo {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 991.98px) {
  .gpr-rodape {
    padding: 22px 0 16px;
  }

  .gpr-rodape-logo {
    width: 154px;
  }

  .gpr-rodape-topo-link {
    padding: 11px 16px;
  }
}

@media (max-width: 992px) {
  .gpr-logo {
    height: 48px;
  }

  .slideshow {
    height: clamp(520px, 74vh, 720px);
  }

  .slideshow .slide .title {
    font-size: 36px;
    letter-spacing: 0.12em;
  }

  .slideshow .slide .caption {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .gpr-filtro-grid {
    grid-template-columns: 1fr;
  }
  .gpr-empre-destaque {
    grid-column: span 12;
  }
  .gpr-empre-card {
    grid-column: span 12;
  }

  .gpr-qs-metricas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .slideshow .arrows .arrow {
    padding: 14px;
  }
  .slideshow .pagination {
    bottom: 18px;
  }
}
@media (max-width: 992px) {
  :root {
    --gpr-filtro-overlap: 28px;
  }
}

@media (max-width: 576px) {
  :root {
    --gpr-filtro-overlap: 20px;
    --gpr-paginacao-gap: 16px;
  }
}
.slideshow .slide--center .slide-content {
  justify-content: center;
  text-align: center;
}

.slideshow .slide--center .caption {
  margin-left: auto;
  margin-right: auto;
}

.gpr-hero-center {
  width: min(1100px, 92vw);
  padding: 0 12px;
  padding-top: clamp(72px, 10vh, 120px);
  padding-bottom: clamp(26px, 5vh, 56px);
}

.gpr-hero-title {
  font-size: clamp(12px, 1.6vw, 18px);
  line-height: 1.1;
  letter-spacing: 0.07em;
  margin: 0 0 10px;
  text-wrap: balance;
}

.gpr-hero-light {
  font-size: 0.76em;
  font-weight: 400;
  letter-spacing: 0.012em;
}

.gpr-hero-strong {
  font-size: 0.78em;
  font-weight: 750;
  letter-spacing: 0.012em;
}

.gpr-hero-kpis {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gpr-hero-kpi {
  padding: 12px 12px;
}

.gpr-hero-kpi-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.92;
}

.gpr-hero-kpi-value {
  margin-top: 6px;
  font-size: clamp(20px, 2.4vw, 36px);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.06;
  text-transform: uppercase;
}

.gpr-hero-kpi-value--sm {
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.05em;
  line-height: 1.18;
}

.gpr-hero-kpi-sub {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.86;
}

.gpr-hero-ctas {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.slideshow .arrows {
  z-index: 999;
  pointer-events: none;
}
.slideshow .arrows .arrow {
  z-index: 1000;
  pointer-events: auto;
}

@media (max-width: 992px) {
  .gpr-hero-center {
    padding-top: clamp(78px, 12vh, 130px);
    padding-bottom: 26px;
  }

  .gpr-hero-title {
    font-size: clamp(12px, 4.2vw, 20px);
    letter-spacing: 0.06em;
    margin-bottom: 8px;
  }

  .gpr-hero-kpis {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .gpr-hero-kpi {
    padding: 11px 12px;
  }

  .gpr-hero-kpi-label {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .gpr-hero-kpi-value {
    font-size: clamp(18px, 6.2vw, 28px);
    margin-top: 6px;
  }

  .gpr-hero-kpi-value--sm {
    font-size: clamp(13px, 4vw, 18px);
  }

  .gpr-hero-kpi-sub {
    font-size: 10.5px;
  }

  .gpr-hero-ctas {
    margin-top: 12px;
  }
}

@media (max-width: 576px) {
  .gpr-hero-center {
    padding-top: 92px;
    padding-bottom: 22px;
  }

  .gpr-hero-title {
    font-size: 13px;
    line-height: 1.12;
    letter-spacing: 0.05em;
  }

  .gpr-hero-kpis {
    gap: 9px;
  }

  .gpr-hero-kpi {
    padding: 10px 12px;
  }
}
.triangle {
  position: relative;
}

.triangle::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 24px 24px 24px;
  border-color: transparent transparent #001328 transparent;
  left: 50%;
  transform: translateX(-50%);
}
.gpr-emp-page {
  padding-top: calc(var(--gpr-menu-altura) + 14px);
}

.gpr-emp-subnav {
  position: sticky;
  top: var(--gpr-menu-altura);
  z-index: 1200;
  background: rgba(246, 247, 251, 0.92);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--gpr-borda);
}

.gpr-emp-subnav .gpr-emp-subnav-inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}
.gpr-emp-subnav .gpr-emp-subnav-inner::-webkit-scrollbar {
  display: none;
}

.gpr-emp-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(11, 18, 32, 0.86);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  white-space: nowrap;
}
.gpr-emp-pill:hover {
  background: rgba(25, 61, 120, 0.08);
  border-color: rgba(25, 61, 120, 0.22);
  color: var(--gpr-azul);
}

.gpr-emp-hero-tile {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  background: var(--gpr-preto);
  border: 1px solid rgba(17, 24, 39, 0.14);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  display: block;
}
.gpr-emp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  transform: scale(1.02);
}
.gpr-emp-hero-tile:hover .gpr-emp-hero-img {
  transform: scale(1.06);
}
.gpr-emp-hero-tile.is-fading .gpr-emp-hero-img {
  opacity: 0.12;
  transform: scale(1.01);
}
.gpr-emp-hero-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      520px 240px at 20% 25%,
      rgba(0, 0, 0, 0.18),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.gpr-emp-hero-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.gpr-emp-title {
  margin: 10px 0 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.15;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.gpr-emp-lead {
  border-radius: 5px;
  overflow: hidden;
}
.gpr-emp-lead.sticky-top {
  top: calc(var(--gpr-menu-altura) + 14px);
}

.gpr-emp-sec {
  scroll-margin-top: calc(var(--gpr-menu-altura) + 18px);
}

.gpr-emp-kicker {
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(17, 24, 39, 0.62);
}

.gpr-qs-hero-top {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100vw;
  max-width: none;
  height: 360px;
  min-height: 360px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--gpr-preto);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.gpr-qs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.gpr-qs-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.56);
}

.gpr-qs-hero-top .container {
  position: relative;
  z-index: 2;
  max-width: min(1280px, 96vw);
  padding-top: calc(var(--gpr-menu-altura) + 18px);
  padding-bottom: 28px;
  padding-left: clamp(14px, 2.2vw, 28px);
  padding-right: clamp(14px, 2.2vw, 28px);
}

.gpr-qs-hero-title {
  margin: 0;
  max-width: 1040px;
  font-family: var(--gpr-fonte-destaque);
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #fff;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.gpr-qs-hero-title strong {
  font-weight: 950;
  color: #fff;
}

.gpr-qs-hero-lead {
  max-width: 820px;
  margin-top: 12px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.6;
}

.gpr-qs-hero-lead strong {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1399.98px) {
  .gpr-qs-hero-top {
    height: 350px;
    min-height: 350px;
  }
}

@media (max-width: 1199.98px) {
  .gpr-qs-hero-top {
    height: 340px;
    min-height: 340px;
  }
}

@media (max-width: 991.98px) {
  .gpr-qs-hero-top {
    width: 100%;
    height: 330px;
    min-height: 330px;
    margin-left: 0;
    margin-right: 0;
    align-items: flex-start;
  }

  .gpr-qs-hero-top .container {
    padding-top: calc(var(--gpr-menu-altura) + 42px);
    padding-bottom: 22px;
  }

  .gpr-qs-hero-title {
    font-size: clamp(28px, 8.2vw, 42px);
  }

  .gpr-qs-hero-lead {
    font-size: 14px;
    line-height: 1.55;
  }
}

@media (max-width: 767.98px) {
  .gpr-qs-hero-top {
    height: 310px;
    min-height: 310px;
  }
}

@media (max-width: 575.98px) {
  .gpr-qs-hero-top {
    height: 290px;
    min-height: 290px;
  }

  .gpr-qs-hero-top .container {
    padding-top: calc(var(--gpr-menu-altura) + 34px);
    padding-bottom: 20px;
  }

  .gpr-qs-hero-title {
    font-size: clamp(27px, 8vw, 36px);
  }

  .gpr-qs-hero-lead {
    font-size: 13.5px;
  }
}

.gpr-qs-purpose {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  padding: clamp(26px, 3vw, 42px);
  background:
    linear-gradient(
      180deg,
      rgba(8, 27, 58, 0.88) 0%,
      rgba(9, 36, 79, 0.92) 100%
    ),
    url("/assets/img/Fundo_GPR.png") center center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.gpr-qs-purpose::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      800px 260px at 18% 18%,
      rgba(255, 170, 0, 0.07),
      transparent 60%
    ),
    radial-gradient(
      900px 360px at 86% 82%,
      rgba(255, 255, 255, 0.04),
      transparent 60%
    );
  pointer-events: none;
}

.gpr-qs-purpose > .row,
.gpr-qs-purpose > .container-fluid,
.gpr-qs-purpose .row {
  position: relative;
  z-index: 1;
}

.gpr-qs-purpose-kicker {
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 10px;
}

.gpr-qs-purpose-title {
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-family: var(--gpr-fonte-destaque);
  font-size: clamp(34px, 4vw, 64px);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.gpr-qs-purpose-intro {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 1.55vw, 28px);
  line-height: 1.5;
  font-weight: 500;
  max-width: 46ch;
}

.gpr-qs-purpose-col {
  padding: 8px 22px 8px 0;
}

.gpr-qs-purpose-ico {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--gpr-destaque);
  font-size: 38px;
  margin-bottom: 18px;
}

.gpr-qs-purpose-head {
  color: #fff;
  font-size: clamp(28px, 2vw, 42px);
  font-weight: 800;
  line-height: 1.1;
}

.gpr-qs-purpose-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.1vw, 22px);
  line-height: 1.65;
  font-weight: 500;
}

.gpr-qs-purpose-list {
  display: grid;
  gap: 10px;
}

.gpr-qs-purpose-list li {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.05vw, 21px);
  line-height: 1.55;
  font-weight: 500;
}

@media (min-width: 992px) {
  .gpr-qs-purpose .col-lg-4:not(:last-child) .gpr-qs-purpose-col {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 34px;
    margin-right: 10px;
  }
}

.gpr-qs-iconbox {
  width: 64px;
  height: 64px;
  border-radius: 3px;
  display: grid;
  place-items: center;
  background: rgba(25, 61, 120, 0.1);
  border: 1px solid rgba(25, 61, 120, 0.14);
  color: var(--gpr-azul);
}

.gpr-qs-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 3px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(244, 246, 249, 0.65);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(11, 18, 32, 0.86);
}

.gpr-qs-chip i {
  color: var(--gpr-azul);
}

.gpr-qs-progressCard {
  border-radius: 3px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(244, 246, 249, 0.65);
  padding: 14px;
}

.gpr-qs-progressLabel {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(17, 24, 39, 0.62);
}

.gpr-qs-progressTrack {
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.1);
  overflow: hidden;
}

.gpr-qs-progressFill {
  display: block;
  height: 100%;
  width: calc(var(--p) * 1%);
  background: var(--gpr-azul);
  transition: width 0.55s ease;
}

.gpr-qs-progressText {
  color: rgba(17, 24, 39, 0.7);
  font-weight: 650;
  line-height: 1.45;
  font-size: 12px;
}

.gpr-qs-playMini {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gpr-azul);
  color: #fff;
}

.gpr-qs-pillarCard {
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.gpr-qs-pillarCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gpr-azul);
  opacity: 0.95;
}

.gpr-qs-tabbtn.active,
.gpr-qs-tabbtn.show {
  background: rgba(255, 170, 0, 0.14);
  border-color: rgba(255, 170, 0, 0.28);
  color: var(--gpr-azul);
}

.gpr-qs-paneBox {
  border-radius: 3px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: var(--gpr-branco);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  padding: 22px;
}

.gpr-qs-artTile {
  border-radius: 3px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  background: rgba(244, 246, 249, 0.75);
}

.gpr-qs-artTile--azul {
  background: rgba(25, 61, 120, 0.1);
}

.gpr-qs-artValue {
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.92);
  font-size: 22px;
  line-height: 1.15;
}

.gpr-qs-ctaBox {
  border-radius: 3px;
  border: 1px solid rgba(25, 61, 120, 0.22);
  background: var(--gpr-azul);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  padding: 22px;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .gpr-qs-hero-title {
    letter-spacing: 0.1em;
  }

  .gpr-qs-hero-top .container {
    padding-top: calc(var(--gpr-menu-altura) + 18px);
    padding-bottom: 24px;
  }

  .gpr-qs-purpose-title {
    line-height: 1.04;
  }

  .gpr-qs-purpose-intro {
    max-width: none;
  }

  .gpr-qs-purpose-col {
    padding-right: 0;
  }

  .gpr-qs-purpose-ico {
    width: 56px;
    height: 56px;
    font-size: 32px;
    margin-bottom: 14px;
  }

  .gpr-qs-purpose-head {
    font-size: 24px;
  }

  .gpr-qs-purpose-text,
  .gpr-qs-purpose-list li {
    font-size: 16px;
  }
}

.gpr-contato-inst-icon {
  color: var(--gpr-azul);
}
.gpr-contato-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}

.gpr-contato-item-body strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.gpr-contato-mails {
  gap: 4px;
}

.gpr-contato-mail {
  display: block;
  min-width: 0;
  color: var(--gpr-texto);
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.gpr-contato-mail:hover {
  color: var(--gpr-azul);
  text-decoration: underline;
}

.cilog-page-hero .gpr-qs-hero-bg::after {
  background: rgba(0, 0, 0, 0.56);
}

.cilog-hero-metrics {
  display: grid;
  gap: 14px;
}

.cilog-hero-metric-kicker {
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
}

.cilog-hero-metric-value {
  margin-top: 8px;
  font-weight: 950;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.08;
  color: #fff;
}

.cilog-hero-metric-text {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  line-height: 1.5;
}

.cilog-highlight-card {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.cilog-highlight-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--cilog-teal) 0%,
    var(--cilog-green) 100%
  );
}

.cilog-highlight-icon {
  width: 64px;
  height: 64px;
  border-radius: 3px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(11, 198, 198, 0.12) 0%,
    rgba(11, 216, 138, 0.12) 100%
  );
  color: var(--cilog-navy);
  border: 1px solid rgba(11, 198, 198, 0.16);
}

.cilog-highlight-icon i {
  font-size: 24px;
}

.cilog-cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cilog-city-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 198, 198, 0.16);
  background: linear-gradient(
    135deg,
    rgba(11, 198, 198, 0.08) 0%,
    rgba(11, 216, 138, 0.08) 100%
  );
  color: rgba(11, 18, 32, 0.88);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.cilog-axis-card {
  border-radius: 3px;
  padding: 18px;
  background: var(--gpr-azul);
  color: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}

.cilog-axis-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      320px 120px at 12% 18%,
      rgba(11, 198, 198, 0.24),
      transparent 60%
    ),
    radial-gradient(
      360px 120px at 88% 82%,
      rgba(11, 216, 138, 0.18),
      transparent 60%
    );
  pointer-events: none;
}

.cilog-axis-card-kicker,
.cilog-axis-card-title,
.cilog-axis-card-text {
  position: relative;
  z-index: 1;
}

.cilog-axis-card-kicker {
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
}

.cilog-axis-card-title {
  margin-top: 8px;
  font-weight: 950;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.05;
}

.cilog-axis-card-text {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  line-height: 1.5;
}

.cilog-map-side {
  position: relative;
}

.cilog-map-art {
  position: relative;
  min-height: 220px;
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(25, 61, 120, 0.96) 0%,
    rgba(10, 35, 76, 0.98) 100%
  );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.cilog-map-art-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
}

.cilog-map-art-orb--a {
  width: 180px;
  height: 180px;
  left: -24px;
  top: -32px;
  background: rgba(11, 198, 198, 0.24);
}

.cilog-map-art-orb--b {
  width: 210px;
  height: 210px;
  right: -44px;
  bottom: -58px;
  background: rgba(11, 216, 138, 0.18);
}

.cilog-map-art-box {
  position: relative;
  z-index: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
}

.cilog-map-art-kicker {
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.74);
}

.cilog-map-art-title {
  margin-top: 8px;
  font-weight: 950;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.12;
  color: #fff;
}

.cilog-use-card {
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(244, 246, 249, 0.88) 100%
  );
}

.cilog-use-icon {
  width: 62px;
  height: 62px;
  border-radius: 3px;
  display: grid;
  place-items: center;
  background: rgba(25, 61, 120, 0.08);
  color: var(--cilog-navy);
  border: 1px solid rgba(11, 198, 198, 0.14);
}

.cilog-use-icon i {
  font-size: 24px;
}

.cilog-use-title {
  margin-bottom: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.9);
  font-size: 13px;
}

.cilog-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.cilog-step-card {
  border-radius: 3px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: linear-gradient(
    135deg,
    rgba(11, 198, 198, 0.08) 0%,
    rgba(11, 216, 138, 0.08) 100%
  );
  padding: 18px;
  min-height: 168px;
}

.cilog-step-num {
  font-weight: 950;
  font-size: 26px;
  line-height: 1;
  color: var(--cilog-navy);
  letter-spacing: 0.04em;
}

.cilog-step-title {
  margin-top: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.88);
  font-size: 12px;
}

.cilog-step-text {
  margin-top: 8px;
  color: rgba(11, 18, 32, 0.72);
  font-weight: 650;
  line-height: 1.55;
  font-size: 14px;
}

.cilog-cta-card::before {
  background:
    radial-gradient(
      900px 260px at 12% 18%,
      rgba(11, 198, 198, 0.28),
      transparent 60%
    ),
    radial-gradient(
      700px 240px at 86% 82%,
      rgba(11, 216, 138, 0.2),
      transparent 60%
    );
}

@media (max-width: 991.98px) {
  .cilog-steps-grid {
    grid-template-columns: 1fr;
  }

  .cilog-map-art,
  .cilog-map-art-box {
    min-height: 180px;
  }
}

.cilog-hero-logoWrap {
  width: 100%;
  max-width: 340px;
}

.cilog-hero-logo {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.26));
}

@media (max-width: 1199.98px) {
  .cilog-hero-logoWrap,
  .cilog-hero-logo {
    max-width: 620px;
  }
}

@media (max-width: 991.98px) {
  .cilog-hero-logoWrap,
  .cilog-hero-logo {
    max-width: 520px;
  }
}

@media (max-width: 575.98px) {
  .cilog-hero-logoWrap,
  .cilog-hero-logo {
    max-width: 300px;
  }
}

.gpr-floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.gpr-fab {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(
      120% 120% at 28% 18%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.04) 34%,
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(44, 86, 139, 0.98) 0%,
      rgba(25, 61, 120, 1) 100%
    );
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    0 8px 18px rgba(25, 61, 120, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    transform 0.22s ease;
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(8px) saturate(125%);
  -webkit-backdrop-filter: blur(8px) saturate(125%);
}

.gpr-fab::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  pointer-events: none;
}

.gpr-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.gpr-fab:hover {
  background:
    radial-gradient(
      120% 120% at 28% 18%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.05) 34%,
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(52, 97, 153, 0.98) 0%,
      rgba(30, 72, 136, 1) 100%
    );
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.28),
    0 10px 22px rgba(25, 61, 120, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  filter: saturate(1.03);
  transform: scale(1.08);
}

.gpr-fab:focus-visible {
  outline: 0;
  color: #fff;
  box-shadow:
    0 0 0 4px rgba(25, 61, 120, 0.18),
    0 22px 54px rgba(0, 0, 0, 0.28),
    0 10px 22px rgba(25, 61, 120, 0.22);
}

.gpr-fab i {
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
}

.gpr-fab--contato i {
  font-size: 17px;
}

.gpr-fab--top i {
  font-size: 15px;
}

.gpr-fab--top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gpr-floating-actions.is-visible .gpr-fab--top {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tooltip.gpr-tooltip {
  --bs-tooltip-bg: rgba(11, 18, 32, 0.96);
  --bs-tooltip-color: #fff;
}

.tooltip.gpr-tooltip .tooltip-inner {
  padding: 10px 12px;
  border-radius: 3px;
  letter-spacing: 0.01em;
  background: rgba(11, 18, 32, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  font-weight: 700;
}

.tooltip.gpr-tooltip .tooltip-arrow::before {
  opacity: 0.96;
}

@media (max-width: 420px) {
  .gpr-floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .gpr-fab {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .gpr-fab i {
    font-size: 19px;
  }

  .gpr-fab--contato i {
    font-size: 18px;
  }

  .gpr-fab--top i {
    font-size: 17px;
  }
}

.gpr-feedback-modal .modal-content {
  border-radius: 2px;
  overflow: hidden;
  border: 0;
}

.gpr-feedback-modal .modal-header {
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  padding: 1rem 1rem 0.75rem;
}

.gpr-feedback-modal .modal-body {
  padding: 1rem;
}

.gpr-feedback-modal__eyebrow {
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.72);
}

.gpr-feedback-modal__title {
  font-weight: 900;
  font-size: 16px;
  color: rgba(11, 18, 32, 0.92);
}

.gpr-feedback-modal__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gpr-feedback-modal__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
}

.gpr-feedback-modal__icon.is-success {
  background: rgba(25, 61, 120, 0.1);
  color: var(--gpr-azul);
}

.gpr-feedback-modal__icon.is-danger {
  background: rgba(150, 0, 0, 0.1);
  color: #960000;
}

.gpr-feedback-modal__icon i {
  font-size: 22px;
  line-height: 1;
}

.gpr-feedback-modal__msg {
  font-weight: 850;
  color: rgba(11, 18, 32, 0.82);
  line-height: 1.4;
}
.gpr-tl2-shell {
  position: relative;
  padding: 0 26px;
}

.gpr-tl2-shell::before,
.gpr-tl2-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  z-index: 4;
  pointer-events: none;
}

.gpr-tl2-shell::before {
  left: 26px;
  background: linear-gradient(
    90deg,
    rgba(246, 247, 251, 1) 0%,
    rgba(246, 247, 251, 0.72) 42%,
    rgba(246, 247, 251, 0) 100%
  );
}

.gpr-tl2-shell::after {
  right: 26px;
  background: linear-gradient(
    270deg,
    rgba(246, 247, 251, 1) 0%,
    rgba(246, 247, 251, 0.72) 42%,
    rgba(246, 247, 251, 0) 100%
  );
}

.gpr-tl2-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto;
}

.gpr-tl2-viewport::-webkit-scrollbar {
  display: none;
}

.gpr-tl2-track {
  display: flex;
  gap: 28px;
  width: max-content;
  min-width: 100%;
  padding: 8px 92px 18px;
}

.gpr-tl2-card {
  flex: 0 0 332px;
  width: 332px;
  padding: 18px 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 3px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.gpr-tl2-head {
  position: relative;
  height: 30px;
  margin-bottom: 14px;
}

.gpr-tl2-head::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 0;
  top: 14px;
  height: 1px;
  background: rgba(25, 61, 120, 0.22);
}

.gpr-tl2-head::after {
  content: "\f054";
  position: absolute;
  right: -2px;
  top: 6px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 9px;
  color: rgba(25, 61, 120, 0.42);
  line-height: 1;
}

.gpr-tl2-card:last-child .gpr-tl2-head::after {
  display: none;
}

.gpr-tl2-icon {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 61, 120, 0.06);
  border: 1px solid rgba(25, 61, 120, 0.11);
  color: var(--gpr-azul);
  box-shadow: 0 8px 18px rgba(25, 61, 120, 0.04);
}

.gpr-tl2-icon i {
  font-size: 10px;
}

.gpr-tl2-date {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.97);
  color: var(--gpr-azul);
  font-weight: 900;
  font-size: 0.92rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.gpr-tl2-title {
  margin: 14px 0 12px;
  color: var(--gpr-preto);
  font-size: 1.14rem;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.gpr-tl2-text {
  margin: 0;
  color: rgba(17, 24, 39, 0.68);
  font-size: 0.95rem;
  line-height: 1.72;
  font-weight: 500;
}

.gpr-tl2-card.is-highlight .gpr-tl2-date {
  color: #c58700;
  border-color: rgba(255, 170, 0, 0.28);
  background: rgba(255, 170, 0, 0.08);
}

.gpr-tl2-card.is-highlight .gpr-tl2-icon {
  color: #c58700;
  border-color: rgba(255, 170, 0, 0.22);
  background: rgba(255, 170, 0, 0.08);
}

.gpr-tl2-card.is-highlight .gpr-tl2-head::before {
  background: rgba(255, 170, 0, 0.24);
}

.gpr-tl2-card.is-highlight .gpr-tl2-head::after {
  color: rgba(255, 170, 0, 0.46);
}

.gpr-tl2-arrow {
  margin: -16px 0 0;
  padding: 8px 3px;
  position: absolute;
  top: 50%;
  z-index: 6;
  border: 0;
  background: transparent;
  color: var(--gpr-azul);
  cursor: pointer;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.gpr-tl2-arrow.prev {
  left: -2px;
}

.gpr-tl2-arrow.next {
  right: -2px;
}

.gpr-tl2-arrow .svg {
  position: relative;
  left: 0;
  width: 18px;
  height: 30px;
  display: block;
  transition: left 0.2s ease;
}

.gpr-tl2-arrow .svg svg {
  width: 18px;
  height: 30px;
  display: block;
  fill: currentColor;
}

.gpr-tl2-arrow.prev:hover .svg {
  left: -5px;
}

.gpr-tl2-arrow.next:hover .svg {
  left: 5px;
}

.gpr-tl2-arrow:hover {
  color: var(--gpr-azul-hover);
}

.gpr-tl2-arrow.is-muted {
  opacity: 0.2;
}

.gpr-tl2-arrow:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(25, 61, 120, 0.12);
}

@media (min-width: 768px) {
  .gpr-tl2-card {
    flex: 0 0 346px;
    width: 346px;
  }

  .gpr-tl2-title {
    font-size: 1.28rem;
  }
}

@media (min-width: 1200px) {
  .gpr-tl2-card {
    flex: 0 0 356px;
    width: 356px;
  }

  .gpr-tl2-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .gpr-tl2-shell {
    padding: 0 20px;
  }

  .gpr-tl2-shell::before,
  .gpr-tl2-shell::after {
    width: 8px;
  }

  .gpr-tl2-shell::before {
    left: 20px;
  }

  .gpr-tl2-shell::after {
    right: 20px;
  }

  .gpr-tl2-track {
    gap: 18px;
    padding: 8px 58px 14px;
  }

  .gpr-tl2-card {
    flex: 0 0 78vw;
    width: 78vw;
    padding: 16px 16px 18px;
  }

  .gpr-tl2-title {
    font-size: 1rem;
    line-height: 1.18;
  }

  .gpr-tl2-text {
    font-size: 0.9rem;
    line-height: 1.62;
    font-weight: 500;
  }

  .gpr-tl2-head::after {
    font-size: 8px;
    top: 7px;
  }

  .gpr-tl2-arrow {
    padding: 6px 2px;
  }

  .gpr-tl2-arrow .svg,
  .gpr-tl2-arrow .svg svg {
    width: 11px;
    height: 18px;
  }
}

:root {
  --gpr-select-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M2 2.25L6 6.25L10 2.25' stroke='%236b7280' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.72'/%3E%3C/svg%3E");
}

select.form-select,
select.gpr-filtro-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  background-image:
    var(--gpr-select-arrow), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position:
    right 18px center,
    0 0 !important;
  background-size:
    12px 8px,
    100% 100% !important;
}

select.form-select:hover,
select.gpr-filtro-select:hover,
select.form-select:focus,
select.gpr-filtro-select:focus {
  background-image:
    var(--gpr-select-arrow), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position:
    right 18px center,
    0 0 !important;
  background-size:
    12px 8px,
    100% 100% !important;
}
.gpr-cabecalho:not(.is-scrolled) .gpr-nav-link.gpr-dropdown-toggle,
.gpr-cabecalho:not(.is-scrolled) .gpr-nav-link.gpr-dropdown-toggle:focus,
.gpr-cabecalho:not(.is-scrolled) .gpr-nav-link.gpr-dropdown-toggle:active,
.gpr-cabecalho:not(.is-scrolled) .gpr-nav-link.gpr-dropdown-toggle.show,
.gpr-cabecalho:not(.is-scrolled)
  .gpr-nav-link.gpr-dropdown-toggle[aria-expanded="true"] {
  color: rgba(255, 255, 255, 0.94) !important;
}

.gpr-cabecalho:not(.is-scrolled) .gpr-nav-link.gpr-dropdown-toggle:hover {
  color: #fff !important;
}
@media (max-width: 991.98px) {
  .gpr-cabecalho:not(.is-scrolled) .gpr-dropdown-menu {
    background: transparent;
  }

  .gpr-cabecalho:not(.is-scrolled) .gpr-dropdown-item {
    color: rgba(255, 255, 255, 0.94) !important;
  }

  .gpr-cabecalho:not(.is-scrolled) .gpr-dropdown-item:hover,
  .gpr-cabecalho:not(.is-scrolled) .gpr-dropdown-item:focus {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12);
  }
}
@media (max-width: 991.98px) {
  .gpr-dropdown-item {
    font-size: 10px;
    letter-spacing: 0.12em;
    min-height: 34px;
    padding: 0.48rem 1rem;
    line-height: 1.2;
  }
}
@media (max-width: 991.98px) {
  .gpr-nav-dropdown .gpr-dropdown-menu {
    display: block;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    transform: translateY(-6px);
    transition:
      max-height 0.28s ease,
      opacity 0.22s ease,
      visibility 0.22s ease,
      padding 0.22s ease,
      margin 0.22s ease,
      transform 0.22s ease;
  }

  .gpr-nav-dropdown .gpr-dropdown-menu.show {
    max-height: 160px;
    opacity: 1;
    visibility: visible;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    margin-top: 0.25rem;
    transform: translateY(0);
  }

  .gpr-cabecalho:not(.is-scrolled) .gpr-dropdown-item {
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 12px;
    letter-spacing: 0.12em;
    min-height: 34px;
    padding: 0.48rem 1rem;
    line-height: 1.2;
  }

  .gpr-cabecalho:not(.is-scrolled) .gpr-dropdown-item:hover,
  .gpr-cabecalho:not(.is-scrolled) .gpr-dropdown-item:focus {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
  }
}

.cilog-map-card {
  overflow: hidden;
}

.cilog-map-link {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.cilog-map-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: #fff;
}

.cilog-map-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(30, 58, 95, 0.38);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cilog-map-figure img {
  display: block;
  width: 100%;
  border-radius: 3px;
  transition: transform 0.35s ease;
}

.cilog-map-hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #1e3a5f;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.cilog-map-hover-icon i {
  font-size: 1.35rem;
}

.cilog-map-link:hover .cilog-map-figure::before {
  opacity: 1;
}

.cilog-map-link:hover .cilog-map-figure img {
  transform: scale(1.025);
}

.cilog-map-link:hover .cilog-map-hover-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (hover: none) {
  .cilog-map-figure::before {
    opacity: 0.18;
  }

  .cilog-map-hover-icon {
    width: 46px;
    height: 46px;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .cilog-map-hover-icon i {
    font-size: 1.1rem;
  }
}

.gpr-page-transition {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  background: #071426;
  transform: translate3d(100%, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  contain: paint;
}

.gpr-page-transition__surface,
.gpr-page-transition__content {
  position: absolute;
  inset: 0;
}

.gpr-page-transition__surface {
  z-index: 1;
  background:
    radial-gradient(
      900px 460px at 22% 22%,
      rgba(255, 170, 0, 0.16),
      transparent 58%
    ),
    radial-gradient(
      860px 420px at 82% 72%,
      rgba(44, 86, 139, 0.46),
      transparent 62%
    ),
    linear-gradient(135deg, #050b16 0%, #0b2148 40%, #193d78 100%);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.gpr-page-transition__surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08)),
    radial-gradient(
      1000px 520px at 50% 50%,
      transparent 0%,
      rgba(0, 0, 0, 0.24) 100%
    );
  box-shadow: inset 0 0 190px rgba(0, 0, 0, 0.5);
}

.gpr-page-transition__content {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;
  padding: 28px;
}

.gpr-page-transition__content::before {
  content: "";
  position: absolute;
  width: min(460px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 62%
  );
  filter: blur(2px);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.gpr-page-transition__logo {
  position: relative;
  z-index: 2;
  display: block;
  width: min(280px, 68vw);
  aspect-ratio: 1846 / 589;
  background: #ffffff;
  -webkit-mask: url("/assets/img/Logo_Porto_Real_Azul_Hor.png") center center /
    contain no-repeat;
  mask: url("/assets/img/Logo_Porto_Real_Azul_Hor.png") center center / contain
    no-repeat;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.gpr-page-transition__loader {
  position: relative;
  z-index: 2;
  display: block;
  width: min(190px, 48vw);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.gpr-page-transition__loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 48%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    #ffffff,
    rgba(255, 170, 0, 0.82)
  );
  animation: gprPageTransitionLoader 1.15s ease-in-out infinite;
}

html.gpr-page-transition-pending .gpr-page-transition,
.gpr-page-transition.is-holding,
.gpr-page-transition.is-entering,
.gpr-page-transition.is-revealing {
  visibility: visible;
  pointer-events: auto;
}

html.gpr-page-transition-pending .gpr-page-transition,
.gpr-page-transition.is-holding {
  transform: translate3d(0, 0, 0);
}

.gpr-page-transition.is-entering {
  animation: gprPageTransitionEnter 0.78s cubic-bezier(0.76, 0, 0.24, 1)
    forwards;
}

.gpr-page-transition.is-revealing {
  transform: translate3d(0, 0, 0);
  animation: gprPageTransitionReveal 0.78s cubic-bezier(0.76, 0, 0.24, 1)
    forwards;
}

.gpr-page-transition-lock {
  cursor: progress;
}

html.gpr-page-transition-pending
  body
  > *:not(.gpr-page-transition):not(#gprPageTransitionRoutes) {
  opacity: 0 !important;
}

html.gpr-page-transition-lock [data-aos] {
  transition-delay: 0s !important;
  transition-duration: 0s !important;
}

@keyframes gprPageTransitionEnter {
  from {
    transform: translate3d(100%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes gprPageTransitionReveal {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes gprPageTransitionLoader {
  0% {
    transform: translate3d(-120%, 0, 0);
  }

  100% {
    transform: translate3d(240%, 0, 0);
  }
}

@media (max-width: 575.98px) {
  .gpr-page-transition__content {
    gap: 22px;
  }

  .gpr-page-transition__logo {
    width: min(235px, 76vw);
  }

  .gpr-page-transition__loader {
    width: min(170px, 54vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gpr-page-transition {
    display: none !important;
  }

  html.gpr-page-transition-pending
    body
    > *:not(.gpr-page-transition):not(#gprPageTransitionRoutes) {
    opacity: 1 !important;
  }
}

.gpr-portfolio-btn {
  position: relative;
  min-width: 280px;
  letter-spacing: 0.08em;
  overflow: hidden;
  padding-right: 58px !important;
}

.gpr-portfolio-btn__icon {
  width: 42px;
  height: 42px;
}

.gpr-portfolio-btn__label {
  position: relative;
  z-index: 2;
}

.gpr-portfolio-btn__arrow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58px;
  background: #2c568b;
  color: #fff;
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  z-index: 1;
}

.gpr-portfolio-btn__arrow i {
  color: inherit;
  font-size: 0.95rem;
}

.gpr-portfolio-btn:hover .gpr-portfolio-btn__arrow,
.gpr-portfolio-btn:focus .gpr-portfolio-btn__arrow {
  background: var();
  color: #fff;
}
.gpr-qs-metrica:hover,
.gpr-qs-progressCard:hover,
.gpr-qs-paneBox:hover,
.gpr-qs-artTile:hover,
.gpr-qs-pillarCard:hover,
.gpr-qs-ctaBox:hover,
.cilog-highlight-card:hover,
.cilog-axis-card:hover,
.cilog-use-card:hover,
.cilog-step-card:hover,
.cilog-map-art:hover,
.gpr-contato-card:hover,
.gpr-contato-item:hover,
.gpr-faq__panel:hover,
.gpr-faq__cta:hover,
.gpr-tl2-card:hover {
  transform: none;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.gpr-newsletter--mapa {
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.gpr-newsletter-mapa-card {
  position: relative;
  width: 100%;
  min-height: clamp(430px, 45vw, 620px);
  margin-bottom: -1px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(25, 61, 120, 0.04) 40%,
      rgba(25, 61, 120, 0.28) 66%,
      rgba(25, 61, 120, 0.72) 100%
    ),
    url("/assets/img/mapa_atuacao.png") center center / cover no-repeat;
  box-shadow: var(--cilog-shadow);
  isolation: isolate;
}

.gpr-newsletter-mapa-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      760px 280px at 84% 42%,
      rgba(255, 170, 0, 0.08),
      transparent 64%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.04) 42%,
      rgba(0, 0, 0, 0.18) 100%
    );
}

.gpr-newsletter-mapa-figure {
  display: none;
}

.gpr-newsletter-mapa-figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.gpr-newsletter-mapa-inner {
  position: relative;
  z-index: 1;
}

.gpr-newsletter-mapa-inner > .row {
  min-height: clamp(430px, 45vw, 620px);
  padding-top: clamp(42px, 6vw, 82px);
  padding-bottom: clamp(42px, 6vw, 82px);
}

.gpr-newsletter-mapa-content {
  position: relative;
  width: 100%;
  padding-right: 24px;
  text-align: right;
}

.gpr-newsletter-mapa-content::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  bottom: 3px;
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--gpr-destaque) 0%,
    rgba(255, 170, 0, 0.72) 44%,
    rgba(255, 170, 0, 0) 100%
  );
  box-shadow: 0 14px 30px rgba(255, 170, 0, 0.18);
}

.gpr-newsletter-mapa-content .gpr-newsletter-kicker {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.gpr-newsletter-mapa-content .gpr-newsletter-title {
  color: #fff;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.12;
  letter-spacing: 0.03em;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.gpr-newsletter-mapa-content .gpr-newsletter-icon {
  color: #fff;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.gpr-newsletter-mapa-content .gpr-action-btn {
  width: 100%;
  min-height: 50px;
}

.gpr-newsletter-mapa-content .gpr-action-btn--ghost {
  background: rgba(8, 21, 44, 0.34);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  -webkit-backdrop-filter: blur(8px) saturate(130%);
  backdrop-filter: blur(8px) saturate(130%);
}

.gpr-newsletter-mapa-content .gpr-action-btn--ghost:hover {
  background: rgba(8, 21, 44, 0.48);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

@media (max-width: 991.98px) {
  .gpr-newsletter--mapa {
    background: transparent;
  }

  .gpr-newsletter-mapa-card {
    min-height: auto;
    overflow: hidden;
    background: var(--gpr-azul);
    box-shadow: none;
  }

  .gpr-newsletter-mapa-card::before {
    display: none;
  }

  .gpr-newsletter-mapa-figure {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    background: transparent;
  }

  .gpr-newsletter-mapa-figure img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .gpr-newsletter-mapa-inner {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    background:
      radial-gradient(
        680px 220px at 50% 0%,
        rgba(255, 170, 0, 0.1),
        transparent 60%
      ),
      var(--gpr-azul);
  }

  .gpr-newsletter-mapa-inner > .row {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 54px;
  }

  .gpr-newsletter-mapa-content {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 18px 0 34px;
    text-align: center;
  }

  .gpr-newsletter-mapa-content::after {
    display: block;
    left: 18px;
    right: auto;
    top: 2px;
    bottom: 2px;
    width: 6px;
  }

  .gpr-newsletter-mapa-content .gpr-newsletter-title {
    font-size: clamp(24px, 5.4vw, 34px);
  }

  .gpr-newsletter-mapa-content .gpr-action-btn--ghost {
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 575.98px) {
  .gpr-newsletter-mapa-inner > .row {
    padding-top: 22px;
    padding-bottom: 44px;
  }

  .gpr-newsletter-mapa-content {
    padding-left: 32px;
    padding-right: 18px;
  }

  .gpr-newsletter-mapa-content::after {
    left: 18px;
    width: 5px;
  }

  .gpr-newsletter-mapa-content .gpr-newsletter-kicker {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
  }

  .gpr-newsletter-mapa-content .gpr-newsletter-title {
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin-bottom: 18px !important;
  }

  .gpr-newsletter-mapa-content .gpr-action-btn {
    min-height: 48px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

.cilog-areas-showcase {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #001328;
}

.cilog-areas-showcase-card {
  position: relative;
  min-height: clamp(380px, 34vw, 520px);
  padding: clamp(34px, 4.4vw, 66px) 0 clamp(42px, 4.8vw, 72px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(780px 300px at 16% 22%, rgba(11, 198, 198, 0.25), transparent 62%),
    radial-gradient(820px 300px at 86% 76%, rgba(11, 216, 138, 0.18), transparent 64%),
    linear-gradient(115deg, #193d78 0%, #183b75 42%, #0f5571 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--cilog-shadow, 0 26px 70px rgba(0, 0, 0, 0.22));
}

.cilog-areas-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 19, 40, 0.08) 0%, rgba(0, 19, 40, 0) 48%, rgba(0, 19, 40, 0.16) 100%),
    radial-gradient(900px 220px at 24% 0%, rgba(255, 255, 255, 0.1), transparent 60%);
}

.cilog-areas-showcase-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  z-index: 3;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 28px 28px 28px;
  border-color: transparent transparent #001328 transparent;
}

.cilog-areas-showcase .container {
  position: relative;
  z-index: 2;
}

.cilog-areas-showcase-copy {
  position: relative;
  max-width: 680px;
  padding-left: 20px;
  color: #fff;
}

.cilog-areas-showcase-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, var(--gpr-destaque, #ffaa00) 0%, rgba(255, 170, 0, 0.78) 56%, rgba(255, 170, 0, 0.08) 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.cilog-areas-eyebrow {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.cilog-areas-title {
  display: block;
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-family: var(--gpr-fonte-destaque, inherit);
  font-size: clamp(30px, 3.15vw, 48px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0.015em;
  text-shadow: 0 20px 46px rgba(0, 0, 0, 0.26);
}

.cilog-areas-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.9em;
  line-height: 1;
  vertical-align: -0.04em;
}

.cilog-areas-text {
  margin: 14px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(15px, 1.12vw, 18px);
  line-height: 1.62;
}

.cilog-areas-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 620px);
  margin-top: 22px;
}

.cilog-areas-action {
  min-height: 52px;
  width: 100%;
  border-radius: 3px;
  letter-spacing: 0.16em;
  text-align: center;
}

.cilog-areas-action.gpr-action-btn--ghost {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.cilog-areas-action.gpr-action-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
}

.cilog-areas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cilog-areas-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cilog-areas-pill i {
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
}

.cilog-areas-slider-panel {
  position: relative;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}

.cilog-areas-slider,
.cilog-areas-slider-inner,
.cilog-areas-slider-item {
  min-height: clamp(280px, 30vw, 430px);
  height: clamp(280px, 30vw, 430px);
}

.cilog-areas-slider .carousel-item {
  transition: opacity 0.9s ease-in-out;
}

.cilog-areas-slide {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
  background: #0b1220;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}

.cilog-areas-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 5.2s ease, filter 0.35s ease;
}

.cilog-areas-slider-item.active .cilog-areas-slide img {
  transform: scale(1.07);
}

.cilog-areas-slide:hover img,
.cilog-areas-slide:focus-visible img {
  filter: saturate(1.08) contrast(1.02);
}

.cilog-areas-slide-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(560px 240px at 20% 22%, rgba(11, 198, 198, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(3, 12, 28, 0.1) 0%, rgba(3, 12, 28, 0.42) 46%, rgba(3, 12, 28, 0.82) 100%);
}

.cilog-areas-slide-content {
  position: absolute;
  left: clamp(18px, 2.3vw, 30px);
  right: clamp(18px, 2.3vw, 30px);
  bottom: clamp(18px, 2.3vw, 30px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.cilog-areas-slide-segment {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  min-height: 34px;
  padding: 9px 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cilog-areas-slide-title {
  display: block;
  max-width: 780px;
  color: #fff;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.cilog-areas-slide-location {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cilog-areas-slide-location i {
  color: var(--gpr-destaque, #ffaa00);
}

.cilog-areas-slide-description {
  display: -webkit-box;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cilog-areas-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cilog-areas-slide-link i {
  transition: transform 0.2s ease;
}

.cilog-areas-slide:hover .cilog-areas-slide-link i,
.cilog-areas-slide:focus-visible .cilog-areas-slide-link i {
  transform: translateX(4px);
}

.cilog-areas-indicators {
  right: 18px;
  bottom: 16px;
  left: auto;
  z-index: 4;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
}

.cilog-areas-indicators [data-bs-target] {
  width: 34px;
  height: 3px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  opacity: 1;
}

.cilog-areas-indicators .active {
  background: #fff;
}

.cilog-areas-control {
  top: 50%;
  bottom: auto;
  z-index: 4;
  width: 34px;
  height: 46px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cilog-areas-slider:hover .cilog-areas-control,
.cilog-areas-slider:focus-within .cilog-areas-control {
  opacity: 1;
}

.cilog-areas-control--prev {
  left: 14px;
}

.cilog-areas-control--next {
  right: 14px;
}

.cilog-areas-control span {
  width: 34px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #fff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
}

.cilog-areas-control i {
  font-size: 24px;
  line-height: 1;
}

.cilog-areas-control:hover {
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 1199.98px) {
  .cilog-areas-showcase-card {
    min-height: auto;
  }

  .cilog-areas-title {
    font-size: clamp(28px, 3vw, 40px);
  }
}

@media (max-width: 991.98px) {
  .cilog-areas-showcase-card {
    padding: 42px 0 56px;
  }

  .cilog-areas-showcase-copy {
    max-width: 760px;
  }

  .cilog-areas-slider,
  .cilog-areas-slider-inner,
  .cilog-areas-slider-item {
    min-height: clamp(300px, 58vw, 420px);
    height: clamp(300px, 58vw, 420px);
  }

  .cilog-areas-control {
    opacity: 1;
  }
}

@media (max-width: 767.98px) {
  .cilog-areas-actions {
    grid-template-columns: 1fr;
  }

  .cilog-areas-action {
    min-height: 50px;
  }

  .cilog-areas-pills {
    gap: 8px;
  }

  .cilog-areas-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .cilog-areas-slide-description {
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 575.98px) {
  .cilog-areas-showcase-card {
    padding: 34px 0 48px;
  }

  .cilog-areas-showcase-copy {
    padding-left: 16px;
  }

  .cilog-areas-showcase-copy::before {
    width: 6px;
  }

  .cilog-areas-eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .cilog-areas-title {
    font-size: clamp(25px, 8vw, 33px);
    line-height: 1.12;
  }

  .cilog-areas-title-icon {
    margin-right: 9px;
    font-size: 0.88em;
    vertical-align: -0.03em;
  }

  .cilog-areas-text {
    font-size: 14px;
    line-height: 1.58;
  }

  .cilog-areas-actions {
    margin-top: 18px;
  }

  .cilog-areas-slider-panel {
    padding: 7px;
    border-radius: 6px;
  }

  .cilog-areas-slider,
  .cilog-areas-slider-inner,
  .cilog-areas-slider-item {
    min-height: 330px;
    height: 330px;
  }

  .cilog-areas-slide-content {
    left: 16px;
    right: 16px;
    bottom: 18px;
    gap: 8px;
  }

  .cilog-areas-slide-segment {
    min-height: 32px;
    max-width: 100%;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .cilog-areas-slide-title {
    font-size: clamp(22px, 7vw, 30px);
  }

  .cilog-areas-slide-location,
  .cilog-areas-slide-description {
    font-size: 12px;
  }

  .cilog-areas-indicators {
    right: 14px;
    bottom: 12px;
  }

  .cilog-areas-indicators [data-bs-target] {
    width: 24px;
  }

  .cilog-areas-control {
    display: none;
  }
}
.gpr-qs-map-cta {
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #001328;
}

.gpr-qs-map-cta-card {
  position: relative;
  min-height: clamp(430px, 45vw, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(25, 61, 120, 0.04) 40%,
      rgba(25, 61, 120, 0.28) 66%,
      rgba(25, 61, 120, 0.72) 100%
    ),
    url("/assets/img/mapa_atuacao.png") center center / cover no-repeat;
  box-shadow: var(--cilog-shadow, 0 26px 70px rgba(0, 0, 0, 0.22));
}

.gpr-qs-map-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      760px 280px at 84% 42%,
      rgba(255, 170, 0, 0.08),
      transparent 64%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.04) 42%,
      rgba(0, 0, 0, 0.18) 100%
    );
}

.gpr-qs-map-cta-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  z-index: 3;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 28px 28px 28px;
  border-color: transparent transparent #001328 transparent;
}

.gpr-qs-map-cta-card .container {
  position: relative;
  z-index: 2;
}

.gpr-qs-map-cta-card .row {
  min-height: clamp(430px, 45vw, 620px);
  padding-top: clamp(42px, 6vw, 82px);
  padding-bottom: clamp(70px, 7vw, 96px);
}

.gpr-qs-map-cta-content {
  position: relative;
  width: 100%;
  padding-right: 24px;
  text-align: right;
}

.gpr-qs-map-cta-content::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  bottom: 3px;
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--gpr-destaque, #ffaa00) 0%,
    rgba(255, 170, 0, 0.72) 44%,
    rgba(255, 170, 0, 0) 100%
  );
  box-shadow: 0 14px 30px rgba(255, 170, 0, 0.18);
}

.gpr-qs-map-cta-kicker {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.gpr-qs-map-cta-title {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0.03em;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.gpr-qs-map-cta-icon {
  color: #fff;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.gpr-qs-map-cta-btn {
  width: 100%;
  min-height: 50px;
  background: rgba(8, 21, 44, 0.34);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  -webkit-backdrop-filter: blur(8px) saturate(130%);
  backdrop-filter: blur(8px) saturate(130%);
}

.gpr-qs-map-cta-btn:hover {
  background: rgba(8, 21, 44, 0.48);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

@media (max-width: 991.98px) {
  .gpr-qs-map-cta-card {
    min-height: auto;
    background:
      linear-gradient(
        180deg,
        rgba(25, 61, 120, 0.08) 0%,
        rgba(25, 61, 120, 0.2) 34%,
        rgba(25, 61, 120, 0.92) 72%,
        rgba(25, 61, 120, 1) 100%
      ),
      url("/assets/img/mapa_atuacao.png") center top / 100% auto no-repeat,
      var(--gpr-azul, #193d78);
  }

  .gpr-qs-map-cta-card .row {
    min-height: 520px;
    align-items: flex-end;
    padding-top: 260px;
    padding-bottom: 58px;
  }

  .gpr-qs-map-cta-content {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 18px 0 34px;
    text-align: center;
  }

  .gpr-qs-map-cta-content::after {
    left: 18px;
    right: auto;
    top: 2px;
    bottom: 2px;
    width: 6px;
  }

  .gpr-qs-map-cta-title {
    font-size: clamp(24px, 5.4vw, 34px);
  }

  .gpr-qs-map-cta-btn {
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 575.98px) {
  .gpr-qs-map-cta-card .row {
    min-height: 500px;
    padding-top: 230px;
    padding-bottom: 50px;
  }

  .gpr-qs-map-cta-content {
    padding-left: 32px;
    padding-right: 18px;
  }

  .gpr-qs-map-cta-content::after {
    left: 18px;
    width: 5px;
  }

  .gpr-qs-map-cta-kicker {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
  }

  .gpr-qs-map-cta-title {
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin-bottom: 18px !important;
  }

  .gpr-qs-map-cta-btn {
    min-height: 48px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}