/* -------------------------------------------------------------
 * JUSPIPE Brand Design System - Stripi-inspired CSS
 * ------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --colors-primary: #0d253d;
  --colors-primary-deep: #ffa500;
  --colors-primary-press: #ffa500;
  --colors-primary-soft: #0d253d;
  --colors-primary-bg-subdued-hover: #d9eafb;
  --colors-brand-dark-900: #1c1e54;
  --colors-brand-dark-950: #0d253d;
  /* Ink, deep navy */
  --colors-ruby: #ea2261;
  --colors-magenta: #f96bee;
  --colors-lemon: #9b6829;

  --colors-canvas: #ffffff;
  --colors-canvas-soft: #f6f9fc;
  --colors-canvas-cream: #f5e9d4;
  --colors-hairline: #e3e8ee;
  --colors-hairline-input: #a8c3de;

  --colors-ink: #0d253d;
  --colors-ink-secondary: #273951;
  --colors-ink-mute: #64748d;
  --colors-ink-mute-2: #61718a;
  --colors-on-primary: #ffffff;

  /* Spacing */
  --spacing-xxs: 2px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 24px;
  --spacing-xxl: 32px;
  --spacing-huge: 64px;

  /* Shapes */
  --rounded-xs: 4px;
  --rounded-sm: 6px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-pill: 9999px;

  /* Shadows */
  --shadow-level-1: 0 1px 3px rgba(0, 55, 112, 0.08);
  --shadow-level-2: 0 8px 24px rgba(0, 55, 112, 0.08), 0 2px 6px rgba(0, 55, 112, 0.04);
}

/* Base resets & typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--colors-ink);
  background-color: var(--colors-canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01" on;
  /* Substitutes standard characters to stylised ones */
}

/* Responsive displays with thin weight and negative tracking */
.display-xxl {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -1.4px;
  color: var(--colors-ink);
}

.titlaranja {
  font-weight: 800px;
}

.display-xl {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.96px;
  color: var(--colors-ink);
}

.display-lg {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.64px;
  color: var(--colors-ink);
}

.display-md {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.26px;
  color: var(--colors-ink);
}

.heading-lg {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.22px;
  color: var(--colors-ink);
}

.heading-md {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: var(--colors-ink);
}

.heading-sm {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0;
}

.body-lg {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0;
}

.body-md {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0;
}

.body-tabular {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.42px;
  font-feature-settings: "tnum" on, "ss01" on;
}

.caption {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.39px;
  color: var(--colors-ink-mute);
}

.micro {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0;
}

.micro-cap {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.1px;
  text-transform: uppercase;
}

/* Numeric text defaults to tnum */
.tnum {
  font-feature-settings: "tnum" on;
}

/* Buttons */
.button-primary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--colors-primary);
  color: var(--colors-on-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.0;
  padding: 8px 16px;
  border-radius: var(--rounded-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.button-primary-pill:hover {
  background-color: var(--colors-primary-deep);
  color: var(--colors-on-primary);
}

.button-primary-pill:active {
  background-color: var(--colors-primary-press);
  transform: scale(0.98);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--colors-canvas);
  color: var(--colors-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.0;
  padding: 8px 16px;
  border-radius: var(--rounded-pill);
  border: 1px solid var(--colors-primary);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.button-secondary:hover {
  background-color: var(--colors-canvas-soft);
}

.button-secondary:active {
  transform: scale(0.98);
}

.button-on-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--colors-brand-dark-900);
  color: var(--colors-on-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.0;
  padding: 8px 16px;
  border-radius: var(--rounded-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.1s ease;
}

.button-on-dark:hover {
  opacity: 0.9;
  color: var(--colors-on-primary);
}

.link-on-light {
  color: var(--colors-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.15s ease;
}

.link-on-light:hover {
  color: var(--colors-primary-deep);
}

/* Header & Nav */
.nav-bar-container {
  width: 100%;
  padding: 0 24px;
  position: relative;
  z-index: 100;
}

.nav-bar-on-mesh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  gap: 40px;
  position: relative;
  z-index: 10;
}

/* Logo fica isolado à esquerda */
.nav-bar-on-mesh>.logo-wordmark {
  flex-shrink: 0;
}

/* Links ficam no centro */
.nav-bar-on-mesh>.nav-links {
  flex: 1;
  justify-content: center;
}

/* Ações fixas à direita */
.nav-bar-on-mesh>.nav-actions {
  flex-shrink: 0;
}

.logo-wordmark {
  font-size: 20px;
  font-weight: 700;
  color: var(--colors-ink);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  width: 24px;
  height: 24px;
  background: var(--colors-primary);
  border-radius: 6px;
  display: inline-block;
  transform: skewX(-10deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--colors-ink-mute-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--colors-ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions .btn-signin {
  color: var(--colors-ink-mute-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}

.nav-actions .btn-signin:hover {
  color: var(--colors-ink);
}

/* Gradient Mesh Hero */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 96px;
  color: var(--colors-on-primary);
  min-height: 800px;
  display: flex;
  flex-direction: column;
}

.hero-wrapper .display-xxl {
  color: var(--colors-on-primary);
}

.hero-wrapper .logo-wordmark {
  color: var(--colors-on-primary);
}

.hero-wrapper .nav-links a {
  color: rgba(255, 255, 255, 0.7);
}

.hero-wrapper .nav-links a:hover {
  color: var(--colors-on-primary);
}

.hero-wrapper .nav-actions .btn-signin {
  color: rgba(255, 255, 255, 0.7);
}

.hero-wrapper .nav-actions .btn-signin:hover {
  color: var(--colors-on-primary);
}

.gradient-mesh-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 0 24px;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 800px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-right {
  display: none;
}

/* Decorative Green Badge in Hero */
.hero-green-badge {
  background-color: #ffa500;
  color: var(--colors-on-primary);
  padding: 16px 20px;
  border-radius: var(--rounded-md);
  box-shadow: var(--shadow-level-2);
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  max-width: 260px;
  margin-top: 16px;
}

.hero-green-badge span:first-child {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.hero-green-badge span:last-child {
  font-size: 13px;
  opacity: 0.9;
}

/* Container limits and padding */
.section-padding {
  padding: 96px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title-wrapper {
  max-width: 760px;
  margin-bottom: 64px;
}

/* Section header row: title left + orbit badge right */
.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}

.section-header-row .section-title-wrapper {
  margin-bottom: 0;
  flex: 1;
}

/* ── Seal Badge (circular spinning text) ── */
.seal-badge {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

.seal-svg {
  width: 160px;
  height: 160px;
  animation: seal-spin 14s linear infinite;
}

.seal-text {
  font-size: 11.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 2.2px;
  fill: var(--colors-ink-secondary);
  text-transform: uppercase;
}

.seal-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: #fff;
  border: 1.5px solid var(--colors-hairline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(13, 37, 61, 0.08);
}

@keyframes seal-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .seal-badge {
    width: 130px;
    height: 130px;
  }
  .seal-svg {
    width: 130px;
    height: 130px;
  }
}


.section-eyebrow {
  color: var(--colors-primary);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: 11px;
  margin-bottom: 12px;
}

/* Cards System */
.card-grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-feature-light {
  background-color: var(--colors-canvas);
  border: 1px solid var(--colors-hairline);
  padding: 32px;
  border-radius: var(--rounded-lg);
  box-shadow: var(--shadow-level-1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.card-feature-light:hover {
  box-shadow: var(--shadow-level-2);
  transform: translateY(-2px);
}

.card-feature-light .card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.card-feature-light .icon-box {
  width: 40px;
  height: 40px;
  background-color: var(--colors-canvas-soft);
  border-radius: var(--rounded-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--colors-primary);
  font-size: 16px;
}

.card-feature-light .arrow {
  color: var(--colors-ink-mute);
  font-size: 12px;
  transition: transform 0.2s ease;
}

.card-feature-light:hover .arrow {
  transform: translateX(4px);
  color: var(--colors-primary);
}

/* Highlighted variant */
.card-feature-light.highlighted {
  border-color: #ffa500;
  background-color: #f3fcf8;
}

.card-feature-light.highlighted .icon-box {
  background-color: rgba(36, 180, 126, 0.1);
  color: #ffa500;
}

.pill-tag-soft {
  background-color: var(--colors-primary-bg-subdued-hover);
  color: var(--colors-primary);
  font-size: 10px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: var(--rounded-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Stats Section */
.stats-section-bg {
  background-color: var(--colors-canvas-soft);
  border-top: 1px solid var(--colors-hairline);
  border-bottom: 1px solid var(--colors-hairline);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.stats-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-size: 48px;
  font-weight: 300;
  color: var(--colors-primary);
  line-height: 1;
  letter-spacing: -0.96px;
}

.stat-label {
  font-size: 13px;
  color: var(--colors-ink-secondary);
}

/* Interactive Tabs Section */
.tabs-header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.tabs-nav-pills {
  display: inline-flex;
  background-color: var(--colors-canvas-soft);
  padding: 4px;
  border-radius: var(--rounded-pill);
  border: 1px solid var(--colors-hairline);
  margin-top: 16px;
  list-style: none;
}

.tab-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  color: var(--colors-ink-mute);
  padding: 8px 20px;
  border-radius: var(--rounded-pill);
  cursor: pointer;
  transition: all 0.15s ease;
}

.tab-btn.active {
  background-color: var(--colors-brand-dark-950);
  color: var(--colors-on-primary);
}

.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.features-list .check-icon {
  width: 20px;
  height: 20px;
  /* background-color: rgba(83, 58, 253, 0.1); */
  color: var(--colors-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-top: 2px;
}

/* Cream Band - Warm interlude */
.card-cream-band {
  background-color: var(--colors-canvas-cream);
  color: var(--colors-ink);
  padding: 64px;
  border-radius: var(--rounded-lg);
  margin: 64px auto;
  max-width: 1200px;
}

/* Dark app banner */
.dark-featured-section {
  background-color: var(--colors-brand-dark-900);
  color: var(--colors-on-primary);
  padding: 96px 0;
  overflow: hidden;
}

.dark-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.dark-featured-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dark-featured-text h2 {
  color: var(--colors-on-primary);
}

.dark-featured-text p {
  color: rgba(255, 255, 255, 0.8);
}

.text-gold {
  color: #ffa500;
  font-weight: 800;
}

/* Mobile platform section */
.mobile-platform-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.mobile-phones-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 480px;
}

/* Testimonials System (No Faces) */
/* Testimonials System V2 (Rich Aesthetics) */
.testimonials-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid var(--colors-hairline);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--colors-ink-secondary);
  margin-bottom: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.testimonials-badge-icon {
  color: #0d253d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.highlight-blue {
  background-color: rgba(37, 130, 255, 0.12);
  color: #0d253d;
  padding: 2px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card-v2 {
  position: relative;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(13, 37, 61, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.testimonial-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 37, 61, 0.08);
}

.testimonial-card-v2.image-card {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border: none;
}

.testimonial-card-v2.image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(13, 37, 61, 0.1) 0%,
      rgba(13, 37, 61, 0.05) 40%,
      rgba(13, 37, 61, 0.5) 70%,
      rgba(13, 37, 61, 0.85) 100%);
  z-index: 1;
}

.testimonial-card-v2.blue-card {
  background: linear-gradient(135deg, #0d253d 0%, #034397 100%);
  color: #ffffff;
  border: none;
}

.testimonial-card-v2>* {
  position: relative;
  z-index: 2;
}

.card-top-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--colors-ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-top-badge i {
  color: #0d253d;
  font-size: 12px;
}

.card-quote-icon {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.testimonial-card-v2.blue-card .testimonial-body {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: auto;
  margin-top: 12px;
}

.testimonial-author-v2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: auto;
}

.author-meta-v2 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-meta-v2 h5 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.author-meta-v2 span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}

.card-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #0d253d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 130, 255, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.card-play-btn:hover {
  transform: scale(1.1);
  background-color: #034397;
}

.card-play-btn i {
  font-size: 12px;
  margin-left: 2px;
}

/* Footer light */
/* Footer Light (Amigo-inspired Premium Footer) */
.footer-light {
  background-color: #f8fafc;
  border-top: 1px solid var(--colors-hairline);
  padding: 64px 24px 48px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--colors-hairline);
  padding-bottom: 24px;
  margin-bottom: 40px;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--colors-ink-mute-2);
  transition: color 0.15s ease;
}

.back-to-top:hover {
  color: #0d253d;
}

.back-to-top-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(37, 130, 255, 0.08);
  color: #0d253d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.back-to-top:hover .back-to-top-icon {
  background-color: #0d253d;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--colors-ink);
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-sub-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--colors-ink-mute-2);
  margin-top: 20px;
  margin-bottom: 10px;
}

.footer-contact-info {
  font-size: 13px;
  color: var(--colors-ink-secondary);
  line-height: 1.45;
  margin-bottom: 12px;
}

.footer-contact-info strong {
  color: var(--colors-ink);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: 13px;
  color: var(--colors-ink-mute-2);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #0d253d;
}

/* Store & Social buttons */
.footer-section-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--colors-ink-secondary);
  margin-bottom: 12px;
  margin-top: 0;
}

.footer-store-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 240px;
}

.footer-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--colors-ink);
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.footer-store-btn:hover {
  border-color: #0d253d;
  background-color: #f8fafc;
}

.footer-store-btn i {
  font-size: 18px;
  color: var(--colors-ink);
}

.footer-store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-store-btn-text span {
  font-size: 10px;
  color: var(--colors-ink-mute);
  font-weight: 400;
}

.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(37, 130, 255, 0.08);
  color: #0d253d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.footer-social-btn:hover {
  background-color: #0d253d;
  color: #ffffff;
}

/* Meta Badge */
.meta-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 6px 12px;
  margin-top: 24px;
  width: fit-content;
  font-size: 11px;
  color: var(--colors-ink-secondary);
}

.meta-partner-badge i {
  color: #034397;
  font-size: 14px;
}

/* Bottom elements */
.footer-bottom {
  border-top: 1px solid var(--colors-hairline);
  padding-top: 24px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-bottom-row-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--colors-ink-mute-2);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-bottom-links a:hover {
  color: #0d253d;
}

.footer-made-by {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--colors-ink-mute-2);
}

.footer-made-by i {
  color: #ea2261;
}

.footer-bottom-address {
  font-size: 11px;
  color: var(--colors-ink-mute);
  line-height: 1.6;
}


/* -------------------------------------------------------------
 * CSS MOCKUPS (NO PEOPLE IMAGES)
 * High fidelity dashboard representations for JUSPIPE
 * ------------------------------------------------------------- */

/* Faux IDE/Dashboard Chrome (Composited Mockup) */
.mockup-window {
  background-color: var(--colors-brand-dark-950);
  border-radius: var(--rounded-xl);
  box-shadow: var(--shadow-level-2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.mockup-header {
  background-color: #121e2b;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red {
  background-color: var(--colors-ruby);
}

.mockup-dot.yellow {
  background-color: #ffa500;
}

.mockup-dot.green {
  background-color: #ffa500;
}

.mockup-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-family: monospace;
}

.mockup-body {
  padding: 24px;
  color: var(--colors-on-primary);
}

/* Faux Chart UI Card */
.mockup-chart-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rounded-lg);
  padding: 16px;
  margin-top: 12px;
}

.mockup-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mockup-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
  padding-top: 10px;
}

.mockup-chart-bar {
  flex: 1;
  background-color: var(--colors-primary-soft);
  border-radius: 4px 4px 0 0;
  height: 20%;
  position: relative;
  transition: height 0.5s ease;
}

.mockup-chart-bar.filled-ruby {
  background-color: var(--colors-ruby);
}

.mockup-chart-bar.filled-accent {
  background-color: #ffa500;
}

/* Code Preview panel */
.code-preview {
  font-family: monospace;
  font-size: 12px;
  line-height: 1.5;
  color: #a5d6ff;
  background: #0d1117;
  padding: 16px;
  border-radius: var(--rounded-md);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.code-preview .keyword {
  color: #ff7b72;
}

.code-preview .function {
  color: #d2a8ff;
}

.code-preview .string {
  color: #a5d6ff;
}

.code-preview .comment {
  color: #8b949e;
}

/* Phone Mockup Frame */
.phone-mockup {
  width: 210px;
  height: 420px;
  background-color: var(--colors-ink);
  border-radius: 32px;
  border: 8px solid #1c2e40;
  box-shadow: var(--shadow-level-2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-mockup.phone-left {
  transform: rotate(-8deg) translateX(20px);
  z-index: 2;
}

.phone-mockup.phone-right {
  transform: rotate(8deg) translateX(-20px) translateY(15px);
  z-index: 1;
}

.phone-screen {
  background-color: var(--colors-canvas-soft);
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.phone-header {
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: var(--colors-ink-mute);
  margin-bottom: 12px;
}

.phone-card {
  background-color: var(--colors-canvas);
  border-radius: var(--rounded-md);
  padding: 12px;
  box-shadow: var(--shadow-level-1);
  margin-bottom: 8px;
  border: 1px solid var(--colors-hairline);
}

.phone-notch {
  width: 90px;
  height: 16px;
  background-color: #1c2e40;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Light dashboard table (used in white composite panels) */
.mockup-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.mockup-table th {
  text-align: left;
  padding: 8px;
  color: var(--colors-ink-mute);
  border-bottom: 1px solid var(--colors-hairline);
  font-weight: 500;
}

.mockup-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--colors-canvas-soft);
  color: var(--colors-ink);
}

/* Responsive Breakpoints implementation */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .card-grid-3x3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tab-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dark-featured-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .mobile-platform-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card-v2 {
    height: 400px;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .display-xxl {
    font-size: 36px;
  }

  .display-xl {
    font-size: 32px;
  }

  .card-grid-3x3 {
    grid-template-columns: 1fr;
  }

  .stats-cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* -------------------------------------------------------------
 * LAYOUT CUSTOM - 3 COLUNAS HERO (MONT / JUSPIPE)
 * ------------------------------------------------------------- */
.hero-grid-main {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 32px;
  width: 100%;
  align-items: center;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-middle-col {
  /* Mantido vazio para silhueta do homem no plano de fundo */
  pointer-events: none;
}

.hero-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card Verde Esquerda */
.hero-green-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffa500;
  color: var(--colors-on-primary);
  width: 200px;
  height: auto;
  padding: 24px;
  border-radius: var(--rounded-lg);
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.15s ease;
  box-shadow: var(--shadow-level-2);
}

.hero-green-card:hover {
  transform: translateY(-4px);
  background-color: #ffa500;
  color: var(--colors-on-primary);
}

.hero-green-card .arrow-top-right {
  align-self: flex-end;
  font-size: 20px;
}

.hero-green-card span {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  max-width: 120px;
  color: #0d253d;
}

/* Grid de 6 Serviços Direita */
.services-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-mini-card {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(13, 37, 61, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rounded-lg);
  padding: 16px 20px;
  text-decoration: none;
  color: var(--colors-on-primary);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-mini-card:hover {
  background-color: rgba(13, 37, 61, 0.65);
  transform: translateY(-2px);
  color: var(--colors-on-primary);
}

.service-mini-card .card-arrow {
  color: #ffa500;
  font-size: 14px;
  margin-left: 12px;
}

.service-mini-card span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

/* Painel de Vídeo Direita */
.video-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(13, 37, 61, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rounded-lg);
  padding: 16px 24px;
  text-decoration: none;
  color: var(--colors-on-primary);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.video-panel:hover {
  background-color: rgba(13, 37, 61, 0.65);
  transform: translateY(-2px);
  color: var(--colors-on-primary);
}

.video-panel .play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffa500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--colors-on-primary);
  font-size: 12px;
}

.video-panel span {
  font-size: 14px;
  font-weight: 400;
}

/* Responsividade Customizada para o Hero */
@media (max-width: 1024px) {
  .hero-grid-main {
    grid-template-columns: 1.2fr 1.2fr;
  }

  .hero-middle-col {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-grid-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-green-card {
    width: auto;
    max-width: 240px;
    height: auto;
    min-height: 120px;
    margin-top: 10px;
  }
}

/* -------------------------------------------------------------
 * IMAGENS DE NICHO NAS ABAS DE SOLUÇÕES
 * ------------------------------------------------------------- */
.tab-img-wrapper {
  border-radius: var(--rounded-xl);
  overflow: hidden;
  box-shadow: var(--shadow-level-2);
  width: 100%;
  aspect-ratio: 4 / 3;
}

.tab-nicho-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.tab-img-wrapper:hover .tab-nicho-img {
  transform: scale(1.03);
}

/* -------------------------------------------------------------
 * SEÇÃO BENEFÍCIOS EXCLUSIVOS (FULL-BLEED DARK)
 * ------------------------------------------------------------- */
.exclusive-section {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.exclusive-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/cta.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
}

.exclusive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(5, 8, 12, 0.90) 0%,
      rgba(5, 8, 12, 0.55) 22%,
      rgba(5, 8, 12, 0.10) 40%,
      rgba(5, 8, 12, 0.10) 60%,
      rgba(5, 8, 12, 0.55) 78%,
      rgba(5, 8, 12, 0.90) 100%);
  z-index: 2;
}

.exclusive-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}

/* Coluna Esquerda */
.exclusive-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 280px;
  flex-shrink: 0;
}

.exclusive-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.exclusive-divider {
  width: 32px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
}

.exclusive-title {
  color: #fff !important;
  font-size: 64px;
  line-height: 1.15;
}

.exclusive-sub {
  color: rgba(255, 255, 255, 0.60);
  font-size: 13px;
  line-height: 1.55;
  max-width: 220px;
}

/* Coluna Direita */
.exclusive-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-end;
  width: 300px;
  flex-shrink: 0;
}

.exclusive-info-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: flex-start;
}

.exclusive-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.06);
}

.exclusive-info-text {
  color: rgba(255, 255, 255, 0.72);
  max-width: 300px;
  font-size: 13px;
  line-height: 1.65;
}

/* Card CTA */
.exclusive-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--rounded-lg);
  padding: 24px 28px;
  width: 220px;
  min-height: 140px;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease;
  align-self: flex-end;
}

.exclusive-cta-card:hover {
  background-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  color: #fff;
}

.exclusive-cta-arrow {
  align-self: flex-end;
  font-size: 16px;
  color: #ffa500;
  margin-bottom: 24px;
}

.exclusive-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.exclusive-cta-text span {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
}

.exclusive-cta-text strong {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.2px;
}

/* Responsivo */
@media (max-width: 1024px) {
  .exclusive-inner {
    flex-direction: column;
    padding: 64px 32px;
    gap: 40px;
    align-items: flex-start;
  }

  .exclusive-left,
  .exclusive-right {
    width: 100%;
  }

  .exclusive-right {
    align-items: flex-start;
  }

  .exclusive-cta-card {
    align-self: flex-start;
  }
}

/* -------------------------------------------------------------
 * SUBPAGE LAYOUT TEMPLATE (Light Theme)
 * ------------------------------------------------------------- */
.subpage-hero-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 56px;
  color: var(--colors-ink);
  background-color: #f6f9fc;
  /* Light dotted grid background pattern */
  background-image: radial-gradient(rgba(37, 130, 255, 0.09) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--colors-hairline);
}

.subpage-hero-wrapper .nav-bar-on-mesh a {
  color: var(--colors-ink-secondary);
}

.subpage-hero-wrapper .nav-bar-on-mesh a:hover {
  color: var(--colors-primary);
}

.subpage-hero-wrapper .logo-wordmark {
  color: var(--colors-ink) !important;
}

.subpage-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centraliza horizontalmente os blocos filhos */
  text-align: center;
  /* Centraliza o texto do título e subtítulo */
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--colors-ink-secondary);
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.breadcrumbs a {
  color: var(--colors-ink-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.breadcrumbs a:hover {
  color: #0d253d;
}

.breadcrumbs span {
  color: var(--colors-ink);
  font-weight: 500;
}

.breadcrumbs i {
  font-size: 8px;
  opacity: 0.5;
  margin: 0 2px;
  color: var(--colors-ink-mute);
}

.subpage-title-area {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Garante que o subtítulo respeite o alinhamento caso tenha max-width menor */
}

.subpage-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--colors-ink);
  margin: 0 0 16px 0;
  letter-spacing: -1.2px;
  line-height: 1.1;
}

.subpage-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--colors-ink-mute-2);
  line-height: 1.5;
  margin: 0;
  max-width: 720px;
}

/* Subpage Main Content Area */
.subpage-layout {
  background-color: var(--colors-canvas);
  padding: 64px 24px;
}

.subpage-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* Support for sidebar layout optionally */
.subpage-grid-2cols {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 64px;
}

.subpage-body {
  color: var(--colors-ink-secondary);
  font-size: 16px;
  line-height: 1.65;
}

.subpage-body p {
  margin-bottom: 24px;
}

.subpage-body h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--colors-ink);
  margin: 40px 0 20px 0;
  letter-spacing: -0.5px;
}

.subpage-body h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--colors-ink);
  margin: 32px 0 16px 0;
}

.subpage-body ul,
.subpage-body ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

.subpage-body li {
  margin-bottom: 8px;
}

.subpage-body blockquote {
  border-left: 4px solid var(--colors-primary);
  background-color: var(--colors-canvas-soft);
  padding: 16px 24px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--colors-ink);
}

.subpage-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-widget {
  background-color: var(--colors-canvas-soft);
  border: 1px solid var(--colors-hairline);
  padding: 24px;
  border-radius: var(--rounded-lg);
}

.sidebar-widget h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--colors-ink);
  margin: 0 0 16px 0;
}

/* Responsivo para Subpáginas */
@media (max-width: 800px) {
  .subpage-grid-2cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .subpage-title {
    font-size: 32px;
  }
}

/* ==========================================================================
   Gestor JUSPIPE Section - Print Layout Model
   ========================================================================== */
.gestor-section-bg {
  background-color: var(--colors-canvas-soft);
  border: 1px solid var(--colors-hairline);
  border-radius: 24px;
  margin: 0 auto 64px auto;
  max-width: 1200px;
}

.gestor-title-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px auto;
}

.gestor-title-center h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--colors-ink);
  margin-bottom: 16px;
}

.gestor-title-center p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--colors-ink-mute);
  max-width: 640px;
  margin: 0 auto;
}

.gestor-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gestor-card {
  background-color: var(--colors-canvas);
  border: 1px solid var(--colors-hairline);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(13, 37, 61, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.gestor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(13, 37, 61, 0.06);
}

/* Mockup Browser Window styling */
.gestor-mockup-window {
  background-color: #f1f5f9;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  height: 200px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.gestor-mockup-header {
  height: 32px;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
}

.gestor-mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
}

.gestor-mockup-dot.red {
  background-color: #ef4444;
}

.gestor-mockup-dot.yellow {
  background-color: #f59e0b;
}

.gestor-mockup-dot.green {
  background-color: #10b981;
}

.gestor-mockup-body {
  flex: 1;
  background-color: #ffffff;
  padding: 16px;
  position: relative;
  font-family: inherit;
  overflow: hidden;
}

/* Mockup Content: Card 1 (Agenda) */
.mockup-agenda-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mockup-agenda-btn {
  background-color: #e0f2fe;
  color: #0284c7;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.mockup-agenda-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--colors-ink);
}

.mockup-agenda-date {
  font-size: 9px;
  color: #64748d;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}

.mockup-agenda-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-agenda-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8fafc;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #f1f5f9;
}

.mockup-agenda-hour-time {
  font-size: 10px;
  font-weight: 500;
  color: #334155;
}

.mockup-agenda-hour-status {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.mockup-agenda-hour-status.checked {
  background-color: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  font-size: 8px;
}

/* Mockup Content: Card 2 (Clientes) */
.mockup-clients-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--colors-ink);
  margin-bottom: 12px;
}

.mockup-clients-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-client-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background-color: #f8fafc;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
}

.mockup-client-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
  color: #1e40af;
}

.mockup-client-info {
  display: flex;
  flex-direction: column;
}

.mockup-client-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--colors-ink);
}

.mockup-client-doc {
  font-size: 8px;
  color: #64748d;
}

/* Mockup Content: Card 3 (Assinatura) */
.mockup-sig-preview {
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  padding: 12px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #f8fafc;
  margin-bottom: 10px;
}

.mockup-sig-line {
  font-size: 20px;
  color: #0f172a;
}

.mockup-sig-badge {
  background-color: #dcfce7;
  color: #15803d;
  font-size: 8px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 4px;
  position: absolute;
  bottom: 6px;
  right: 6px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.mockup-sig-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}

.mockup-sig-btn {
  background-color: #0284c7;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 500;
  border: none;
  font-size: 9px;
}

/* Card details underneath the mockup */
.gestor-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gestor-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--colors-ink);
  margin: 0;
}

.gestor-card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--colors-ink-mute);
  margin: 0;
}

/* Responsive grid for gestor section */
@media (max-width: 1024px) {
  .gestor-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .gestor-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gestor-title-center h2 {
    font-size: 28px;
  }
}

/* -------------------------------------------------------------
 * PÁGINA SOBRE NÓS
 * ------------------------------------------------------------- */

/* ── Intro: texto + visual ── */
.sobre-intro-section {
  background-color: var(--colors-canvas);
}

.sobre-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-intro-text {
  display: flex;
  flex-direction: column;
}

.sobre-intro-visual {
  position: relative;
  height: 480px;
}

.sobre-visual-card--main {
  width: 100%;
  height: 100%;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  box-shadow: var(--shadow-level-2);
}

/* Floating stats on the visual */
.sobre-float-stat {
  position: absolute;
  background: #fff;
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(13, 37, 61, 0.10);
}

.sobre-float-stat--tl {
  top: 24px;
  left: -24px;
}

.sobre-float-stat--br {
  bottom: 24px;
  right: -24px;
}

.sobre-float-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--colors-ink);
  letter-spacing: -0.8px;
  line-height: 1;
}

.sobre-float-label {
  font-size: 11px;
  color: var(--colors-ink-mute);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Stats row ── */
.sobre-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.sobre-stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sobre-stat-num {
  font-size: 48px;
  font-weight: 300;
  color: var(--colors-primary);
  letter-spacing: -1.2px;
  line-height: 1;
}

.sobre-stat-label {
  font-size: 14px;
  color: var(--colors-ink-secondary);
}

/* ── MVV Cards ── */
.sobre-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sobre-mvv-card {
  background: var(--colors-canvas);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-level-1);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sobre-mvv-card:hover {
  box-shadow: var(--shadow-level-2);
  transform: translateY(-3px);
}

.sobre-mvv-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--rounded-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sobre-values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sobre-values-list li {
  font-size: 14px;
  color: var(--colors-ink-secondary);
  display: flex;
  align-items: center;
}

/* ── Why JUSPIPE ── */
.sobre-why-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-differentials {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sobre-diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sobre-diff-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--rounded-md);
  background-color: var(--colors-canvas);
  border: 1px solid var(--colors-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-level-1);
}

.sobre-diff-item strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--colors-ink);
  display: block;
}

/* ── Why Visual / Badge ── */
.sobre-why-visual {
  display: flex;
  justify-content: center;
}

.sobre-why-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.sobre-compliance-badge {
  background: #fff;
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-level-2);
  max-width: 300px;
}

.sobre-partner-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .sobre-intro-grid,
  .sobre-why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-intro-visual {
    height: 320px;
  }

  .sobre-float-stat--tl { left: 12px; }
  .sobre-float-stat--br { right: 12px; }

  .sobre-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre-mvv-grid {
    grid-template-columns: 1fr;
  }

  .sobre-why-visual {
    display: none;
  }
}

@media (max-width: 600px) {
  .sobre-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .sobre-stat-num {
    font-size: 36px;
  }
}

/* -------------------------------------------------------------
 * PÁGINA AJUDA E CONTATO (ajuda.php)
 * ------------------------------------------------------------- */

/* ── Canais de Atendimento ── */
.ajuda-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.ajuda-channel-card {
  background: var(--colors-canvas);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.ajuda-channel-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-level-2);
  border-color: var(--colors-hairline-input);
}

.ajuda-channel-card--featured {
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.05);
}

.ajuda-channel-card--featured:hover {
  border-color: #25d366;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.1);
}

.ajuda-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ajuda-channel-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ajuda-channel-info strong {
  font-size: 16px;
  color: var(--colors-ink);
}

.ajuda-channel-info span {
  font-size: 13px;
  color: var(--colors-ink-mute);
}

.ajuda-channel-info .ajuda-channel-detail {
  font-size: 11px;
  font-weight: 500;
  color: var(--colors-ink-secondary);
  margin-top: 4px;
}

.ajuda-channel-arrow {
  margin-left: auto;
  font-size: 13px;
  color: var(--colors-ink-mute);
  transition: transform 0.2s ease, color 0.2s ease;
}

.ajuda-channel-card:hover .ajuda-channel-arrow {
  transform: translate(2px, -2px);
  color: var(--colors-ink);
}

/* ── Layout da Página de Ajuda ── */
.ajuda-body-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-md);
  background: var(--colors-canvas);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: var(--colors-hairline-input);
  box-shadow: var(--shadow-level-1);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 500;
  color: var(--colors-ink);
  font-size: 16px;
}

.faq-icon {
  font-size: 12px;
  color: var(--colors-ink-mute);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
}

.faq-answer p {
  color: var(--colors-ink-secondary);
  font-size: 14.5px;
  line-height: 1.6;
  padding-bottom: 20px;
  margin: 0;
}

/* Open State */
.faq-item--open {
  border-color: var(--colors-hairline-input);
  box-shadow: var(--shadow-level-1);
}

.faq-item--open .faq-icon {
  transform: rotate(180deg);
}

.faq-item--open .faq-answer {
  max-height: 500px; /* arbitrary height to slide down */
  transition: max-height 0.3s ease-in, padding 0.3s ease-in;
}

/* Formulário de Contato */
.ajuda-form-card {
  background: var(--colors-canvas);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-xl);
  padding: 40px;
  box-shadow: var(--shadow-level-2);
}

.ajuda-form-header {
  margin-bottom: 28px;
}

.ajuda-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ajuda-form-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.ajuda-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ajuda-form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--colors-ink);
}

.ajuda-form-group input,
.ajuda-form-group select,
.ajuda-form-group textarea {
  font-family: inherit;
  font-size: 14.5px;
  color: var(--colors-ink);
  padding: 12px 16px;
  border: 1px solid var(--colors-hairline-input);
  border-radius: var(--rounded-md);
  background: var(--colors-canvas);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ajuda-form-group input:focus,
.ajuda-form-group select:focus,
.ajuda-form-group textarea:focus {
  border-color: #2582ff;
  box-shadow: 0 0 0 3px rgba(37, 130, 255, 0.15);
}

.ajuda-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--colors-brand-dark-950);
  color: #fff;
  border: none;
  border-radius: var(--rounded-pill);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease;
  margin-top: 10px;
}

.ajuda-form-submit:hover {
  background-color: #2582ff;
}

.ajuda-form-submit:active {
  transform: scale(0.98);
}

.ajuda-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 40px 0;
}

.ajuda-form-success p {
  font-size: 15px;
  font-weight: 500;
  color: var(--colors-ink);
}

/* Quick Whatsapp Card */
.ajuda-whatsapp-cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f4fbf7;
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--rounded-lg);
  padding: 16px 20px;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ajuda-whatsapp-cta:hover {
  transform: translateY(-2px);
  border-color: #25d366;
}

.ajuda-whatsapp-cta strong {
  font-size: 14.5px;
  color: var(--colors-ink);
  display: block;
}

.ajuda-whatsapp-cta span {
  font-size: 12.5px;
  color: var(--colors-ink-mute);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ajuda-channels-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ajuda-body-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ajuda-form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .ajuda-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* -------------------------------------------------------------
 * PÁGINA DE ONBOARDING & DIAGNÓSTICO (assinatura.php)
 * ------------------------------------------------------------- */
.onboarding-container {
  max-width: 760px;
  margin: 0 auto;
}

/* Progress Tracker */
.onboarding-progress-bar-wrap {
  position: relative;
  margin-bottom: 40px;
  padding: 0 10px;
}

.onboarding-progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.progress-step .step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid var(--colors-hairline-input);
  color: var(--colors-ink-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.progress-step.active .step-num {
  background-color: var(--colors-primary);
  border-color: var(--colors-primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(13, 37, 61, 0.15);
}

.progress-step .step-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--colors-ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-step.active .step-label {
  color: var(--colors-ink);
  font-weight: 600;
}

.progress-line-bg {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  height: 2px;
  background-color: var(--colors-hairline);
  z-index: 1;
}

.progress-line-fill {
  width: 0%;
  height: 100%;
  background-color: var(--colors-primary);
  transition: width 0.3s ease;
}

/* Card and Steps */
.onboarding-card {
  background: var(--colors-canvas);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-xl);
  padding: 40px;
  box-shadow: var(--shadow-level-2);
}

.onboarding-step-pane {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.onboarding-step-pane.active {
  display: block;
}

.onboarding-step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--colors-ink);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
  display: flex;
  align-items: center;
}

.onboarding-step-desc {
  font-size: 14px;
  color: var(--colors-ink-mute);
  margin-bottom: 32px;
}

/* Onboarding Custom Fields */
.onboarding-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ob-checkbox-card {
  border: 1px solid var(--colors-hairline-input);
  border-radius: var(--rounded-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background-color: var(--colors-canvas);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.ob-checkbox-card:hover {
  background-color: var(--colors-canvas-soft);
}

.ob-checkbox-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.ob-checkbox-card span {
  font-size: 14px;
  font-weight: 500;
  color: var(--colors-ink-secondary);
}

.onboarding-actions-row {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid var(--colors-hairline);
  padding-top: 24px;
}

/* Success State */
.onboarding-success-pane {
  text-align: center;
  animation: fadeIn 0.4s ease forwards;
}

.success-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #f4fbf7;
  color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px auto;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.1);
}

.onboarding-success-pane h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--colors-ink);
  margin-bottom: 12px;
}

.onboarding-success-pane p {
  font-size: 15px;
  color: var(--colors-ink-secondary);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

.success-actions-box {
  margin-top: 36px;
  background: var(--colors-canvas-soft);
  border: 1px solid var(--colors-hairline);
  border-radius: var(--rounded-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-actions-box p {
  font-size: 14px;
  color: var(--colors-ink);
}

@media (max-width: 768px) {
  .onboarding-card {
    padding: 24px 20px;
  }
  .onboarding-checkbox-grid {
    grid-template-columns: 1fr;
  }
  .progress-step .step-label {
    display: none;
  }
}