/* ===================================================================
   Estilos do site — base do template CDW
   Tokens de marca + componentes que o Bootstrap 5.3 não cobre
   =================================================================== */
:root {
  --navy: #020817;
  --navy-2: #010714;
  --navy-card: #030f30;
  --ink: #050b21;
  --ink-2: #050a20;
  --blue: #0652ff;
  --blue-2: #0e57ff;
  --blue-3: #075cff;
  --blue-bright: #1790ff;
  --light-bg: #f8faff;
  --muted-dark: #a1adc7;
  --muted-light: #4f5c78;
  --body-light: #29385c;
  --grad-btn: linear-gradient(90deg, #052e94 0%, #084aed 48%, #041f66 100%);
  --grad-pill: linear-gradient(90deg, #030d2b 0%, #051a47 50%, #030a21 100%);
  --grad-card-dark: linear-gradient(
    180deg,
    rgba(4, 14, 37, 0.96) 0%,
    rgba(1, 6, 20, 0.98) 100%
  );
  --font-heading:
    "Titillium Web", sans-serif; /* Titillium Web como fonte padrão do projeto */
  --font-body: "Titillium Web", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy);
}

section[id] {
  scroll-margin-top: 84px;
}

a {
  color: var(--blue);
}
a:hover {
  color: var(--blue-2);
}

section {
  overflow: hidden;
  position: relative;
}

h1,
h2,
h3,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
}

.text-hi {
  color: var(--blue-2);
}
.text-hi-light {
  color: #0e4ff5;
}

/* ---------- Pílula (badge) ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  background: var(--grad-pill);
  border: 1.5px solid #0a61ff;
  box-shadow: 0 8px 24px rgba(10, 97, 255, 0.35);
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #d6e3ff;
}

.pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0a6bff;
  box-shadow: 0 0 16px 4px rgba(20, 120, 255, 0.85);
  flex: none;
}

.pill-light {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(184, 209, 255, 0.55);
  box-shadow: 0 10px 24px rgba(20, 59, 140, 0.12);
  color: #0e4ff7;
}

.pill-light .dot {
  background: #0e4ff7;
  box-shadow: 0 0 10px rgba(14, 79, 247, 0.6);
}

/* ---------- Botões ---------- */
.btn-grad {
  background: var(--grad-btn);
  color: #f8faff;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  border: 1.5px solid rgba(115, 209, 255, 0.95);
  border-radius: 12px;
  box-shadow:
    0 12px 22px rgba(8, 92, 255, 0.55),
    inset 0 2px 8px rgba(115, 212, 255, 0.36);
}

.btn-grad:hover {
  color: #fff;
  filter: brightness(1.08);
}

.btn-grad-lg {
  border-color: #33b8ff;
  border-radius: 18px;
  font-size: 1.35rem;
  box-shadow:
    0 16px 30px 1px rgba(5, 97, 255, 0.65),
    inset 0 2px 8px rgba(115, 212, 255, 0.36);
}

.btn-outline-navy {
  background: var(--grad-pill);
  color: #f9fbff;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  border: 1.5px solid #0f61ff;
  border-radius: 10px;
  box-shadow:
    0 0 21px rgba(8, 94, 255, 0.24),
    inset 0 0 12px rgba(31, 117, 255, 0.18);
}

.btn-outline-navy:hover {
  color: #fff;
  border-color: #2f83ff;
  filter: brightness(1.15);
}

.btn-white-solid {
  background: #fff;
  color: #060e21;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  border-radius: 10px;
  border: 0;
  box-shadow: 0 12px 28px rgba(0, 33, 102, 0.24);
}

.btn-white-solid:hover {
  background: #eaf1ff;
  color: #060e21;
}

.btn-blue {
  background: #075cff;
  color: #fff;
  font-weight: 600;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 16px rgba(0, 79, 255, 0.28);
}

.btn-blue:hover {
  background: #0e57ff;
  color: #fff;
}

/* ---------- Header ---------- */
body > header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.site-header {
  background: rgba(2, 8, 23, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.01em;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link.active {
  color: #fff;
}

.header-logo img {
  height: 40px;
  width: auto;
}

/* Mobile header */
.header-mobile {
  background: rgba(2, 8, 23, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-mobile .container {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.header-mobile-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: #fff;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
}

.header-mobile-logo {
  display: flex;
  align-items: center;
}
.header-mobile-logo img {
  height: 34px;
  width: auto;
}

/* Offcanvas mobile (dark) */
.main-nav-offcanvas {
  width: min(82vw, 300px);
  background: #040d24;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.4);
}

.main-nav-offcanvas .offcanvas-header {
  padding: 0;
}
.main-nav-offcanvas .offcanvas-body {
  overflow-y: auto;
}
.mobile-sidebar-inner {
  background: transparent;
}

.mobile-sidebar-header {
  display: flex;
  justify-content: flex-end;
  padding: 0.75rem 0.75rem 0.25rem;
}

.mobile-sidebar-close {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile-sidebar-logo {
  display: flex;
  justify-content: center;
  padding: 0.5rem 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-sidebar-logo img {
  max-height: 44px;
  width: auto;
  max-width: 100%;
}

.mobile-sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-sidebar-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-sidebar-nav li a {
  display: block;
  padding: 0.9rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.mobile-sidebar-nav li a:hover,
.mobile-sidebar-nav li a.active {
  color: #fff;
  background: rgba(10, 97, 255, 0.14);
}

.mobile-sidebar-contact {
  padding: 1rem 1.25rem 1.25rem;
}

.mobile-sidebar-contact-item span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.2rem;
}

.mobile-sidebar-contact-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  line-height: 1.3;
}

.mobile-sidebar-contact-item a i,
.social-buttons a i {
  color: var(--blue-bright);
}
.social-buttons a i {
  font-size: 1.5rem;
}

/* ---------- HERO (Sessão 1) ---------- */
.hero {
  background: var(--navy);
  color: #f9fbff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/bg-hero.jpg") center top / cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1100px 700px at 50% 10%,
      rgba(6, 60, 160, 0.38) 0%,
      rgba(2, 8, 23, 0) 60%
    ),
    linear-gradient(
      180deg,
      rgba(2, 8, 24, 0.72) 0%,
      rgba(2, 8, 23, 0.88) 55%,
      var(--navy) 92%
    );
}

.hero-inner {
  padding-top: 11rem;
  padding-bottom: 4rem;
}

.hero h1 {
  font-size: 4.25rem;
  line-height: 1.13;
  letter-spacing: -0.015em;
}

.hero-lead {
  max-width: 620px;
  font-size: 1.55rem;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
}

/* Glow decorativo (elipses azuis) */
.glow-ellipse {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(10, 92, 255, 0.4) 0%,
    rgba(10, 92, 255, 0) 68%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

/* ---------- Shape — Texto institucional ---------- */
.inst-card {
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(61, 102, 173, 0.48);
  background: linear-gradient(
    90deg,
    rgba(2, 9, 23, 0.98) 0%,
    rgba(3, 15, 37, 0.98) 46%,
    rgba(3, 10, 26, 0.98) 100%
  );
  box-shadow:
    0 18px 34px rgba(0, 23, 71, 0.55),
    inset 0 1px 14px rgba(15, 89, 255, 0.12);
}

.inst-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  max-width: 60%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(5, 82, 255, 0) 0%,
    #1f9eff 50%,
    rgba(5, 82, 255, 0) 100%
  );
  box-shadow: 0 0 10px rgba(20, 122, 255, 0.8);
}

.inst-icon {
  flex: none;
  width: 128px;
  height: 128px;
  border-radius: 22px;
  border: 1.5px solid rgba(5, 82, 255, 0.82);
  background: linear-gradient(90deg, #050f24 0%, #010814 100%);
  box-shadow:
    0 0 9px rgba(5, 74, 255, 0.35),
    inset 0 0 14px rgba(13, 87, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 3.4rem;
  color: #3d94ff;
  text-shadow: 0 0 12px rgba(13, 102, 255, 0.7);
}

.inst-divider {
  flex: none;
  width: 2px;
  align-self: stretch;
  background: linear-gradient(
    180deg,
    rgba(18, 66, 158, 0.42) 0%,
    #0f6eff 50%,
    rgba(18, 66, 158, 0.42) 100%
  );
  box-shadow: 0 0 8px rgba(15, 110, 255, 0.78);
  position: relative;
}

.inst-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4da3ff;
  box-shadow: 0 0 16px 6px rgba(20, 122, 255, 0.75);
}

.inst-text {
  font-size: 1.1rem;
  line-height: 1.45;
  color: #edf0f7;
  font-weight: 400;
}

/* ---------- Métricas (Sessão 2) ---------- */
.metrics-wrap {
  position: relative;
}

.metrics-panel {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(64, 132, 244, 0.5);
  background: linear-gradient(
    180deg,
    rgba(4, 16, 42, 0.92) 0%,
    rgba(1, 7, 20, 0.96) 100%
  );
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.4),
    inset 0 0 26px rgba(15, 89, 255, 0.1);
  padding: 3.4rem 1rem 2.6rem;
}

.metric-col {
  position: relative;
}

.metric-col + .metric-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 1.5px;
  background: linear-gradient(
    180deg,
    rgba(229, 240, 255, 0) 0%,
    rgba(229, 240, 255, 0.36) 18%,
    rgba(229, 240, 255, 0.36) 82%,
    rgba(229, 240, 255, 0) 100%
  );
}

.metric-ico {
  width: 94px;
  height: 94px;
  border-radius: 18px;
  border: 1px solid rgba(8, 89, 255, 0.92);
  background: rgba(1, 7, 20, 0.96);
  box-shadow:
    0 6px 18px rgba(5, 87, 255, 0.25),
    inset 0 0 12px rgba(10, 71, 229, 0.18);
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  color: #4da3ff;
  filter: drop-shadow(0 0 3px rgba(10, 102, 255, 0.8));
  margin: 0 auto 1.2rem;
}

.metric-value {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 2.9rem;
  line-height: 1.08;
  color: var(--blue);
}

.metric-value .metric-alt {
  color: #f9faff;
  font-size: 2.75rem;
  display: block;
}

.metric-line {
  width: 76px;
  height: 2px;
  margin: 1rem auto;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    rgba(5, 82, 255, 0) 0%,
    #269eff 50%,
    rgba(5, 82, 255, 0) 100%
  );
  box-shadow: 0 0 7px 1px rgba(10, 107, 255, 0.95);
}

.metric-label {
  font-family: "Titillium Web", sans-serif;
  font-size: 1.1rem;
  color: #bac2d1;
}

/* Grid perspectivo decorativo */
.grid-perspective {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) perspective(560px) rotateX(58deg);
  transform-origin: center bottom;
  width: 160%;
  height: 420px;
  background-image:
    linear-gradient(rgba(30, 98, 255, 0.16) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(30, 98, 255, 0.16) 1.5px, transparent 1.5px);
  background-size: 96px 96px;
  opacity: 0.68;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 55%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 55%);
}

/* Faixa "Construindo sonhos" */
.dream-band {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(64, 132, 244, 0.55);
  background: linear-gradient(
    90deg,
    rgba(4, 16, 42, 0.94) 0%,
    rgba(2, 10, 30, 0.96) 100%
  );
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 0 22px rgba(15, 89, 255, 0.12);
  padding: 2rem 2.5rem;
}

.dream-band h2 {
  font-size: 2.1rem;
  letter-spacing: -0.01em;
  color: #f9faff;
  margin: 0;
}

/* ---------- Sessão 3 — Uma nova forma de construir ---------- */
.section-light {
  background: var(--light-bg);
  color: var(--ink-2);
}

.section-light-deco {
  background: var(--light-bg) url("../images/bg-como-funciona.jpg") center /
    cover no-repeat;
}

.section-title-light {
  font-size: 3.4rem;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink-2);
}

.section-title-dark {
  font-size: 3.4rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #f8faff;
}

.lead-light {
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--body-light);
}

.build-img-card {
  border-radius: 24px;
  border: 1.3px solid rgba(184, 214, 255, 0.58);
  box-shadow:
    -16px 9px 28px rgba(26, 89, 229, 0.08),
    0 26px 50px rgba(18, 51, 122, 0.16),
    inset 0 2px 7px rgba(255, 255, 255, 0.75);
  overflow: hidden;
  background: linear-gradient(102deg, #edf5ff 4%, #f6faff 51%, #e5f2ff 95%);
}

.build-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 630px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(166, 191, 229, 0.28);
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-ico {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(178, 209, 255, 0.55);
  background: #f6faff;
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: #0e4ff7;
}

.check-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2e4066;
}

/* ---------- Sessão 4 — Método projeto ---------- */
.metodo-section {
  color: #f8faff;
}

.metodo-section::before {
  content: "";
  position: absolute;
  inset: 0;
}

.metodo-sub {
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 600;
  color: #fff;
}

.steps-line {
  position: relative;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(20, 110, 255, 0) 0%,
    rgba(56, 150, 255, 0.85) 6%,
    rgba(56, 150, 255, 0.85) 94%,
    rgba(20, 110, 255, 0) 100%
  );
  box-shadow: 0 0 8px rgba(30, 140, 255, 0.55);
  transform: translateY(
    28px
  ); /* desce a linha até o centro dos círculos (gutter 24px + mt-1 4px) */
}

.steps-arrow {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 50%;
  color: #4db3ff;
  font-size: 1.35rem;
  line-height: 1;
  text-shadow: 0 0 8px rgba(30, 150, 255, 0.8);
}

.step-num {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  margin: -46px auto 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #f8faff;
  background: linear-gradient(180deg, #04122e 0%, #010817 100%);
  border: 2px solid rgba(86, 197, 255, 0.9);
  box-shadow:
    0 0 18px rgba(30, 150, 255, 0.5),
    inset 0 0 14px rgba(20, 110, 255, 0.25);
}

.step-num::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  transform: translateX(-50%) rotate(45deg);
  background: #030f26;
  border-right: 2px solid rgba(86, 197, 255, 0.9);
  border-bottom: 2px solid rgba(86, 197, 255, 0.9);
  box-shadow: 3px 3px 8px rgba(30, 150, 255, 0.35);
}

.step-card {
  border-radius: 18px;
  border: 1.5px solid rgba(51, 115, 219, 0.55);
  background: var(--grad-card-dark);
  box-shadow:
    0 14px 28px rgba(5, 56, 163, 0.2),
    inset 0 0 18px rgba(20, 82, 204, 0.1);
  padding: 1.8rem 1rem;
  flex: 1 1 auto; /* altura padronizada: o card estica até igualar a coluna mais alta */
  text-align: center;
}

.step-card .step-ico {
  font-size: 3rem;
  color: #4da3ff;
  filter: drop-shadow(0 0 4px rgba(10, 97, 255, 0.55));
  display: block;
  margin-bottom: 0.9rem;
  line-height: 1;
}

.step-card h3 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #f8faff;
}

.step-card p {
  font-family: "Titillium Web", sans-serif;
  font-size: 1.05rem;
  line-height: 1.3;
  color: #a1adc7;
  margin: 0.5rem 0 0;
}

/* ---------- Sessão 5 — Soluções ---------- */
.solucao-card {
  border-radius: 16px;
  border: 1px solid rgba(184, 209, 255, 0.55);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 19px rgba(20, 48, 107, 0.14),
    inset 0 0 20px rgba(36, 87, 184, 0.04);
  position: relative;
  height: 100%;
}

.solucao-thumb {
  height: 260px;
  border-radius: 16px 16px 0 0;
  border-bottom: 4px solid #2563f7;
  overflow: hidden;
  background: linear-gradient(117deg, #e0f0ff 4%, #f7fbff 94%);
}

.solucao-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solucao-ico {
  position: absolute;
  top: 223px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fff;
  border: 1.2px solid rgba(173, 204, 255, 0.65);
  box-shadow:
    0 10px 22px rgba(13, 66, 184, 0.18),
    inset 0 2px 6px rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #0e4ff7;
  z-index: 2;
}

.solucao-body {
  padding: 4rem 1.9rem 2rem;
}

.solucao-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 18px;
  background: #f1f7ff;
  border: 1px solid rgba(161, 194, 255, 0.55);
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  color: #0e4ff7;
}

.solucao-card h3 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #050b21;
  margin: 1rem 0 0.6rem;
}

.solucao-card p {
  font-size: 1.05rem;
  color: #4f5c78;
  line-height: 1.4;
}

.solucao-link {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0e4ff7;
  text-decoration: none;
}

.solucao-link:hover {
  color: #0a3ed1;
}

/* ---------- Sessão 6 — Por que projeto (slider) ---------- */
.porque-section {
  color: #f9fbff;
}

.porque-section::before {
  content: "";
  position: absolute;
  inset: 0;
}

.porque-sub {
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
}

.slider-wrap {
  position: relative;
  max-width: 1280px;
  padding: 0 96px;
}

.slider-card {
  display: none;
  border-radius: 30px;
  border: 1.5px solid rgba(22, 129, 255, 0.82);
  background: linear-gradient(
    156deg,
    rgba(6, 29, 71, 0.97) 8%,
    rgba(3, 21, 52, 0.99) 52%,
    #020b20 88%
  );
  box-shadow: 0 22px 48px rgba(0, 89, 222, 0.27);
  overflow: hidden;
  min-height: 450px;
}

.slider-card.active {
  display: block;
  animation: slideFade 0.4s ease;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-body {
  padding: 2.6rem 3.2rem;
  position: relative;
}

.slide-num {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: rgba(12, 44, 103, 0.9);
  border: 1px solid rgba(33, 133, 255, 0.76);
  box-shadow: 0 5px 14px rgba(20, 124, 255, 0.3);
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #f5f9ff;
}

.slide-ico {
  width: 108px;
  height: 108px;
  border-radius: 16px;
  border: 1.5px solid rgba(22, 125, 255, 0.78);
  background: radial-gradient(
    circle at 50% 50%,
    rgba(10, 43, 101, 0.96) 0%,
    rgba(7, 32, 78, 0.98) 50%,
    rgba(3, 21, 54, 1) 100%
  );
  box-shadow: 0 8px 20px rgba(20, 124, 255, 0.34);
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: #4da3ff;
  margin: 1.4rem 0 1.6rem;
}

.slider-card h3 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #f5f8ff;
}

.slide-desc {
  font-size: 1.3rem;
  line-height: 1.35;
  color: #b7c4d9;
  margin-top: 0.9rem;
}

.slide-progress {
  display: flex;
  gap: 0.85rem;
  margin-top: 2.6rem;
}

.slide-progress span {
  width: 53px;
  height: 4px;
  border-radius: 2px;
  background: rgba(23, 51, 89, 0.72);
}

.slide-progress span.on {
  background: #1790ff;
  box-shadow: 0 0 7px rgba(20, 140, 255, 0.7);
}

.slider-visual {
  position: relative;
  min-height: 320px;
  height: 100%;
  border-left: 2px solid rgba(55, 160, 255, 0.5);
}

.slider-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 20, 50, 0.55) 0%,
    rgba(4, 20, 50, 0) 45%
  );
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 131, 255, 0.65);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  color: #fff;
  z-index: 3;
}

.slider-arrow.prev {
  left: 0;
  background: rgba(6, 26, 61, 0.88);
  box-shadow: 0 10px 20px rgba(8, 119, 255, 0.25);
}

.slider-arrow.next {
  right: 0;
  background: rgba(7, 107, 255, 0.96);
  border-color: rgba(26, 131, 255, 0.95);
  box-shadow: 0 10px 20px rgba(8, 119, 255, 0.45);
}

.slider-arrow:hover {
  filter: brightness(1.12);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 2.4rem;
}

.slider-dot {
  border: 0;
  background: transparent;
  color: #637393;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.2rem 0.2rem 0.6rem;
  position: relative;
}

.slider-dot.active {
  color: #f7faff;
}

.slider-dot.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: #188eff;
  box-shadow: 0 0 7px rgba(20, 141, 255, 0.8);
}

/* ---------- Sessão 7 — CTA final ---------- */
.cta-final {
  background: #f8faff;
}

.cta-card {
  position: relative;
  border-radius: 25px;
  border: 1.25px solid rgba(33, 107, 235, 0.58);
  background: var(--navy-card);
  box-shadow:
    0 7px 23px rgba(8, 77, 255, 0.16),
    0 23px 45px rgba(15, 43, 102, 0.2),
    inset 0 0 23px rgba(26, 89, 229, 0.16);
  overflow: hidden;
  color: #f9fbff;
}

.cta-card-body {
  position: relative;
  z-index: 2;
  padding: 3.6rem 1rem 3.6rem 5rem;
}

.cta-card h2 {
  font-size: 2.8rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.cta-card .cta-desc {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
}

.cta-img {
  position: absolute;
  top: -40px;
  right: 0px;
  bottom: -51px;
  width: 100%;
  pointer-events: none;
}

.cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #030f30 0%, rgba(3, 15, 48, 0) 45%);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #050c1f;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Titillium Web", sans-serif;
}

.site-footer .footer-logo img {
  height: 45px;
  width: auto;
}

.site-footer .footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer h5 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer ul li {
  margin-bottom: 0.85rem;
}

.site-footer ul a,
.site-footer .footer-contact-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.site-footer ul a:hover {
  color: #fff;
}

.footer-address {
  font-size: 1rem;
  color: #fff;
  line-height: 1.55;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* ---------- WhatsApp float ---------- */
@keyframes whatsapp-float-pulse {
  0% {
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.2),
      0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float-btn {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1060;
  cursor: pointer;
  text-decoration: none;
  animation: whatsapp-float-pulse 2.5s ease-out infinite;
  transition: transform 0.2s ease;
}

.whatsapp-float-btn:hover {
  color: #fff !important;
  transform: translateY(-2px) scale(1.04);
  animation-play-state: paused;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
  .whatsapp-float-btn {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 60px;
    height: 60px;
    font-size: 1.85rem;
  }
}

/* ---------- Responsivo ---------- */
@media (max-width: 991px) {
  .hero-inner {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero-lead {
    font-size: 1.15rem;
  }
  .inst-card {
    text-align: center;
  }
  .inst-icon {
    width: 96px;
    height: 96px;
    font-size: 2.5rem;
    margin: 0 auto;
  }
  .inst-divider {
    display: none;
  }
  .inst-text {
    font-size: 1.1rem;
  }
  .metrics-panel {
    clip-path: none;
  }
  .metric-col + .metric-col::before {
    display: none;
  }
  .metric-value {
    font-size: 2.3rem;
  }
  .metric-value .metric-alt {
    font-size: 2.15rem;
  }
  .dream-band {
    clip-path: none;
    padding: 1.5rem;
  }
  .dream-band h2 {
    font-size: 1.45rem;
  }
  .section-title-light,
  .section-title-dark {
    font-size: 2.2rem;
  }
  .lead-light {
    font-size: 1.1rem;
  }
  .check-text {
    font-size: 1rem;
  }
  .metodo-sub,
  .porque-sub {
    font-size: 1.1rem;
  }
  .steps-line {
    display: none;
  }
  .step-num {
    margin-top: 0;
    width: 74px;
    height: 74px;
    font-size: 1.5rem;
  }
  .btn-grad-lg {
    font-size: 1.05rem;
  }
  .slider-body {
    padding: 1.8rem 1.5rem;
  }
  .slider-card h3 {
    font-size: 1.6rem;
  }
  .slide-desc {
    font-size: 1.05rem;
  }
  .slider-visual {
    min-height: 220px;
    border-left: 0;
    border-top: 2px solid rgba(55, 160, 255, 0.5);
  }
  .slider-wrap {
    padding: 0;
  }
  .slider-arrow {
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
  }
  .slider-arrow.prev {
    left: 6px;
  }
  .slider-arrow.next {
    right: 6px;
  }
  .slider-dots {
    gap: 1.6rem;
  }
  .cta-card-body {
    padding: 2.4rem 1.6rem;
  }
  .cta-card h2 {
    font-size: 1.9rem;
  }
  .cta-card .cta-desc {
    font-size: 1.05rem;
  }
  .cta-img {
    position: relative;
    inset: auto;
    width: 100%;
    height: 220px;
    margin-top: 1rem;
  }
  .cta-img::after {
    background: linear-gradient(0deg, rgba(3, 15, 48, 0) 40%, #030f30 100%);
  }
}

/* ===================================================================
   PÁGINA /metodo — Método projeto (design Figma "Métodos projeto", node 219-763)
   Classes com prefixo .metodo-hero/.metodo-etapa/.metodo-conecta
   Reutiliza .pill, .text-hi, .hero-lead, .section-light, .section-title-dark,
   .cta-final/.cta-card e botões já existentes.
   =================================================================== */

/* Hero */
.metodo-hero {
  background: var(--navy);
}

.metodo-hero-bg {
  position: absolute;
  inset: 0;
}

.metodo-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(2, 8, 24, 0.55),
    rgba(2, 8, 24, 0.8) 99.16%,
    #020817
  );
}

.metodo-hero-inner {
  padding-top: 10rem;
  padding-bottom: 7rem;
}

.metodo-display {
  max-width: 900px;
  font-size: 3.6rem;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

/* Etapas (lista clara) */
.metodo-etapa {
  padding: 3rem 0;
}

.metodo-etapa-divisor {
  border-bottom: 1px solid rgba(215, 223, 236, 0.95);
}

.metodo-etapa-label {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: #0d52f4;
}

.metodo-etapa-title {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
  color: #080f24;
}

.metodo-etapa-desc {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #56627e;
  max-width: 570px;
}

.metodo-etapa-img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(53, 103, 255, 0.55);
  box-shadow: 0 22px 34px rgba(13, 31, 77, 0.18);
  background: linear-gradient(90deg, #122a9a 0%, #173ccb 52%, #2551ff 100%);
}

.metodo-etapa-img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 360px;
  object-fit: cover;
}

/* Um método que conecta (linha + ícones) */
.metodo-conecta {
  background-image:
    linear-gradient(rgba(26, 87, 209, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 87, 209, 0.06) 1px, transparent 1px),
    linear-gradient(
      180deg,
      rgba(5, 46, 140, 0.22) 0%,
      rgba(3, 20, 56, 0.08) 46%,
      rgba(3, 8, 23, 0) 100%
    ),
    radial-gradient(
      1100px 800px at 50% 30%,
      rgba(6, 82, 255, 0.14) 0%,
      rgba(6, 82, 255, 0) 55%
    );
  background-color: var(--navy);
  background-size:
    64px 64px,
    64px 64px,
    100% 260px,
    auto;
  background-repeat: repeat, repeat, no-repeat, no-repeat;
}

.metodo-conecta-wrap {
  position: relative;
  max-width: 1180px;
}

.metodo-conecta-linha {
  position: absolute;
  top: 0;
  left: 7%;
  right: 7%;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    rgba(26, 99, 255, 0.55) 0%,
    #70e4ff 50%,
    rgba(26, 99, 255, 0.55) 100%
  );
  box-shadow: 0 0 12px rgba(8, 124, 255, 0.6);
}

.metodo-conecta-item {
  position: relative;
  padding-top: 46px;
  max-width: 180px;
}

.metodo-conecta-stem {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 46px;
  background: linear-gradient(180deg, #70e4ff 0%, rgba(26, 99, 255, 0.35) 100%);
}

.metodo-conecta-stem::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #70e4ff;
  box-shadow: 0 0 16px 6px rgba(8, 124, 255, 0.65);
}

.metodo-conecta-ico {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 2.4rem;
  color: #4da3ff;
  background:
    radial-gradient(
      60px 60px at 38% 30%,
      rgba(23, 144, 255, 0.28) 0%,
      rgba(23, 144, 255, 0) 70%
    ),
    var(--grad-card-dark);
  box-shadow:
    inset 0 0 0 1.5px rgba(51, 115, 219, 0.6),
    0 14px 30px rgba(0, 0, 0, 0.35);
}

.metodo-conecta-label {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

/* Responsivo /metodo */
@media (max-width: 991px) {
  .metodo-hero-inner {
    padding-top: 6.5rem;
    padding-bottom: 4rem;
  }

  .metodo-display {
    font-size: 2.3rem;
  }

  .metodo-etapa {
    padding: 2rem 0;
  }

  .metodo-etapa-title {
    font-size: 1.7rem;
  }

  .metodo-etapa-desc {
    font-size: 1.05rem;
  }

  .metodo-etapa-img img {
    min-height: 200px;
  }

  .metodo-conecta-item {
    padding-top: 0;
  }

  .metodo-conecta-ico {
    width: 88px;
    height: 88px;
    font-size: 1.9rem;
  }
}

/* ===================================================================
   PÁGINA /solucoes — Soluções projeto (design Figma "Soluções projeto", node 220-1220)
   Classes com prefixo .solucoes-/.perfil-/.dif- — não interferem no restante
   Reutiliza .pill, .pill-light, .text-hi, .text-hi-light, .hero-lead,
   .section-light, .section-title-light/-dark, .cta-final/.cta-card e botões.
   =================================================================== */

/* Hero */
.solucoes-hero {
  background: var(--navy);
}

.solucoes-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/bg-solucoes.jpg") center / cover no-repeat;
}

.solucoes-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 8, 24, 0.6) 0%,
    rgba(2, 8, 24, 0.82) 55%,
    var(--navy) 100%
  );
}

.solucoes-hero-inner {
  padding-top: 10rem;
  padding-bottom: 6rem;
}

.solucoes-display {
  max-width: 900px;
  font-size: 3.6rem;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

/* Sessão — Para quem é a projeto */
.solucoes-perfis {
  background:
    radial-gradient(
      1100px 800px at 50% 20%,
      rgba(6, 82, 255, 0.14) 0%,
      rgba(6, 82, 255, 0) 55%
    ),
    var(--navy);
}

.solucoes-sub {
  font-size: 1.45rem;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
}

.perfil-card {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(26, 99, 216, 0.68);
  background: linear-gradient(
    180deg,
    rgba(9, 38, 83, 0.88) 0%,
    rgba(6, 27, 59, 0.94) 50%,
    rgba(3, 20, 47, 0.98) 100%
  );
  box-shadow:
    0 16px 14px rgba(0, 21, 52, 0.55),
    inset 0 1px 14px rgba(22, 112, 255, 0.11);
  padding: 2.2rem 1rem;
  text-align: center;
}

.perfil-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 8%;
  right: 8%;
  height: 2px;
  border-radius: 2px;
  filter: blur(1.5px);
  background: linear-gradient(
    90deg,
    rgba(13, 94, 223, 0) 0%,
    rgba(97, 163, 255, 0.95) 50%,
    rgba(13, 94, 223, 0) 100%
  );
}

.perfil-ico {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.4rem;
  font-size: 2.8rem;
  color: #4da3ff;
  filter: drop-shadow(0 0 6px rgba(23, 144, 255, 0.55));
}

.perfil-label {
  font-family: "Inter", "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #f4f8ff;
}

/* Sessão — Por que projeto (diferenciais) */
.solucoes-porque-sub {
  font-size: 1.45rem;
  line-height: 1.15;
  color: #50627f;
}

.dif-card {
  border-radius: 18px;
  border: 1px solid rgba(191, 213, 247, 0.68);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(249, 252, 255, 0.98) 100%
  );
  box-shadow: 0 14px 28px rgba(43, 92, 168, 0.12);
  padding: 2rem;
}

.dif-ico {
  display: grid;
  place-items: center;
  flex: none;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #edf4ff 100%);
  box-shadow: 0 8px 18px rgba(36, 107, 222, 0.18);
  font-size: 2.5rem;
  color: #1e6fff;
}

.dif-card h3 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #081632;
  margin: 0;
}

.dif-line {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 1.5px;
  background: #1e6fff;
  margin: 0.7rem 0 1rem;
}

.dif-card p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #526582;
  margin: 0;
}

.dif-card-destaque {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2.4rem 2rem;
}

.dif-card-destaque .dif-ico {
  margin-bottom: 3.2rem;
}

.dif-card-mini {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

/* Responsivo /solucoes */
@media (max-width: 991px) {
  .solucoes-hero-inner {
    padding-top: 6.5rem;
    padding-bottom: 4rem;
  }

  .solucoes-display {
    font-size: 2.3rem;
  }

  .solucoes-sub,
  .solucoes-porque-sub {
    font-size: 1.1rem;
  }

  .perfil-card {
    padding: 1.6rem 0.8rem;
  }

  .perfil-ico {
    width: 56px;
    height: 56px;
    font-size: 2.1rem;
    margin-bottom: 0.9rem;
  }

  .perfil-label {
    font-size: 0.95rem;
  }

  .dif-card-mini {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .dif-card-destaque .dif-ico {
    margin-bottom: 1.4rem;
  }

  .dif-ico {
    width: 72px;
    height: 72px;
    font-size: 2rem;
  }

  .dif-card h3 {
    font-size: 1.25rem;
  }
}

/* Ilustrações SVG de fundo dos cards "Por que projeto" */
.dif-art {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 30%;
  max-width: 190px;
  height: 62%;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.55;
  pointer-events: none;
}

.dif-card-destaque .dif-art {
  width: 42%;
  max-width: 210px;
  height: 46%;
}

.dif-card-mini .dif-mini-body,
.dif-card-mini .dif-ico,
.dif-card-destaque > *:not(.dif-art) {
  position: relative;
  z-index: 1;
}

/* Base de posicionamento das ilustrações .dif-art */
.dif-card {
  position: relative;
  overflow: hidden;
}

/* Ajuste — metodo-conecta conforme design: linha cruzando o centro dos ícones,
   pontos luminosos entre eles e sem títulos */
.metodo-conecta-item {
  padding-top: 0;
  max-width: none;
}

.metodo-conecta-linha {
  top: 65px; /* centro dos círculos de 84px */
}

.metodo-conecta-ico {
  width: 84px;
  height: 84px;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .metodo-conecta-ico {
    width: 72px;
    height: 72px;
    font-size: 1.7rem;
  }
}

/* ===================================================================
   PÁGINA /solucoes — Soluções projeto (design Figma node 220-1044)
   Reutiliza .metodo-hero/.metodo-etapa/.cta-card; só o fundo do hero
   e o box destaque de Parcerias são novos.
   =================================================================== */

.sol-destaque {
  display: inline-block;
  background: #fff;
  border-left: 2px solid #1f5cff;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(13, 31, 77, 0.1);
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #090c13;
  max-width: 340px;
}

/* ===================================================================
   PÁGINA /contato — Contato projeto (design Figma node 220-1599)
   Reutiliza .metodo-hero/.pill/.text-hi; classes novas com prefixo .ctt-
   =================================================================== */
.ctt-hero-bg {
}

.ctt-section {
  background:
    radial-gradient(
      900px 700px at 85% 15%,
      rgba(6, 82, 255, 0.16) 0%,
      rgba(6, 82, 255, 0) 55%
    ),
    radial-gradient(
      900px 700px at 5% 85%,
      rgba(6, 82, 255, 0.12) 0%,
      rgba(6, 82, 255, 0) 55%
    ),
    var(--navy);
}

.ctt-title {
  font-size: 2.9rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #f8faff;
}

.ctt-lead {
  font-size: 1.25rem;
  line-height: 1.3;
  color: #fff;
  max-width: 500px;
}

.ctt-check li {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(35, 64, 109, 0.58);
  font-size: 1.1rem;
  color: #fff;
}

.ctt-check li:last-child {
  border-bottom: 0;
}

.ctt-check-ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(40, 130, 255, 0.9);
  background: rgba(6, 28, 67, 0.8);
  color: #4da3ff;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(8, 124, 255, 0.35);
}

/* Card contato direto */
.ctt-card {
  border-radius: 14px;
  border: 1px solid rgba(40, 119, 255, 0.9);
  background: linear-gradient(
    90deg,
    rgba(6, 28, 67, 0.96) 0%,
    rgba(7, 22, 50, 0.96) 100%
  );
  box-shadow: 0 12px 24px rgba(0, 38, 122, 0.25);
  padding: 1.6rem;
  max-width: 500px;
}

.ctt-phone-ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(40, 130, 255, 0.9);
  background: rgba(4, 18, 46, 0.9);
  color: #4da3ff;
  font-size: 1.6rem;
  box-shadow: 0 0 16px rgba(8, 124, 255, 0.4);
}

.ctt-card-label {
  font-size: 1rem;
  color: #c5ccda;
}

.ctt-card-phone {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  margin-top: 0.2rem;
}

.ctt-card-mail {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}

.ctt-card-phone:hover,
.ctt-card-mail:hover {
  color: var(--blue-bright);
}

.ctt-card-addr {
  font-size: 0.9rem;
  color: #bfc7d8;
}

.ctt-card-addr i {
  color: #4da3ff;
}

/* Formulário */
.ctt-form {
  background: #fbfcff;
  border: 1px solid #e1e5ee;
  border-radius: 24px;
  box-shadow: 0 24px 42px rgba(0, 15, 46, 0.22);
  color: #081126;
}

.ctt-form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #081126;
}

.ctt-form-sub {
  font-size: 0.9rem;
  color: #636b7e;
}

.ctt-form .form-label {
  font-weight: 700;
  font-size: 0.82rem;
  color: #141c31;
}

.ctt-form .form-control,
.ctt-form .form-select {
  border-color: #d8dde8;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.ctt-form .form-control::placeholder {
  color: #81889a;
}

.ctt-form .form-check-label {
  color: #636b7e;
}

.ctt-btn {
  background: linear-gradient(90deg, #1242ef 0%, #075fff 100%);
  color: #fff;
  font-weight: 700;
  border: 0;
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(0, 66, 255, 0.28);
}

.ctt-btn:hover {
  color: #fff;
  filter: brightness(1.08);
}

.ctt-form-note {
  color: #767e90;
  font-size: 0.8rem;
}

@media (max-width: 991px) {
  .ctt-title {
    font-size: 2rem;
  }

  .ctt-lead {
    font-size: 1.05rem;
  }

  .ctt-check li {
    font-size: 0.98rem;
  }
}

/* ============================================================
   NITHOM REPRESENTANTES — tokens da marca
   Design Figma "Landing Page Nithom", frame 56:2465
   ============================================================ */
:root {
  --nt-ico-raio: url("../images/icon-raio.svg");
  --nt-navy: #02132f;
  --nt-navy-deep: #021633;
  --nt-orange: #ff7108;
  --nt-orange-grad: linear-gradient(145deg, #ff7d18 6%, #dc5600 94%);
  --nt-band-grad: linear-gradient(161deg, #e95c00 9%, #ff7108 54%, #ff8224 91%);
  --nt-hairline: rgba(255, 255, 255, 0.15);
}

body {
  font-family: "Titillium Web", sans-serif;
}

/* ---------- Botão da marca ---------- */
.btn-nithom {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--nt-orange) !important;
  border: 0;
  border-radius: 9px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 12px 15px rgba(255, 113, 8, 0.24);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.btn-nithom:hover,
.btn-nithom:focus-visible {
  background: #e95c00;
  color: #fff;
  transform: translateY(-1px);
}

.btn-nithom-lg {
  font-size: 1.125rem;
  padding: 1.125rem 1.75rem;
  border-radius: 11px;
  box-shadow: 0 14px 18px rgba(255, 113, 8, 0.24);
}

.btn-arrow {
  font-size: 1.1em;
  line-height: 1;
}

/* ---------- Header ---------- */
.site-header-wrap {
  position: relative;
  z-index: 20;
}

.site-header,
.header-mobile {
  background: var(--nt-navy);
  border-bottom: 1px solid var(--nt-hairline);
  padding: 1.125rem 0;
}

.header-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.site-header .nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--nt-orange);
}

.header-mobile-menu {
  background: transparent;
  border: 1px solid var(--nt-hairline);
  border-radius: 8px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  padding: 0.375rem 0.625rem;
}

.main-nav-offcanvas {
  background: var(--nt-navy);
  color: #fff;
}

.mobile-sidebar-header {
  border-bottom: 1px solid var(--nt-hairline);
}

.mobile-sidebar-logo img {
  height: 38px;
  width: auto;
}

.mobile-sidebar-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.15rem;
}

.mobile-sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 1.5rem;
}

.mobile-sidebar-nav a {
  color: #fff;
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-sidebar-nav a:hover {
  color: var(--nt-orange);
}

.mobile-sidebar-cta {
  padding: 0 1.5rem 1.5rem;
}

.mobile-sidebar-contact {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
}

.mobile-sidebar-contact span {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.mobile-sidebar-contact a {
  color: #fff;
  text-decoration: none;
}

/* ---------- Hero (node 56:2466) ---------- */
.nt-hero {
  position: relative;
  background: var(--nt-navy);
  color: #fff;
  overflow: hidden;
}

.nt-hero-bg {
  position: absolute;
  inset: 0;
  /* o gradiente fica por baixo: se bg-hero.jpg faltar, o hero continua apresentável */
  background:
    url("../images/bg-hero.jpg") right center / cover no-repeat,
    radial-gradient(ellipse 60% 90% at 78% 40%, #123f70, transparent 70%),
    linear-gradient(120deg, #02132f 40%, #0a2b58 100%);
}

.nt-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--nt-navy) 28%,
    rgba(2, 19, 47, 0.85) 48%,
    rgba(2, 19, 47, 0) 78%
  );
}

.nt-hero-inner {
  padding-block: 5rem 5.5rem;
}

.nt-eyebrow {
  align-items: center;
  color: var(--nt-orange);
  display: flex;
  font-size: 0.8125rem;
  font-weight: 700;
  gap: 0.7rem;
  letter-spacing: 0.12em;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}

.nt-eyebrow::before {
  background: var(--nt-ico-raio) center / contain no-repeat;
  content: "";
  flex-shrink: 0;
  height: 22px;
  width: 17px;
}

.nt-eyebrow-dark::before {
  background-image: var(--nt-ico-raio-dark, var(--nt-ico-raio));
}

.nt-h1 {
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  max-width: 15ch;
}

.nt-hi {
  color: var(--nt-orange);
}

.nt-hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 44ch;
}

.nt-hero-lead strong {
  color: #fff;
  font-weight: 700;
}

.nt-hero-card {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.067);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow:
    0 18px 42px rgba(0, 10, 28, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  display: flex;
  gap: 1rem;
  margin-bottom: 2.25rem;
  max-width: 620px;
  padding: 1.125rem;
}

.nt-hero-card-icon {
  align-items: center;
  background: var(--nt-orange-grad);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 12px rgba(255, 113, 8, 0.24);
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.nt-hero-card-tag {
  color: var(--nt-orange);
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.nt-hero-card-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.45;
  margin: 0;
}

/* ---------- Faixa de pilares (node 56:2521) ---------- */
.nt-pilares {
  background: var(--nt-band-grad);
  box-shadow:
    0 18px 42px rgba(164, 62, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  padding-block: 2.25rem;
  position: relative;
}

.nt-pilar-card {
  align-items: center;
  background: rgba(2, 22, 51, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  gap: 1.125rem;
  height: 100%;
  padding: 1.5rem 1.375rem;
}

.nt-pilar-icon::before {
  background: var(--nt-ico) center / contain no-repeat;
  content: "";
  height: 28px;
  width: 28px;
}

.nt-pilar-icon {
  align-items: center;
  background: rgba(255, 113, 8, 0.08);
  border: 1px solid rgba(255, 113, 8, 0.52);
  border-radius: 15px;
  box-shadow: inset 0 0 24px rgba(255, 113, 8, 0.06);
  display: flex;
  flex-shrink: 0;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.nt-pilar-tag {
  color: var(--nt-orange);
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.nt-pilar-title {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}

.nt-pilar-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  line-height: 1.4;
  margin: 0;
}

/* ---------- Responsivo ---------- */
@media (max-width: 991.98px) {
  .nt-hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(2, 19, 47, 0.92) 55%,
      rgba(2, 19, 47, 0.75) 100%
    );
  }

  .nt-hero-inner {
    padding-block: 3rem 3.5rem;
  }

  .nt-h1 {
    max-width: none;
  }

  .nt-hero-lead {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .nt-pilar-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }

  .btn-nithom-lg {
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   NITHOM — LOTE 2
   Mercados (56:2596) · Porque agora (56:2681) ·
   Oportunidades (56:4309) · Três frentes (56:4373)
   ============================================================ */

/* ---------- Blocos de seção ---------- */
.nt-section-light {
  background:
    url("../images/bg-mercados.jpg") center / cover no-repeat,
    radial-gradient(ellipse 53% 87% at 78% 40%, #123f70, transparent 9%),
    linear-gradient(to top, #02132f 88.24%, #0a2b58);
}

.nt-section-cream {
  background: #faf6f1;
}

.nt-mercados,
.nt-dores,
.nt-frentes,
.nt-agora {
  overflow: hidden;
  padding-block: 5rem;
  position: relative;
}

/* ---------- Tipografia compartilhada ---------- */
.nt-h2 {
  color: var(--nt-navy);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  max-width: 32ch;
}

.nt-h2-light {
  color: #fff;
}

.nt-h2-narrow {
  max-width: 18ch;
}

.nt-lead {
  color: #5b6879;
  font-size: 1.125rem;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 62ch;
}

.nt-lead-light {
  color: rgba(255, 255, 255, 0.85);
}

.nt-eyebrow-dark {
  color: #dc5600;
}

/* ---------- Ornamento (raio bege de fundo) ---------- */
.nt-ornamento {
  /* background: url("../images/bg-ornamento.svg") center / contain no-repeat; */
  display: block;
  height: 854px;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 611px;
  z-index: 0;
}

.nt-ornamento-dores {
  background: url("../images/bg-ornamento.svg") center / contain no-repeat;
  display: block;
  height: 854px;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 611px;
  z-index: 0;
}

.nt-ornamento-left {
  left: -13%;
}

.nt-ornamento-right {
  right: -10%;
}

/* ---------- Botão outline ---------- */
.btn-nithom-outline {
  align-items: center;
  background: rgba(5, 32, 72, 0.04);
  border: 1px solid rgba(5, 32, 72, 0.28);
  border-radius: 12px;
  color: var(--nt-navy);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 0.6rem;
  padding: 0.875rem 1.75rem;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn-nithom-outline:hover,
.btn-nithom-outline:focus-visible {
  background: rgba(5, 32, 72, 0.08);
  border-color: rgba(5, 32, 72, 0.45);
  color: var(--nt-navy);
}

.nt-cta-duplo {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
  justify-content: center;
  margin-top: 3rem;
}

/* ---------- Mercados (56:2596) ---------- */
.nt-mercados-grid {
  margin-top: 3.5rem;
}

.nt-mercado-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #d9dde2;
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
  padding: 1.125rem 1.125rem 1.75rem;
}

.nt-mercado-img {
  background: linear-gradient(154deg, #0a2b58, #02132f);
  /* raio assimétrico: assinatura visual da marca */
  border-radius: 7px 58px 7px 32px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}

.nt-mercado-img img {
  display: block;
  background: linear-gradient(154deg, #0a2b58, #02132f);
  height: 174px;
  object-fit: cover;
  width: 100%;
}

.nt-badge-num {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(2, 19, 47, 0.12);
  color: #dc5600;
  font-size: 0.6875rem;
  left: 12px;
  line-height: 1;
  min-width: 38px;
  padding: 0.45rem 0.55rem;
  position: absolute;
  text-align: center;
  top: 12px;
}

.nt-badge-num-orange {
  background: var(--nt-orange);
  box-shadow: 0 9px 11px rgba(2, 19, 47, 0.15);
  color: #fff;
}

.nt-mercado-title {
  color: var(--nt-navy);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  padding-inline: 0.625rem;
}

.nt-mercado-desc {
  color: #5b6879;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
  padding-inline: 0.625rem;
}

/* ---------- Porque agora (56:2681) ---------- */
.nt-agora {
  background: url("../images/bg-agora.jpg") center / cover no-repeat;
  color: #fff;
}

.nt-mapa {
  display: block;
  height: 705px;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
  right: 2%;
  top: 8%;
  width: 673px;
  z-index: 0;
}

.nt-agora-head {
  margin-bottom: 3.5rem;
  max-width: 720px;
}

.nt-stat-card {
  background: linear-gradient(
    154deg,
    rgba(255, 255, 255, 0.094),
    rgba(255, 255, 255, 0.024)
  );
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  box-shadow:
    0 22px 55px rgba(0, 8, 27, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  height: 100%;
  padding: 1.5rem 1.75rem 1.75rem;
  position: relative;
}

.nt-stat-top {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.nt-stat-icon::before {
  background: var(--nt-ico) center / contain no-repeat;
  content: "";
  height: 30px;
  width: 30px;
}

.nt-stat-icon {
  align-items: center;
  background: rgba(1, 27, 65, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow:
    0 12px 26px rgba(0, 9, 32, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-shrink: 0;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.nt-stat-tag {
  color: var(--nt-orange);
  font-size: 1rem;
  line-height: 1.2;
  max-width: 150px;
  text-align: right;
  text-transform: uppercase;
  font-weight: bold;
}

.nt-stat-valor {
  color: #fff;
  font-size: clamp(2.75rem, 4.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 0.875rem;
}

.nt-stat-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
  max-width: 260px;
}

.nt-stat-barra {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  bottom: 1.75rem;
  display: block;
  height: 3px;
  overflow: hidden;
  position: absolute;
  right: 1.75rem;
  width: 46px;
}

.nt-stat-barra::before {
  background: var(--nt-orange);
  box-shadow: 9px 0 16px rgba(255, 113, 8, 0.62);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 21px;
}

.nt-fonte {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  margin-top: 1.5rem;
}

/* ---------- Oportunidades / depoimentos (56:4309) ---------- */
.nt-dores-grid {
  margin-top: 3.5rem;
}

.nt-dor-card {
  height: 100%;
  padding-bottom: 3.5rem;
  position: relative;
}

.nt-dor-img {
  background: linear-gradient(130deg, #0a2b58, #02132f);
  border: 1px solid #031f44;
  /* raio assimétrico: canto superior direito bem maior */
  border-radius: 22px 74px 22px 22px;
  box-shadow:
    0 18px 34px rgba(3, 31, 68, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.nt-dor-card:nth-child(even) .nt-dor-img {
  background: linear-gradient(130deg, #123f70, #08264f);
}

.nt-dor-img img {
  display: block;
  background: linear-gradient(130deg, #0a2b58, #02132f);
  height: 350px;
  object-fit: cover;
  width: 100%;
}

.nt-dor-balao {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(3, 31, 68, 0.14);
  border-radius: 18px 18px 18px 6px;
  box-shadow:
    0 18px 38px rgba(3, 31, 68, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: var(--nt-navy);
  font-size: 0.9375rem;
  left: 15px;
  line-height: 1.35;
  margin: -6.5rem 0 0;
  padding: 1.5rem 1.5rem 1.625rem;
  position: relative;
  right: 15px;
  width: calc(100% - 30px);
}

.nt-dor-balao::after {
  color: rgba(255, 113, 8, 0.14);
  content: "\201D";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: 0.75rem;
  bottom: -1rem;
}

/* ---------- Faixa de destaque ---------- */
.nt-faixa-destaque {
  align-items: center;
  background:
    linear-gradient(
      154deg,
      rgba(255, 111, 0, 0.09) 7%,
      rgba(255, 111, 0, 0) 35%
    ),
    linear-gradient(173deg, #fff, #f3f6f9);
  border: 1px solid rgba(3, 31, 68, 0.13);
  border-left: 4px solid var(--nt-orange);
  border-radius: 18px;
  box-shadow:
    0 20px 50px rgba(3, 31, 68, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  display: flex;
  gap: 1.75rem;
  margin: 3rem auto 0;
  max-width: 980px;
  padding: 1.5rem 2rem;
}

.nt-faixa-icon {
  align-items: center;
  background: linear-gradient(145deg, #ff7900, #ef5700);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 17px;
  box-shadow: 0 12px 14px rgba(255, 111, 0, 0.25);
  display: flex;
  flex-shrink: 0;
  height: 68px;
  justify-content: center;
  transform: skewX(-8deg);
  width: 68px;
}

.nt-faixa-icon::before {
  background: url("../images/icon-portfolio.svg") center / contain no-repeat;
  content: "";
  height: 34px;
  transform: skewX(8deg);
  width: 26px;
}

.nt-faixa-texto {
  color: #061c3f;
  font-size: 1.2rem;
  line-height: 1.35;
  margin: 0;
}

/* ---------- Três frentes (56:4373) ---------- */
.nt-frentes {
  background:
    radial-gradient(
      ellipse 220px 320px at 8% 92%,
      rgba(255, 113, 8, 0.17),
      transparent
    ),
    radial-gradient(
      ellipse 300px 300px at 92% 12%,
      rgba(19, 74, 128, 0.44),
      transparent
    ),
    linear-gradient(128deg, #02132f 8%, #0a2b58 92%);
  color: #fff;
}

.nt-frentes-bg {
  background: url("../images/bg-solucoes.jpg") center / cover no-repeat;
  display: block;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.nt-frentes-grid {
  margin-top: 3.5rem;
}

.nt-frente-card {
  background: rgba(8, 38, 76, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 1.75rem;
}

.nt-frente-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.125rem;
}

.nt-frente-num {
  color: var(--nt-orange);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nt-frente-tag {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.7rem;
  text-transform: uppercase;
}

.nt-frente-img {
  /* sangra para fora do padding do card */
  border-block: 1px solid rgba(255, 255, 255, 0.11);
  margin-inline: -1.75rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}

.nt-frente-img::after {
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(255, 113, 8, 0.35),
      transparent 60%
    ),
    linear-gradient(150deg, rgba(255, 255, 255, 0.03), rgba(8, 38, 76, 0.8));
  content: "";
  inset: 0;
  position: absolute;
}

.nt-frente-img img {
  display: block;
  background: linear-gradient(150deg, #123f70, #08264f);
  height: 160px;
  object-fit: cover;
  width: 100%;
}

.nt-frente-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.nt-frente-rotulo {
  color: var(--nt-orange);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.nt-frente-texto {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

/* ---------- Faixa Portfólio integrado ---------- */
.nt-portfolio {
  align-items: center;
  background:
    linear-gradient(
      153deg,
      rgba(255, 111, 0, 0.11) 8%,
      rgba(255, 111, 0, 0) 37%
    ),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 24px;
  box-shadow:
    0 28px 72px rgba(0, 12, 32, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  padding: 2rem;
}

.nt-portfolio-icon::before {
  background: url("../images/icon-portfolio.svg") center / contain no-repeat;
  content: "";
  height: 48px;
  width: 48px;
}

.nt-portfolio-icon {
  align-items: center;
  background: linear-gradient(
    145deg,
    rgba(255, 111, 0, 0.2),
    rgba(255, 111, 0, 0.05)
  );
  border: 1px solid rgba(255, 111, 0, 0.5);
  border-radius: 24px;
  box-shadow: inset 0 0 28px rgba(255, 111, 0, 0.08);
  display: flex;
  flex-shrink: 0;
  height: 104px;
  justify-content: center;
  width: 104px;
}

.nt-portfolio-tag {
  color: var(--nt-orange);
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.nt-portfolio-texto {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0;
}

.nt-portfolio-texto strong {
  color: #fff;
}

/* ---------- Responsivo do lote 2 ---------- */
@media (max-width: 991.98px) {
  .nt-mercados,
  .nt-dores,
  .nt-frentes,
  .nt-agora {
    padding-block: 3.25rem;
  }

  .nt-h2,
  .nt-h2-narrow {
    max-width: none;
  }

  .nt-mapa,
  .nt-ornamento {
    display: none;
  }

  .nt-faixa-destaque,
  .nt-portfolio {
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
  }

  .nt-portfolio-icon {
    height: 72px;
    width: 72px;
  }
}

@media (max-width: 575.98px) {
  .nt-cta-duplo .btn {
    justify-content: center;
    width: 100%;
  }

  .nt-stat-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nt-stat-tag {
    text-align: left;
  }
}

/* ============================================================
   NITHOM — LOTE 3
   Oferece (56:4471) · Processo (56:4553) · Perfil (56:4704) ·
   Jornada (56:4744) · Candidatura (56:4847)
   ============================================================ */

.nt-oferece,
.nt-processo,
.nt-perfil,
.nt-jornada,
.nt-candidatura {
  overflow: hidden;
  padding-block: 5rem;
  position: relative;
}

.nt-lead-center {
  max-width: 52ch;
}

.nt-badge-num-static {
  position: static;
}

/* ---------- O que a representação oferece (56:4471) ---------- */
.nt-oferece-grid {
  margin-top: 3rem;
}

.nt-oferece-card {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 113, 8, 0.07), transparent 45%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid #d9dee5;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 28, 63, 0.04);
  height: 100%;
  min-height: 318px;
  overflow: hidden;
  padding: 1.8rem;
  position: relative;
}

/* barra de gradiente encostada por dentro da borda superior */
.nt-oferece-barra {
  background: linear-gradient(90deg, var(--nt-orange), rgba(255, 113, 8, 0));
  display: block;
  height: 4px;
  left: 1px;
  opacity: 0.82;
  position: absolute;
  right: 1px;
  top: 1px;
}

/* círculo cortado pelo overflow, no canto inferior direito */
.nt-oferece-circulo {
  border: 1px solid rgba(6, 28, 63, 0.08);
  border-radius: 50%;
  bottom: -46px;
  display: block;
  height: 118px;
  position: absolute;
  right: -32px;
  width: 118px;
}

.nt-oferece-top {
  align-items: flex-start;
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.nt-oferece-icon {
  align-items: center;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(255, 113, 8, 0.28),
      transparent 55%
    ),
    linear-gradient(145deg, #0a2b58, #02132f);
  border: 1px solid rgba(255, 113, 8, 0.28);
  border-radius: 20px;
  box-shadow: 0 13px 28px rgba(6, 28, 63, 0.18);
  display: flex;
  flex-shrink: 0;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.nt-oferece-icon::before {
  background: var(--nt-ico) center / contain no-repeat;
  content: "";
  height: 32px;
  width: 32px;
}

.nt-oferece-title {
  color: var(--nt-navy);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.7rem;
  position: relative;
}

.nt-oferece-desc {
  color: #5b6879;
  font-size: 0.9375rem;
  line-height: 1.45;
  margin: 0;
  position: relative;
}

/* ---------- Faixa navy com CTA ---------- */
.nt-faixa-navy {
  align-items: center;
  background: #061c3f;
  border-radius: 12px;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding: 2rem 2.125rem;
}

.nt-faixa-navy-texto {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.35;
  margin: 0;
  max-width: 62ch;
}

/* ---------- Processo (56:4553) ---------- */
.nt-processo {
  background:
    radial-gradient(
      ellipse 320px 380px at 8% 96%,
      rgba(255, 113, 8, 0.17),
      transparent
    ),
    radial-gradient(
      ellipse 420px 340px at 92% 10%,
      rgba(19, 74, 128, 0.44),
      transparent
    ),
    linear-gradient(136deg, #02132f 8%, #0a2b58 92%);
  color: #fff;
}

.nt-processo-bg {
  background: url("../images/bg-process.jpg") center / cover no-repeat;
  display: block;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  position: absolute;
}

.nt-etapas-grid {
  margin-block: 3rem;
}

.nt-etapa-card {
  align-items: center;
  background: linear-gradient(
    152deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.024)
  );
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.11);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.45rem 0.95rem 1.65rem;
  text-align: center;
}

.nt-etapa-icon {
  align-items: center;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 113, 8, 0.24),
      transparent 55%
    ),
    #061c3f;
  border: 1px solid rgba(255, 113, 8, 0.58);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  display: flex;
  height: 78px;
  justify-content: center;
  width: 78px;
}

.nt-etapa-icon::before {
  background: var(--nt-ico) center / contain no-repeat;
  content: "";
  height: 34px;
  width: 34px;
}

.nt-etapa-num {
  color: var(--nt-orange);
  font-size: 1.625rem;
  line-height: 1;
  padding-block: 1.125rem 0.625rem;
}

.nt-etapa-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* ---------- Caixa informativa (ilha clara sobre o navy) ---------- */
.nt-info-box {
  background: #f6f5f1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.nt-info-col {
  align-items: flex-start;
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
}

.nt-info-col + .nt-info-col {
  border-left: 1px solid #d7dce2;
}

.nt-info-icon {
  align-items: center;
  background: #fff0e5;
  border-radius: 18px;
  display: flex;
  flex-shrink: 0;
  height: 62px;
  justify-content: center;
  width: 62px;
}

.nt-info-icon::before {
  background: var(--nt-ico) center / contain no-repeat;
  content: "";
  height: 28px;
  width: 28px;
}

/* check desenhado com bordas — no design não é asset exportável */
.nt-info-icon-check::before {
  background: none;
  border: 1px solid #061c3f;
  border-radius: 14px 14px 14px 14px;
  height: 38px;
  position: relative;
  width: 38px;
}

.nt-info-icon-check::after {
  border-bottom: 2px solid var(--nt-orange);
  border-left: 2px solid var(--nt-orange);
  content: "";
  height: 8px;
  position: absolute;
  transform: rotate(-45deg);
  width: 15px;
}

.nt-info-texto {
  color: #061c3f;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}

.nt-info-forte {
  color: var(--nt-navy);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.nt-info-sub {
  color: #5b6879;
  font-size: 0.9375rem;
  line-height: 1.3;
  margin: 0;
}

/* ---------- Perfil procurado (56:4704) ---------- */
.nt-perfil-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(6, 28, 63, 0.1);
  display: grid;
  grid-template-columns: 459px 1fr;
  overflow: hidden;
}

.nt-perfil-foto {
  background:
    radial-gradient(
      circle at 35% 40%,
      rgba(255, 113, 8, 0.28),
      transparent 45%
    ),
    linear-gradient(119deg, #0a2b58, #02132f);
  min-height: 500px;
  position: relative;
}

.nt-perfil-foto img {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.nt-perfil-body {
  padding: 3.5rem;
}

.nt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.nt-chips li {
  border: 1px solid #dce1e7;
  border-radius: 6px;
  color: #0a2b58;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.7rem 0.82rem;
}

/* ---------- Jornada (56:4744) ---------- */
.nt-jornada-grid {
  margin-top: 3rem;
  /* as setas de conexão transbordam os cards — nada de overflow hidden aqui */
}

.nt-jornada-card {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 113, 8, 0.23), transparent 40%),
    linear-gradient(140deg, #0a2b58 6%, #02132f 94%);
  border: 1px solid #061c3f;
  border-radius: 16px;
  box-shadow: 0 22px 24px rgba(6, 28, 63, 0.2);
  height: 100%;
  min-height: 282px;
  padding: 1.55rem;
  position: relative;
}

.nt-jornada-barra {
  background: linear-gradient(90deg, var(--nt-orange), rgba(255, 113, 8, 0));
  border-radius: 0 0 4px 4px;
  display: block;
  height: 4px;
  left: 1.5rem;
  position: absolute;
  right: 1.5rem;
  top: 0;
}

/* seta circular ligando um card ao anterior */
.nt-jornada-card-seta::before {
  align-items: center;
  background: var(--nt-orange);
  border: 3px solid #faf6f1;
  border-radius: 50%;
  color: #fff;
  content: "\2192";
  display: flex;
  font-size: 0.8125rem;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  left: -25px;
  position: absolute;
  top: 45%;
  width: 30px;
  z-index: 2;
}

.nt-jornada-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.nt-jornada-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  height: 70px;
  justify-content: center;
  width: 70px;
}

.nt-jornada-icon::before {
  background: var(--nt-ico) center / contain no-repeat;
  content: "";
  height: 32px;
  width: 32px;
}

.nt-jornada-etapa {
  color: var(--nt-orange);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  text-transform: uppercase;
}

.nt-jornada-title {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.5rem 0 0;
}

/* ---------- Candidatura / formulário (56:4847) ---------- */
.nt-candidatura {
  background:
    radial-gradient(
      ellipse 420px 340px at 14% 12%,
      rgba(255, 113, 8, 0.18),
      transparent
    ),
    linear-gradient(147deg, #02132f 4%, #092f5e 96%);
  color: #fff;
}

.nt-candidatura-circulo {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -22%;
  display: block;
  height: 620px;
  pointer-events: none;
  position: absolute;
  right: -12%;
  width: 620px;
}

.nt-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nt-bullets li {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  padding-left: 2.25rem;
  position: relative;
}

.nt-bullets li::before {
  align-items: center;
  background: var(--nt-orange);
  border-radius: 50%;
  color: #fff;
  content: "\2713";
  display: flex;
  font-size: 0.6875rem;
  height: 24px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0.1rem;
  width: 24px;
}

/* ---------- Card do formulário ---------- */
.nt-form-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.24);
  padding: 2.45rem;
}

.nt-form-eyebrow {
  color: #dc5600;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.nt-form-title {
  color: var(--nt-navy);
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.nt-form-sub {
  color: #5b6879;
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.nt-form-label {
  color: #0a2b58;
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.4rem;
}

.nt-input.form-control,
.nt-input.form-select {
  background-color: #f8f9fa;
  border: 1px solid #dfe3e8;
  border-radius: 7px;
  color: var(--nt-navy);
  font-size: 0.9375rem;
  min-height: 47px;
  padding: 0.625rem 0.875rem;
}

.nt-input.form-control:focus,
.nt-input.form-select:focus {
  background-color: #fff;
  border-color: var(--nt-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 113, 8, 0.15);
}

.nt-input::placeholder {
  color: rgba(7, 26, 56, 0.5);
  font-size: 0.8125rem;
}

.nt-textarea {
  min-height: 92px;
  resize: vertical;
}

.nt-form-check {
  font-size: 0.875rem;
}

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

.nt-form-check a {
  color: #dc5600;
}

.nt-form-nota {
  color: #7f8995;
  font-size: 0.75rem;
  margin: 0.875rem 0 0;
  text-align: center;
}

/* honeypot: fora da tela, invisível para leitores de tela e para pessoas */
.nt-hp {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #02132f;
  border-top: 1px solid var(--nt-hairline);
  color: #fff;
  padding-block: 2.5rem;
}

.site-footer-logo img {
  height: 44px;
  width: auto;
}

.site-footer-programa {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.site-footer-email {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer-email:hover {
  color: var(--nt-orange);
}

.site-footer-topo {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer-topo:hover {
  color: #fff;
}

.site-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
}

.site-footer-legal a {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Responsivo do lote 3 ---------- */
@media (max-width: 1199.98px) {
  .nt-jornada-card-seta::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .nt-oferece,
  .nt-processo,
  .nt-perfil,
  .nt-jornada,
  .nt-candidatura {
    padding-block: 3.25rem;
  }

  .nt-perfil-card {
    grid-template-columns: 1fr;
  }

  .nt-perfil-foto {
    min-height: 280px;
  }

  .nt-perfil-body {
    padding: 2rem;
  }

  .nt-info-box {
    grid-template-columns: 1fr;
  }

  .nt-info-col + .nt-info-col {
    border-left: 0;
    border-top: 1px solid #d7dce2;
  }

  .nt-faixa-navy {
    flex-direction: column;
    align-items: flex-start;
  }

  .nt-form-card {
    padding: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .nt-faixa-navy .btn,
  .nt-oferece-card {
    width: 100%;
  }

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