/* =============================================
   EXIT INTENT POPUP
   ============================================= */

.exit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(3px);
}

.exit-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.exit-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  padding: 40px 40px 36px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.exit-modal-overlay.active .exit-modal {
  transform: translateY(0) scale(1);
}

.exit-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
}

.exit-modal-close:hover {
  background: var(--gray-200);
  color: var(--primary);
}

.exit-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37, 211, 102, 0.1);
  color: #1a9e52;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.exit-modal-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 8px;
  line-height: 1.25;
}

.exit-modal-title span {
  color: var(--accent);
}

.exit-modal-subtitle {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin: 0 0 24px;
  line-height: 1.6;
}

.exit-modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exit-modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.exit-modal-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--primary);
  background: var(--gray-100);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}

.exit-modal-input:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.12);
}

.exit-modal-input::placeholder {
  color: var(--gray-400);
}

.exit-modal-input.exit-input-error {
  border-color: #e53e3e;
  background: #fff5f5;
}

.exit-modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 2px 0;
}

.exit-modal-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.exit-modal-consent label {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.55;
  cursor: pointer;
}

.exit-modal-submit {
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.exit-modal-submit:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.exit-modal-skip {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-400);
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
}

.exit-modal-skip:hover {
  color: var(--gray-600);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .exit-modal { padding: 32px 24px 28px; }
  .exit-modal-row { grid-template-columns: 1fr; }
  .exit-modal-title { font-size: 1.375rem; }
}

/* =============================================
   PAGE HEADER — subtítulo
   ============================================= */

.page-header-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: 400;
}


/* =============================================
   SOLUTIONS NAV — barra de navegação rápida
   ============================================= */

.solutions-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 80px;
  z-index: 90;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.solutions-nav-list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.solutions-nav-list::-webkit-scrollbar {
  display: none;
}

.solutions-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-500);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.solutions-nav-item i {
  font-size: 0.875rem;
}

.solutions-nav-item:hover,
.solutions-nav-item.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (max-width: 768px) {
  .solutions-nav-item {
    padding: 14px 20px;
    font-size: 0.875rem;
  }
}


/* =============================================
   SOL-GRID — layout 2 colunas das seções
   ============================================= */

.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sol-grid-reversed {
  /* imagem à esquerda, texto à direita — ordem natural no HTML */
}

.sol-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.sol-text {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
}

.sol-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

@media (max-width: 992px) {
  .sol-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sol-title {
    font-size: 1.875rem;
  }
}


/* =============================================
   PDV MOCKUP — tela de caixa codada
   ============================================= */

.pdv-mockup {
  background: #0D1B2A;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(74, 144, 217, 0.2);
}

.pdv-mockup-header {
  background: #0A2540;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.pdv-mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pdv-mockup-dots span:nth-child(1) { background: #FF5F57; }
.pdv-mockup-dots span:nth-child(2) { background: #FFBD2E; }
.pdv-mockup-dots span:nth-child(3) { background: #28CA41; }

.pdv-mockup-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.pdv-mockup-body {
  padding: 20px 20px 8px;
}

.pdv-product-list {
  margin-bottom: 4px;
}

.pdv-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  font-family: 'Montserrat', sans-serif;
}

.pdv-product.highlight {
  background: rgba(74, 144, 217, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.pdv-product span:last-child {
  font-weight: 700;
  color: var(--accent);
}

.pdv-product.highlight span:last-child {
  color: var(--accent-light);
}

.pdv-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 12px 0;
}

.pdv-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(74, 144, 217, 0.1);
  border-radius: 10px;
  margin-bottom: 16px;
  border: 1px solid rgba(74, 144, 217, 0.2);
}

.pdv-total-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
}

.pdv-total-value {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.pdv-approved {
  font-size: 0.75rem;
  color: #4FFFB0;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdv-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.pdv-pay-btn {
  padding: 12px 4px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

.pdv-pay-btn i {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.pdv-pay-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.pdv-offline-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4FFFB0;
  font-family: 'Montserrat', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(79, 255, 176, 0.04);
}


/* =============================================
   TEF MOCKUP — conciliação de cartões
   ============================================= */

.tef-mockup {
  background: #0D1B2A;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(74, 144, 217, 0.2);
  max-width: 460px;
  margin: 0 auto;
}

.tef-mockup-header {
  background: #0A2540;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tef-mockup-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.3px;
}

.tef-mockup-body {
  padding: 24px;
}

.tef-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.tef-row-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.tef-row-value {
  font-size: 0.9375rem;
  font-weight: 700;
  font-feature-settings: "tnum";
}

.tef-row-value.ok { color: #4FF5B0; }
.tef-row-value.warn { color: #FF6B6B; }

.tef-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 0;
}

.tef-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.25);
  border-radius: 8px;
  font-size: 0.8125rem;
  color: #FF6B6B;
}

.tef-adquirentes {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.tef-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.5px;
}

/* =============================================
   PIX SPOTLIGHT — destaque com stats laterais
   ============================================= */

.pix-spotlight {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}

.pix-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pix-stat-item {
  padding: 28px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: background var(--transition-base);
}

.pix-stat-item:hover {
  background: rgba(74, 144, 217, 0.15);
  border-color: rgba(74, 144, 217, 0.3);
}

.pix-stat-num {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}

.pix-stat-lbl {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .pix-spotlight {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pix-stats-panel {
    flex-direction: row;
  }
  .pix-stat-item {
    flex: 1;
  }
}

@media (max-width: 576px) {
  .pix-stats-panel {
    flex-direction: column;
  }
}


/* =============================================
   MÓDULOS COM TABS
   ============================================= */

.modules-tabs-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.module-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--border-radius-full);
  border: 2px solid var(--gray-300);
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition-base);
}

.module-tab-btn i {
  font-size: 0.875rem;
}

.module-tab-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.module-tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.module-panel {
  display: none;
}

.module-panel.active {
  display: block;
  animation: fadeInUp 0.35s ease;
}

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


/* =============================================
   MÉTRICAS GLASS — entre hero e funcionalidades
   ============================================= */

.metrics-glass-section {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: 0;
  /* Negative margin puxa a seção por cima do final do hero */
  margin-top: -48px;
  margin-bottom: 0;
}

.metrics-glass-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: rgba(14, 32, 56, 0.78);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(74, 144, 217, 0.22);
  border-radius: 20px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  padding: 24px 40px;
}

.metric-glass-item {
  text-align: center;
  padding: 4px 16px;
}

.metric-glass-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.metric-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 4px;
}

.metric-number {
  font-size: 2.125rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.metric-suffix {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-light);
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (max-width: 992px) {
  .metrics-glass-section {
    margin-top: -40px;
  }
  .metrics-glass-card {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 24px;
    gap: 0;
  }
  .metric-glass-divider {
    display: none;
  }
  .metric-glass-item {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .metric-glass-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
  .metric-glass-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .metrics-glass-section {
    margin-top: -32px;
  }
  .metrics-glass-card {
    padding: 16px;
    border-radius: 16px;
  }
  .metric-number {
    font-size: 1.75rem;
  }
}


/* =============================================
   COMO FUNCIONA / STEPS
   ============================================= */

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
  opacity: 0.25;
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 88px;
  height: 88px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(74, 144, 217, 0.35);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.step-item:hover .step-number {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 16px 36px rgba(74, 144, 217, 0.45);
}

.step-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
  .steps-timeline::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .steps-timeline {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}


/* =============================================
   VÍDEO INSTITUCIONAL — SIMPLES
   ============================================= */

.video-simple-section {
  background: var(--gray-100);
  padding: 80px 0;
}

.video-simple-header {
  text-align: center;
  margin-bottom: 40px;
}

.video-simple-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1B3C61;
  margin-bottom: 0;
}

.video-simple-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-simple-frame {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.12);
}

.video-simple-preview {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-simple-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-simple-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-simple-preview:hover .video-simple-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.video-simple-play-btn {
  width: 72px;
  height: 72px;
  background: #1B3C61;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.video-simple-preview:hover .video-simple-play-btn {
  transform: scale(1.1);
  background: #2563a8;
}

.video-simple-play-btn i {
  font-size: 1.25rem;
  color: #fff;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .video-simple-section {
    padding: 60px 0;
  }
  .video-simple-header h2 {
    font-size: 1.5rem;
  }
  .video-simple-overlay {
    padding: 16px;
  }
  .video-simple-play-btn {
    width: 60px;
    height: 60px;
  }
  .video-simple-play-btn i {
    font-size: 1rem;
  }
}


/* =============================================
   DIFERENCIAIS CAROUSEL
   ============================================= */

.diferenciais-section {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.diferenciais-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  padding: 0 15px;
}

.diferenciais-carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  background: transparent;
  padding: 40px 80px;
  box-sizing: border-box;
  overflow: visible;
}

.diferenciais-carousel-wrapper::before,
.diferenciais-carousel-wrapper::after {
  content: '';
  flex-shrink: 0;
  width: 0;
  display: none;
}

.dif-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #4A90D9;
  background: #ffffff;
  color: #4A90D9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(74, 144, 217, 0.3);
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}

.dif-btn:hover {
  background: #4A90D9;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.dif-btn.dif-prev {
  left: 15px;
}

.dif-btn.dif-next {
  right: 15px;
}

.diferenciais-track-outer {
  flex: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px 0;
  margin: -20px 0;
}

.diferenciais-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  overflow: visible;
}

.diferencial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(27,60,97,0.07);
  transition: all 0.3s ease;
  border: 1px solid #edf2f8;
  position: relative;
  z-index: 10;
}

.diferencial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(27, 60, 97, 0.1);
  border-color: rgba(74, 144, 217, 0.3);
  z-index: 100;
}

.diferencial-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1B3C61 0%, #2B4D79 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(27, 60, 97, 0.25);
}

.diferencial-icon svg {
  width: 26px;
  height: 26px;
  stroke: #ffffff !important;
  fill: none;
}

.diferencial-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1B3C61 !important;
  margin-bottom: 12px;
  line-height: 1.3;
}

.diferencial-card p {
  font-size: 0.9rem;
  color: #4a5568 !important;
  line-height: 1.7;
  margin: 0;
}

.dif-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  position: relative;
  z-index: 100;
}

.dif-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e0;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.dif-dot:hover {
  background: #4A90D9;
}

.dif-dot.active {
  background: #1B3C61;
  transform: scale(1.3);
}

@media (max-width: 992px) {
  .diferenciais-carousel-wrapper {
    padding: 40px 60px;
  }
  .diferencial-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 240px;
  }
}

@media (max-width: 640px) {
  .diferenciais-carousel-wrapper {
    padding: 40px 50px;
    gap: 12px;
  }
  .diferencial-card {
    flex: 0 0 260px;
    min-width: 260px;
  }
  .dif-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .dif-btn.dif-prev {
    left: 0;
  }
  .dif-btn.dif-next {
    right: 0;
  }
}

.testimonials-track-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  user-select: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #F6C90E;
  font-size: 0.875rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.85;
  flex: 1;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--primary);
  font-weight: 700;
}

.testimonial-author-info span {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 0.875rem;
}

.testimonial-btn:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--border-radius-full);
  background: var(--gray-300);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--accent);
  width: 24px;
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}


/* =============================================
   FAQ / ACCORDION
   ============================================= */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.faq-item.open {
  box-shadow: 0 4px 20px rgba(74, 144, 217, 0.1);
  border-color: rgba(74, 144, 217, 0.35);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-item.open .faq-question {
  background: rgba(74, 144, 217, 0.04);
}

.faq-question-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

.faq-icon {
  color: var(--accent);
  font-size: 0.875rem;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin: 0;
}


/* =============================================
   MISSÃO / VISÃO / VALORES — cards separados
   ============================================= */

.section-mvv {
  background: var(--gray-50);
  padding: 80px 0;
}

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

.mvv-panel {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 40px 32px;
  border: 1px solid rgba(74, 144, 217, 0.1);
  box-shadow: 0 8px 32px rgba(27, 60, 97, 0.07);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

/* fio colorido no topo de cada card */
.mvv-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.mvv-missao::before { background: var(--primary); }
.mvv-visao::before  { background: var(--accent); }
.mvv-valores::before{ background: var(--gradient-accent); }

.mvv-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(27, 60, 97, 0.13);
}

.mvv-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.mvv-missao .mvv-icon {
  background: rgba(27, 60, 97, 0.08);
  color: var(--primary);
}

.mvv-visao .mvv-icon {
  background: rgba(74, 144, 217, 0.1);
  color: var(--accent);
}

.mvv-valores .mvv-icon {
  background: rgba(74, 144, 217, 0.1);
  color: var(--accent);
}

.mvv-panel h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0;
  line-height: 1.2;
}

.mvv-panel p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 0;
}

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

.mvv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
}

.mvv-list li i {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .section-mvv {
    padding: 60px 0;
  }
}


/* =============================================
   RESULTADOS — stats em cards limpos, sem grade
   ============================================= */

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

.stats-block {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.stats-block:hover {
  background: rgba(74, 144, 217, 0.09);
  border-color: rgba(74, 144, 217, 0.22);
  transform: translateY(-4px);
}

.stats-icon {
  font-size: 1.375rem;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 14px;
}

.stats-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.stats-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.stats-suffix {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent-light);
}

.stats-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-block-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-number {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .stats-block-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stats-block {
    padding: 28px 16px;
  }
}


/* =============================================
   INTEGRAÇÕES / PARCEIROS
   ============================================= */

.section-integrations {
  background: var(--gray-100);
  padding: 36px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.integrations-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.integrations-list {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
  align-items: center;
}

.integration-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.integration-chip i {
  color: var(--accent);
  font-size: 0.8125rem;
}

.integration-chip:hover {
  border-color: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 217, 0.15);
}

/* ─── FEATURES V2 ────────────────────────────────────── */

.features-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e2eaf4;
  border-radius: 16px;
  overflow: hidden;
}

.fv2-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  background: #fff;
  border-right: 1px solid #e2eaf4;
  border-bottom: 1px solid #e2eaf4;
  transition: background 0.18s;
}

.fv2-card:nth-child(3n) { border-right: none; }
.fv2-card:nth-child(n+4) { border-bottom: none; }
.fv2-card:hover { background: #f5f9ff; }

.fv2-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.fv2-icon--dark { background: #1b3c61; }
.fv2-icon--mid  { background: #2563a8; }

.fv2-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1b3c61;
  margin-bottom: 8px;
  line-height: 1.3;
}

.fv2-body p {
  font-size: 0.875rem;
  color: #6b7a8d;
  line-height: 1.65;
}

/* ─── TESTIMONIALS V2 ────────────────────────────────── */

.testi-header-badge {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #4A90D9 0%, #2563a8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(74, 144, 217, 0.3);
}

.testi-header-badge i {
  font-size: 1.5rem;
  color: #fff;
}

.section-header .section-subtitle strong {
  color: var(--accent);
  font-weight: 700;
}

.testi-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.testi-v2-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #e8f0f8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.testi-v2-card:hover {
  box-shadow: 0 12px 40px rgba(74,144,217,0.15);
  transform: translateY(-4px);
}

.testi-v2-card--featured {
  border: 2px solid #4a90d9;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.testi-v2-card--featured::before {
  content: 'Destaque';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4A90D9 0%, #2563a8 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 0 0 10px 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.testi-v2-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testi-v2-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  display: flex;
  gap: 2px;
}

.testi-v2-quote-icon {
  font-size: 1.6rem;
  color: #e2eaf4;
}

.testi-v2-text {
  font-size: 0.95rem;
  color: #3a4e66;
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}

.testi-v2-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f0f6ff;
}

.testi-v2-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b3c61, #4a90d9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74, 144, 217, 0.25);
}

.testi-v2-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1b3c61;
}

.testi-v2-info span {
  font-size: 0.8rem;
  color: #8a9ab0;
}

.testi-v2-source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: #f8faff;
  border-radius: 14px;
  border: 1px solid #e2eaf4;
  font-size: 0.875rem;
  color: #5a6a7d;
}

.testi-v2-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  padding-left: 18px;
  border-left: 1px solid #d8e6f5;
}

.testi-v2-rating strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1b3c61;
}

.testi-v2-stars-sm {
  color: #f59e0b;
  font-size: 0.8rem;
  display: flex;
  gap: 1px;
}

/* ─── CTA COM FOTO DE FUNDO ──────────────────────────── */

.cta-photo-section {
  position: relative;
  padding: 100px 0;
  background-image: url('https://images.unsplash.com/photo-1604719312566-8912e9227c6a?w=1600&h=700&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.cta-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7,21,43,0.93) 0%, rgba(13,31,69,0.88) 100%);
  z-index: 0;
}

.cta-photo-section .container {
  position: relative;
  z-index: 1;
}

.cta-photo-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(74,144,217,0.2);
  border: 1px solid rgba(74,144,217,0.4);
  color: #7db8f0;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}

.cta-photo-badge i {
  font-size: 0.7rem;
}

.cta-photo-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-photo-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-photo-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-main-btn {
  background: linear-gradient(135deg, #4A90D9 0%, #6BA8E5 100%);
  padding: 18px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(74, 144, 217, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-main-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.cta-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(74, 144, 217, 0.5);
}

.cta-main-btn:hover::before {
  left: 100%;
}

.cta-photo-trust {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.cta-trust-item:hover {
  background: rgba(74, 144, 217, 0.15);
}

.cta-trust-item i {
  color: #4a90d9;
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(74, 144, 217, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── FAQ V2 (2 colunas) ─────────────────────────────── */

.faq-v2-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 72px;
  align-items: start;
}

.faq-v2-header {
  position: sticky;
  top: 100px;
}

.faq-v2-header-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(27, 60, 97, 0.1);
  border: 1px solid rgba(74, 144, 217, 0.1);
  text-align: center;
}

.faq-v2-icon-wrapper {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #4A90D9 0%, #2563a8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(74, 144, 217, 0.3);
}

.faq-v2-icon-wrapper i {
  font-size: 2rem;
  color: var(--white);
}

.faq-v2-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1b3c61;
  line-height: 1.22;
  margin: 0 0 14px;
}

.faq-v2-header p {
  font-size: 0.95rem;
  color: #5a6a7d;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ─── RESPONSIVE NOVOS COMPONENTES ──────────────────── */

@media (max-width: 1100px) {
  .faq-v2-layout { gap: 48px; }
  .cta-photo-inner { gap: 40px; }
}

@media (max-width: 992px) {
  .features-v2-grid { grid-template-columns: repeat(2, 1fr); }
  .fv2-card:nth-child(3n) { border-right: 1px solid #e2eaf4; }
  .fv2-card:nth-child(2n) { border-right: none; }
  .fv2-card:nth-child(n+5) { border-bottom: none; }
  .fv2-card:nth-child(3), .fv2-card:nth-child(4) { border-bottom: 1px solid #e2eaf4; }
  .testi-v2-grid { grid-template-columns: 1fr; }
  .cta-photo-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-v2-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-v2-header { position: static; }
  .cta-photo-section { background-attachment: scroll; }
}

@media (max-width: 576px) {
  .faq-v2-header-content {
    padding: 32px 24px;
  }
  .faq-v2-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  .faq-v2-icon-wrapper i {
    font-size: 1.6rem;
  }
  .faq-v2-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .features-v2-grid { grid-template-columns: 1fr; }
  .fv2-card { border-right: none !important; border-bottom: 1px solid #e2eaf4 !important; }
  .fv2-card:last-child { border-bottom: none !important; }
  .testi-v2-source { flex-direction: column; text-align: center; }
  .testi-v2-rating { border-left: none; padding-left: 0; margin-left: 0; }
  .cta-photo-actions { flex-direction: column; }
  .cta-photo-actions .btn { justify-content: center; }
  .cta-photo-inner { gap: 40px; }
  .cta-photo-text h2 { font-size: 1.8rem; }
  .cta-main-btn {
    width: 100%;
    justify-content: center;
  }
  .cta-photo-trust {
    padding: 28px 24px;
  }
}

@media (max-width: 992px) {
  .integrations-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .integrations-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .integration-chip {
    font-size: 0.75rem;
    padding: 6px 0;
  }
}


/* =============================================
   CTA BANNER
   ============================================= */

.section-cta-banner {
  background: var(--gradient-accent);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.section-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -4%;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-banner-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
  color: white;
}

@media (max-width: 768px) {
  .cta-banner-content h2 {
    font-size: 1.75rem;
  }
  .cta-banner-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-banner-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}


/* =============================================
   SOBRE — SEÇÃO INTRO (override)
   ============================================= */

#sobre-intro .about-grid {
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: center;
}

#sobre-intro .about-image-main {
  width: 100%;
  display: block;
}

#sobre-intro .about-content h2 {
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 16px;
}

#sobre-intro .about-content p {
  font-size: 0.8125rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

#sobre-intro .about-content .btn {
  font-size: 0.875rem;
  padding: 10px 22px;
}

@media (max-width: 992px) {
  #sobre-intro .about-grid {
    grid-template-columns: 1fr;
  }
}


/* =============================================
   HOME — SEÇÃO ABOUT (override)
   ============================================= */

#about .about-grid {
  grid-template-columns: 1.5fr 1fr;
  gap: 72px;
  align-items: center;
}

#about .about-image-main {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

#about .about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#about .about-content h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

#about .about-content p {
  font-size: 0.875rem;
  margin-bottom: 14px;
  line-height: 1.75;
}

#about .about-content .btn {
  margin-top: 8px;
  align-self: flex-start;
}

@media (max-width: 992px) {
  #about .about-grid {
    grid-template-columns: 1fr;
  }
}


/* =============================================
   HERO — MOCKUP REAL
   ============================================= */

.hero-visual-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.hero-screen-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(74, 144, 217, 0.7);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-align: center;
}

.hero-screen-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.hero-cards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 420px;
  margin-top: -56px;
  position: relative;
  z-index: 2;
}

.hero-mini-card {
  background: #0D1B2A;
  border: 1.5px solid rgba(74, 144, 217, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.hero-mini-top {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

.hero-mini-value {
  font-size: 1rem;
  font-weight: 900;
  color: #4A90D9;
}

.hero-mini-btn {
  background: #4A90D9;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 4px 8px;
  text-align: center;
  letter-spacing: 0.5px;
}

.hero-mini-badge {
  font-size: 1.125rem;
  font-weight: 900;
  color: #4A90D9;
  margin-top: 8px;
}

.hero-approved-pill {
  background: #071828;
  border: 1.2px solid #4FFFB0;
  border-radius: 999px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4FFFB0;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-approved-dot {
  width: 8px;
  height: 8px;
  background: #4FFFB0;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-cards-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 420px;
  margin-top: 6px;
  padding: 0 4px;
}

.hero-cards-labels span {
  font-size: 0.6875rem;
  color: rgba(74, 144, 217, 0.7);
  font-weight: 500;
}


/* =============================================
   LOGO FLUTUANTE ENTRE SEÇÕES
   ============================================= */

.section-logo-divider {
  position: relative;
  z-index: 10;
  height: 0;
  pointer-events: none;
}

.logo-flutuante {
  position: absolute;
  top: -90px;
  right: 80px;
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(27, 60, 97, 0.18));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}


/* =============================================
   CONTATO — PRÓXIMOS PASSOS
   ============================================= */

.next-steps-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.next-steps-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  z-index: 0;
}

.next-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.next-step-number {
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(74, 144, 217, 0.3);
  border: 3px solid var(--white);
}

.next-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.next-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* =============================================
   CONTATO — HORÁRIO (SCHEDULE TABLE)
   ============================================= */

.schedule-section {
  background: var(--white);
  padding: 80px 0;
}

.contact-schedule {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(27, 60, 97, 0.08);
  border: 1px solid rgba(74, 144, 217, 0.1);
}

.schedule-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 20px 32px;
  gap: 24px;
  border-bottom: 1px solid rgba(74, 144, 217, 0.07);
  transition: background var(--transition-fast);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row:hover {
  background: rgba(74, 144, 217, 0.03);
}

.schedule-label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.schedule-icon {
  width: 40px;
  height: 40px;
  background: rgba(74, 144, 217, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.schedule-label strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
}

.schedule-label span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

.schedule-hours {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  background: rgba(74, 144, 217, 0.08);
  padding: 6px 14px;
  border-radius: var(--border-radius-full);
}


/* =============================================
   CONTATO — MAPA
   ============================================= */

.map-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.map-wrapper {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(27, 60, 97, 0.1);
  border: 1px solid rgba(74, 144, 217, 0.1);
  height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* =============================================
   CONTATO — RESPONSIVE
   ============================================= */

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

  .next-steps-grid::before {
    display: none;
  }

  .schedule-row {
    padding: 16px 20px;
  }

  .schedule-hours {
    font-size: 0.8125rem;
  }

  .map-wrapper {
    height: 300px;
  }
}


/* =============================================
   MOBILE — CORREÇÕES GERAIS
   ============================================= */

/* --- HEADER / LOGO --- */
@media (max-width: 992px) {
  .header-container {
    padding: 0 16px;
  }

  .header-container .logo img {
    height: 38px !important;
  }

  /* Ocultar botão CTA do header e do menu mobile */
  .mobile-nav-cta,
  .nav-cta {
    display: none !important;
  }
}

/* --- HERO --- */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 60px;
  }

  .hero-text h1 {
    font-size: 1.875rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* --- PAGE HEADER (sobre / soluções / contato) --- */
@media (max-width: 768px) {
  .page-header {
    padding: 120px 0 56px;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

/* --- LOGO FLUTUANTE --- */
@media (max-width: 768px) {
  .logo-flutuante {
    width: 120px;
    height: 120px;
    right: 16px;
    top: -60px;
  }
}

@media (max-width: 480px) {
  .section-logo-divider {
    display: none;
  }
}

/* --- HOME ABOUT (#about) --- */
@media (max-width: 768px) {
  #about .about-grid {
    grid-template-columns: 1fr;
  }

  #about .about-content {
    text-align: center;
    align-items: center;
  }

  #about .about-content h2 {
    font-size: 1.5rem;
  }

  #about .about-content p {
    font-size: 0.875rem;
  }

  #about .about-content .btn {
    align-self: center;
  }
}

/* --- CASE SECTION (home) --- */
@media (max-width: 992px) {
  .case-content {
    text-align: center;
  }

  .case-stats {
    justify-content: center;
  }
}

/* --- SOBRE INTRO (#sobre-intro) --- */
@media (max-width: 768px) {
  #sobre-intro .about-content {
    text-align: center;
    align-items: center;
  }

  #sobre-intro .about-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  #sobre-intro .about-content p {
    font-size: 0.875rem;
  }

  #sobre-intro .about-content .btn {
    align-self: center;
  }
}

/* --- SCHEDULE (contato) --- */
@media (max-width: 576px) {
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 18px;
  }

  .schedule-hours {
    align-self: flex-start;
  }
}

/* --- SOLUCOES: MÓDULOS TABS --- */
@media (max-width: 768px) {
  .modules-tabs-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .modules-tab-btn {
    font-size: 0.8125rem;
    padding: 8px 16px;
  }
}

/* --- SOLUCOES: PDV MOCKUP --- */
@media (max-width: 768px) {
  .pdv-mockup {
    font-size: 0.8rem;
  }

  .pdv-mockup-body {
    padding: 12px;
  }
}

/* --- PIX SPOTLIGHT --- */
@media (max-width: 576px) {
  .pix-stat-num {
    font-size: 1.75rem;
  }
}

/* --- METRICS GLASS CARD --- */
@media (max-width: 480px) {
  .metrics-glass-card {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
    gap: 0;
  }

  .metric-glass-item {
    padding: 14px 10px;
  }

  .metric-number {
    font-size: 1.5rem;
  }

  .metric-label {
    font-size: 0.7rem;
  }
}

/* --- MVV GRID --- */
@media (max-width: 576px) {
  .mvv-panel {
    padding: 28px 20px;
  }
}

/* --- STATS BLOCK (sobre) --- */
@media (max-width: 480px) {
  .stats-block-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stats-block {
    padding: 24px 12px;
  }
}

/* --- INTEGRATIONS CHIPS --- */
@media (max-width: 576px) {
  .integrations-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .integration-chip {
    font-size: 0.7rem;
    padding: 8px 4px;
  }
}

/* --- FAQ --- */
@media (max-width: 768px) {
  .faq-question {
    font-size: 0.9375rem;
    padding: 16px 18px;
  }

  .faq-answer p {
    font-size: 0.875rem;
    padding: 0 18px 16px;
  }
}

/* --- DEPOIMENTOS --- */
@media (max-width: 480px) {
  .testimonial-text {
    font-size: 0.9rem;
  }

  .testimonials-controls {
    gap: 12px;
  }
}

/* --- PRÓXIMOS PASSOS (contato) --- */
@media (max-width: 480px) {
  .next-steps-section {
    padding: 60px 0;
  }

  .next-step-number {
    width: 56px;
    height: 56px;
    font-size: 1.125rem;
  }
}

/* --- FOOTER --- */
@media (max-width: 576px) {
  .footer-top {
    padding: 48px 0 32px;
  }

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

  .footer-bottom-links {
    justify-content: center;
  }
}

/* --- SECTIONS GERAIS --- */
@media (max-width: 576px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.625rem;
  }

  .section-badge {
    font-size: 0.75rem;
  }

  .container {
    padding: 0 16px;
  }
}


/* =============================================
   TYPEWRITER — efeito de digitação no hero
   ============================================= */

#typewriter-word {
  color: var(--accent);
  border-right: 3px solid var(--accent);
  padding-right: 4px;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  0%, 100% { border-color: var(--accent); }
  50% { border-color: transparent; }
}


/* =============================================
   HEADER PHONE — telefone no header
   ============================================= */

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.header-phone:hover { color: var(--white); }

.header-phone i { color: var(--accent); font-size: 0.8rem; }

@media (max-width: 992px) { .header-phone { display: none; } }


/* =============================================
   CLIENTS STRIP — carrossel de logos
   ============================================= */

.clients-strip {
  background: var(--white);
  padding: 32px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.clients-strip-label {
  text-align: center;
  margin-bottom: 20px;
}

.clients-strip-label span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.clients-marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.clients-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.clients-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.clients-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  white-space: nowrap;
  border-right: 1px solid var(--gray-100);
}

.client-logo-item i {
  font-size: 1.25rem;
  color: var(--primary);
  opacity: 0.4;
}

.client-logo-item span {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: -0.3px;
}


/* =============================================
   SEGMENTS — seção de segmentos
   ============================================= */

.segments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  perspective: 1200px;
}

.segment-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.35s ease, border-color 0.35s ease,
              transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Social tiles — linha de destaque no topo */
.segment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Social tiles — sombra lateral no hover */
.segment-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 8px 12px 32px rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* Social tiles 3D hover effect */
.segment-card:hover {
  background: rgba(74,144,217,0.12);
  border-color: rgba(74,144,217,0.35);
  transform: translateY(-10px) rotateX(4deg) rotateY(-2deg);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(74,144,217,0.2);
}

.segment-card:hover::before { opacity: 1; }
.segment-card:hover::after  { opacity: 1; }

.segment-icon {
  width: 48px;
  height: 48px;
  background: rgba(74,144,217,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
}

.segment-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.segment-card p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  flex: 1;
}

.segment-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.segment-link:hover { gap: 10px; }

@media (max-width: 992px) {
  .segments-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 576px) {
  .segments-grid { grid-template-columns: 1fr; }
}


/* =============================================
   BLOG TEASER — grid de artigos
   ============================================= */

.blog-section .section-header {
  margin-bottom: 48px;
}

.blog-header-badge {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #4A90D9 0%, #2563a8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(74, 144, 217, 0.3);
}

.blog-header-badge i {
  font-size: 1.5rem;
  color: #fff;
}

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

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(74, 144, 217, 0.1);
  box-shadow: 0 4px 24px rgba(27,60,97,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(27,60,97,0.14);
  border-color: rgba(74, 144, 217, 0.2);
}

.blog-card-img {
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.blog-img-1 { background: linear-gradient(135deg, #1a3556 0%, #2d6a9f 100%); }
.blog-img-2 { background: linear-gradient(135deg, #0d3b2e 0%, #1a7a52 100%); }
.blog-img-3 { background: linear-gradient(135deg, #3b1a1a 0%, #8b3a3a 100%); }

.blog-tag {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.blog-meta {
  font-size: 0.8rem;
  color: #8a9ab0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.blog-meta i { color: var(--accent); font-size: 0.75rem; }

.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b3c61;
  line-height: 1.5;
  margin-bottom: 0;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: #5a6a7d;
  line-height: 1.7;
  margin-bottom: 0;
  flex: 1;
}

.blog-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: #4A90D9;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: all 0.2s ease;
  padding-top: 12px;
  border-top: 1px solid #f0f6ff;
}

.blog-link:hover {
  gap: 12px;
  color: #2563a8;
}

.blog-link i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.blog-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 992px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-body { padding: 24px; }
}


/* =============================================
   NÓS LIGAMOS — seção de callback
   ============================================= */

.nos-ligamos-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.nos-ligamos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nos-ligamos-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 16px 0 16px;
  line-height: 1.25;
}

.nos-ligamos-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.nos-ligamos-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nos-ligamos-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--navy);
  font-weight: 500;
}

.nos-ligamos-trust-item i { color: var(--accent); }

.nos-ligamos-form-inner {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 36px;
  box-shadow: 0 8px 40px rgba(27,60,97,0.08);
  border: 1px solid rgba(74,144,217,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 992px) {
  .nos-ligamos-grid { grid-template-columns: 1fr; gap: 40px; }
}


/* =============================================
   FOOTER REESTRUTURADO — grid 5 colunas
   ============================================= */

.footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr !important;
  gap: 48px !important;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.footer-contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}

.footer-contact-info a:hover { color: var(--white); }

.footer-contact-info i { color: var(--accent); width: 14px; }

.footer-suporte-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(74,144,217,0.1);
  border: 1px solid rgba(74,144,217,0.2);
  border-radius: var(--border-radius);
  padding: 12px;
  margin-top: 16px;
}

.footer-suporte-badge i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 2px;
}

.footer-suporte-badge strong {
  font-size: 0.875rem;
  color: var(--white);
  display: block;
}

.footer-suporte-badge span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  margin-top: 2px;
  display: block;
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr !important; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr !important; }
}




/* =============================================
   CTA BANNER SECTION
   ============================================= */

.cta-banner-section {
  background: linear-gradient(135deg, #1b3c61 0%, #0e2540 50%, #1a5276 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(74,144,217,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(74,144,217,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74,144,217,0.2);
  border: 1px solid rgba(74,144,217,0.35);
  color: #7db8f0;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.cta-banner-text {
  flex: 1;
}

.cta-banner-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-banner-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 540px;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.btn-white {
  background: #fff;
  color: #1b3c61;
  border: 2px solid #fff;
  font-weight: 700;
}

.btn-white:hover {
  background: #f0f6ff;
  color: #1b3c61;
}

.btn-outline-white-cta {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  font-weight: 600;
}

.btn-outline-white-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

@media (max-width: 900px) {
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cta-banner-text p { margin: 0 auto; }
  .cta-banner-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .cta-banner-section { padding: 60px 0; }
  .cta-banner-text h2 { font-size: 1.5rem; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }
}


/* =============================================
   CLIENTES QUE CONFIAM
   ============================================= */

.clientes-confiam-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.clientes-confiam-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.clientes-confiam-text h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy);
  margin: 12px 0 10px;
  line-height: 1.2;
}

.clientes-confiam-text p {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 420px;
}

.clientes-confiam-stats {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
  align-items: center;
}

.cc-stat {
  text-align: center;
}

.cc-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.cc-stat span {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.clientes-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cliente-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s;
  background: var(--white);
  cursor: default;
}

.cliente-logo-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(74,144,217,0.12);
  transform: translateY(-2px);
}

.cliente-logo-card i {
  font-size: 1.8rem;
  color: var(--accent);
  opacity: 0.7;
}

.cliente-logo-card span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  line-height: 1.4;
}

@media (max-width: 992px) {
  .clientes-confiam-header { flex-direction: column; gap: 24px; }
  .clientes-logos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 576px) {
  .clientes-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .clientes-confiam-stats { gap: 20px; }
  .cc-stat strong { font-size: 1.5rem; }
}


/* =============================================
   TESTIMONIALS — fundo com textura
   ============================================= */

.testimonials-photo-bg {
  position: relative;
  background-color: #fff;
  background-image: url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=1600&h=900&fit=crop&q=30');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonials-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.95);
  pointer-events: none;
}

.testimonials-photo-bg .container {
  position: relative;
}


/* =============================================
   FEATURES — fundo sutil com foto
   ============================================= */

.features-photo-section {
  position: relative;
  background-color: #f8faff;
  background-image: url('https://images.unsplash.com/photo-1604719312566-8912e9227c6a?w=1600&h=900&fit=crop&q=40');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.features-photo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 255, 0.94);
  pointer-events: none;
}

.features-photo-section .container {
  position: relative;
}


/* =============================================
   HERO SPLIT WRAPPER — Confirmação da Marca
   ============================================= */

#hero-split-wrapper {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  width: 100%;
  z-index: 0;
  overflow: hidden; 
  position: relative;
  background: linear-gradient(90deg, #1B3C61 var(--split-position), #ffffff var(--split-position));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  --split-position: 38%;
}

#hero-split-wrapper * {
  box-sizing: border-box;
}

#hero-split-wrapper .main-content {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

#hero-split-wrapper .col-image {
  width: 45%;
  padding-right: 20px;
  z-index: 0;
}

#hero-split-wrapper .col-image img {
  width: 100%;
  max-width: 550px;
  height: 350px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
  box-shadow: 15px 15px 40px rgba(0,0,0,0.2);
  transform: translateX(-5%); 
  margin-top: 30px;
}

#hero-split-wrapper .col-text {
  width: 55%;
  padding-left: 50px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#hero-split-wrapper h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

#hero-split-wrapper h2 span {
  color: #4A90D9;
}

#hero-split-wrapper p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

#hero-split-wrapper .logos-section {
  background-color: #4A90D9;
  height: 120px; 
  width: calc(100% - var(--split-position));
  margin-left: var(--split-position);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  overflow: hidden; 
}

#hero-split-wrapper .logos-label {
  background-color: #4A90D9; 
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.3;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 10; 
  box-shadow: 5px 0 10px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.logos-carousel-wrapper {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.logos-carousel {
  overflow: hidden;
  width: 100%;
}

.logos-track {
  display: flex;
  gap: 24px;
  animation: scrollLogos 18s linear infinite;
  will-change: transform;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

.logo-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  min-width: 120px;
  transition: all 0.3s ease;
}

.logo-card:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.05);
}

.logo-card i {
  font-size: 1.75rem;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-card span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  #hero-split-wrapper {
    background: #ffffff;
    height: auto;
  }

  #hero-split-wrapper::before {
    content: '';
    display: block;
    width: 100%;
    height: 150px;
    background-color: #1B3C61;
    position: absolute;
    top: 0;
    left: 0;
  }

  #hero-split-wrapper .main-content {
    flex-direction: column;
    padding-top: 40px;
  }

  #hero-split-wrapper .col-image {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  #hero-split-wrapper .col-image img {
    transform: none; 
    margin-bottom: 30px;
    height: auto;
    max-height: 300px;
  }

  #hero-split-wrapper .col-text {
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }

  #hero-split-wrapper h2 {
    font-size: 1.8rem;
  }

  #hero-split-wrapper .logos-section {
    width: 100%;
    margin-left: 0;
    height: auto;
    flex-direction: column;
    padding: 20px 0;
  }

  #hero-split-wrapper .logos-label {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    box-shadow: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 15px;
    height: auto;
  }

  .logo-card {
    min-width: 100px;
    padding: 12px 16px;
  }

  .logo-card i {
    font-size: 1.4rem;
  }
}


/* =============================================
   LOCALIDADE SECTION (sobre.html)
   ============================================= */

.localidade-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: stretch;
}

.localidade-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  margin-bottom: 0;
}

.localidade-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.localidade-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.localidade-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.localidade-item p,
.localidade-item a {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.localidade-item a:hover { color: var(--accent); }

.localidade-mapa {
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(27,60,97,0.1);
}

.localidade-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

@media (max-width: 900px) {
  .localidade-grid { grid-template-columns: 1fr; }
  .localidade-mapa { min-height: 320px; }
  .localidade-mapa iframe { min-height: 320px; }
}

@media (max-width: 480px) {
  .localidade-card { padding: 20px; }
  .localidade-mapa { min-height: 260px; }
  .localidade-mapa iframe { min-height: 260px; }
}


/* =============================================
   HERO V2 — foto full-width + overlay gradiente
   ============================================= */

.hero-v2 {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  border-radius: 0 40px 40px 0;
  background-color: #07152b;
}

/* Alturas específicas por página (desktop) */
.hero-sobre    { min-height: 78vh; }
.hero-segmento { min-height: 62vh; }
.hero-solucoes { min-height: 55vh; }
.hero-contato  { min-height: 55vh; }


/* fotos de fundo — duas camadas para crossfade suave */
.hero-v2-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 20% top;
  background-repeat: no-repeat;
  background-color: #07152b;
  z-index: 0;
  transition: opacity 0.3s ease;
}

/* overlay neutro — igual para todos os segmentos */
.hero-v2-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(8, 20, 45, 0.90) 0%,
    rgba(8, 20, 45, 0.70) 45%,
    rgba(8, 20, 45, 0.12) 78%,
    rgba(8, 20, 45, 0.00) 100%
  );
}

.hero-v2 .container {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 120px;
}

/* bloco de texto — coluna esquerda única */
.hero-v2-text {
  max-width: 600px;
}

/* breadcrumb / eyebrow */
.hero-v2-eyebrow {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-v2-eyebrow a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.hero-v2-eyebrow a:hover {
  color: rgba(255,255,255,0.8);
}

.hero-v2-text h1 {
  font-size: 3.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-v2-text h1 #typewriter-word {
  color: #4a90d9;
}

.hero-v2-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  margin-bottom: 28px;
}

/* lista de bullets */
.hero-v2-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-v2-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

.hero-v2-bullets li i {
  color: #4a90d9;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* CTA */
.hero-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


/* ── responsive ── */
@media (max-width: 1200px) {
  .hero-v2-text { max-width: 520px; }
  .hero-v2-text h1 { font-size: 2.9rem; }
}

@media (max-width: 992px) {
  .hero-v2 { min-height: 80vh; }
  .hero-v2-overlay { background: linear-gradient(to right, rgba(8,20,45,0.92) 0%, rgba(8,20,45,0.76) 60%, rgba(8,20,45,0.30) 100%); }
  .hero-v2-text { max-width: 100%; }
  .hero-v2-text h1 { font-size: 2.4rem; }
  .hero-v2 .container { padding-top: 130px; padding-bottom: 110px; }
}

@media (max-width: 768px) {
  .hero-v2 { min-height: 70vh; }
  .hero-v2-text h1 { font-size: 2rem; }
  .hero-v2-overlay { background: rgba(8,20,45,0.88); }
}

@media (max-width: 576px) {
  .hero-v2 .container { padding-top: 110px; padding-bottom: 90px; }
  .hero-v2-text h1 { font-size: 1.75rem; }
  .hero-v2-cta { justify-content: center; width: 100%; }
}

/* ══════════════════════════════════════════════════════
   BEFORE / AFTER — "Tudo que seu supermercado precisa"
   ══════════════════════════════════════════════════════ */

/* ba-section sobe atrás do card de métricas para eliminar o gap branco */
.ba-section {
  background: var(--gray-100);
  margin-top: -60px;
  padding-top: 160px;
  position: relative;
  z-index: 1;
}

.ba-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 48px;
  max-width: 940px;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
}

/* Toggle row */
.ba-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.ba-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-400);
  transition: color 0.3s ease;
  user-select: none;
}

.ba-label.active { color: var(--primary); }

.ba-toggle {
  position: relative;
  width: 56px;
  height: 28px;
  background: var(--gray-300);
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.35s ease;
  flex-shrink: 0;
}

.ba-toggle[aria-checked="true"] { background: var(--accent); }

.ba-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.22);
  transition: transform 0.35s ease;
  pointer-events: none;
}

.ba-toggle[aria-checked="true"] .ba-thumb { transform: translateX(28px); }

/* Subtitle */
.ba-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 36px;
  min-height: 1.5em;
  transition: opacity 0.25s ease;
}

/* Grid de cards */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.ba-item {
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 16px 24px;
  text-align: center;
  transition: border-top-color 0.35s ease, box-shadow 0.3s ease;
}

.ba-item.antes  { border-top-color: #f59e0b; }
.ba-item.depois { border-top-color: var(--accent); }

.ba-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.ba-icon {
  font-size: 1.625rem;
  margin-bottom: 14px;
  color: var(--gray-400);
  transition: color 0.35s ease;
}

.ba-item.antes  .ba-icon { color: #ef4444; }
.ba-item.depois .ba-icon { color: var(--primary); }

.ba-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.45;
  margin: 0;
}

/* CTA */
.ba-cta { text-align: center; }

@media (max-width: 768px) {
  .ba-card { padding: 36px 24px; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  .ba-card { padding: 28px 16px; }
  .ba-toggle-row { gap: 14px; }
}

/* =============================================
   VALORES — Nossos Valores em Ação (sobre.html)
   ============================================= */

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

.valor-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-xl);
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(27, 60, 97, 0.05);
}

.valor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.valor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(27, 60, 97, 0.12);
  border-color: rgba(74, 144, 217, 0.3);
}

.valor-num {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(74, 144, 217, 0.1);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.valor-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-accent);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(74, 144, 217, 0.3);
  transition: transform var(--transition-base);
}

.valor-card:hover .valor-icon {
  transform: scale(1.1) rotate(-4deg);
}

.valor-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.valor-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 992px) and (min-width: 577px) {
  .valores-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* =============================================
   MVV MANIFESTO — Missão, Visão e Valores
   ============================================= */

.mvv-manifesto-section {
  padding: 80px 0;
}

.mvv-eyebrow {
  text-align: center;
  margin-bottom: 56px;
}

.mvv-eyebrow .section-title {
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 0;
}

.mvv-manifesto {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: start;
}

.mvv-vdivider {
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
  margin: 0 48px;
}

.mvv-item {
  padding: 0 8px;
}

.mvv-item-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.mvv-item-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(74, 144, 217, 0.35);
}

.mvv-item-label span {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.mvv-item > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  line-height: 1.85;
  margin: 0;
}

.mvv-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mvv-dots li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.mvv-dots li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .mvv-manifesto {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mvv-vdivider {
    height: 1px;
    width: auto;
    margin: 36px 0;
    background: rgba(255, 255, 255, 0.12);
  }
}

/* =============================================
   MVV NEW — layout texto+foto + pills
   ============================================= */

.mvv-new-section {
  padding: 100px 0 80px;
}

.mvv-new-section .container {
  position: relative;
  z-index: 1;
}

.mvv-new-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}

/* Coluna esquerda */
.mvv-new-left .section-badge {
  margin-bottom: 20px;
}

.mvv-new-title {
  font-size: 2.125rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 40px;
}

.mvv-text-block {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 32px;
}

.mvv-text-block:last-child {
  margin-bottom: 0;
}

.mvv-text-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 10px;
}

.mvv-text-block p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin: 0;
}

/* Coluna direita */
.mvv-new-img {
  width: 100%;
  border-radius: var(--border-radius-xl);
  display: block;
  object-fit: cover;
  max-height: 560px;
}

/* Linha de valores */
.mvv-valores-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.mvv-valores-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.mvv-valores-pills {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 10px;
}

.mvv-pill {
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-full);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.mvv-pill:hover {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(74, 144, 217, 0.15);
}

@media (max-width: 992px) {
  .mvv-new-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mvv-new-right { order: -1; }
  .mvv-new-img { max-height: 280px; }
}

/* =============================================
   RESULTS — layout split texto + grid números
   ============================================= */

.results-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.results-left .section-badge {
  margin-bottom: 20px;
}

.results-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.results-desc {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.results-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.result-item {
  padding: 28px 20px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result-item:nth-child(3),
.result-item:nth-child(6) {
  border-right: none;
}

.result-item:nth-child(4),
.result-item:nth-child(5),
.result-item:nth-child(6) {
  border-bottom: none;
}

.result-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.result-number {
  font-size: 2.75rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.result-suffix {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.result-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (max-width: 992px) {
  .results-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .results-right {
    grid-template-columns: repeat(2, 1fr);
  }
  .result-item:nth-child(3) { border-right: 1px solid var(--gray-200); }
  .result-item:nth-child(2),
  .result-item:nth-child(4),
  .result-item:nth-child(6) { border-right: none; }
  .result-item:nth-child(3),
  .result-item:nth-child(4) { border-bottom: 1px solid var(--gray-200); }
  .result-item:nth-child(5),
  .result-item:nth-child(6) { border-bottom: none; }
}

/* =============================================
   STATS STRIP — 3 números horizontais, full width
   ============================================= */

.stats-strip-section {
  padding: 72px 0;
  background: var(--gray-100);
}

.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
}

.strip-stat {
  flex: 1;
  text-align: center;
  padding: 40px 40px;
  position: relative;
  overflow: hidden;
}

.strip-divider {
  width: 1px;
  height: 56px;
  background: var(--gray-300);
  flex-shrink: 0;
}

.strip-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 10px;
}

.strip-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.strip-suffix {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.strip-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
}

@media (max-width: 768px) {
  .stats-strip { flex-direction: column; gap: 40px; }
  .strip-divider { width: 48px; height: 1px; }
}

/* =============================================
   TRAJETÓRIA — Scroll-Driven Timeline
   ============================================= */

.traj-scroll-wrap {
  position: relative;
  max-width: 700px;
  margin: 56px auto 0;
}

.traj-line-track {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
  border-radius: 2px;
}

.traj-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--accent) 0%, #1a6db0 100%);
  border-radius: 2px;
  transition: height 0.08s linear;
}

.traj-scroll-item {
  position: relative;
  padding: 0 0 52px 56px;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.traj-scroll-item:last-child {
  padding-bottom: 8px;
}

.traj-scroll-item.active {
  opacity: 1;
  transform: translateX(0);
}

.traj-dot {
  position: absolute;
  left: 10px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-300);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 2;
}

.traj-scroll-item.active .traj-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(74, 144, 217, 0.18);
}

.traj-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 24px 28px;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.traj-scroll-item.active .traj-card {
  border-color: rgba(74, 144, 217, 0.3);
  box-shadow: 0 4px 24px rgba(74, 144, 217, 0.1);
}

.traj-card::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 14px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-left: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transform: rotate(45deg);
  transition: border-color 0.4s ease;
}

.traj-scroll-item.active .traj-card::before {
  border-left-color: rgba(74, 144, 217, 0.3);
  border-bottom-color: rgba(74, 144, 217, 0.3);
}

.traj-card-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(74, 144, 217, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.traj-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px;
}

.traj-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 576px) {
  .traj-scroll-wrap { margin-top: 36px; }
  .traj-scroll-item { padding: 0 0 40px 48px; }
  .traj-line-track { left: 14px; }
  .traj-dot { left: 6px; }
  .traj-card { padding: 18px 20px; }
  .traj-card::before { left: -7px; top: 12px; width: 12px; height: 12px; }
}

/* =============================================
   GHOST STATS — números outline como decoração
   ============================================= */

.ghost-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ghost-stat-cell {
  position: relative;
  padding: 52px 40px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-start;
}

.ghost-stat-cell:nth-child(3),
.ghost-stat-cell:nth-child(6) { border-right: none; }

.ghost-stat-cell:nth-child(4),
.ghost-stat-cell:nth-child(5),
.ghost-stat-cell:nth-child(6) { border-bottom: none; }

/* número fantasma em outline */
.ghost-num {
  position: absolute;
  bottom: -20px;
  left: auto;
  right: 20px;
  transform: none;
  font-size: 8rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--gray-200);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -4px;
  white-space: nowrap;
  z-index: 0;
}

.strip-content {
  position: relative;
  z-index: 1;
}

/* conteúdo real por cima */
.ghost-stat-content {
  position: relative;
  z-index: 1;
}

.ghost-stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 16px;
}

.ghost-stat-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.ghost-stat-value span {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.ghost-stat-value small {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.ghost-stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* =============================================
   FEATURE CARD GRID — módulos com imagens
   ============================================= */

.feat-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feat-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.feat-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.feat-card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feat-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #1a6db0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.feat-card-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px;
}

.feat-card-body p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0 0 16px;
}

.feat-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: auto;
}

.feat-card-list li {
  font-size: 0.8125rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feat-card-list li i {
  color: var(--accent);
  font-size: 0.6875rem;
  flex-shrink: 0;
}

/* Integrations strip */
.feat-integrations-strip {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.feat-int-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.feat-int-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.feat-int-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--gray-100);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  transition: background 0.2s;
}

.feat-int-item i {
  color: var(--accent);
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .feat-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .feat-card-grid { grid-template-columns: 1fr; }
  .feat-integrations-strip { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .ghost-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ghost-stat-cell:nth-child(3) { border-right: 1px solid var(--gray-200); }
  .ghost-stat-cell:nth-child(2),
  .ghost-stat-cell:nth-child(4),
  .ghost-stat-cell:nth-child(6) { border-right: none; }
  .ghost-stat-cell:nth-child(4),
  .ghost-stat-cell:nth-child(5) { border-bottom: 1px solid var(--gray-200); }
  .ghost-stat-cell:nth-child(6) { border-bottom: none; }
  .ghost-num { font-size: 6rem; }
  .ghost-stat-value span { font-size: 2.25rem; }
}


/* =============================================
   SOL2 — Feature layout redesign (PDV + TEF)
   ============================================= */

.sol2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sol2-visual {
  position: relative;
}

.sol2-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.sol2-visual .pdv-mockup,
.sol2-visual .tef-mockup {
  position: relative;
  z-index: 1;
}

.sol2-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 40px;
  padding: 9px 18px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  z-index: 2;
  white-space: nowrap;
}

.sol2-float-bl { bottom: -14px; left: -14px; }
.sol2-float-tr { top: -14px; right: -14px; }

.sol2-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin: 14px 0 16px;
}

.sol2-desc {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.sol2-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.sol2-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sol2-feat-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(74, 144, 217, 0.1);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.0625rem;
}

.sol2-feat-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 3px;
}

.sol2-feat-text strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.sol2-feat-text span {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* PDV photo frame */
.pdv-photo-frame {
  position: relative;
  z-index: 1;
  line-height: 0;
  margin: -16px -24px; /* empurra a imagem para preencher mais o espaço */
}

.pdv-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply; /* funde o fundo branco do PNG com o cinza da seção */
}

/* Pulsing green dot for offline status */
.pdv-status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  min-width: 9px;
  background: #4FFFB0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(79, 255, 176, 0.5);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(79, 255, 176, 0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(79, 255, 176, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 255, 176, 0); }
}

@media (max-width: 992px) {
  .sol2-grid { grid-template-columns: 1fr; gap: 48px; }
  .sol2-float { display: none; }
  .sol2-title { font-size: 1.875rem; }
}


/* =============================================
   PIX2 — Redesign showcase section
   ============================================= */

.pix2-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.pix2-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  margin: 16px 0 14px;
  line-height: 1.1;
}

.pix2-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.pix2-showcase {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 48px;
}

.pix2-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 44px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s, border-color 0.3s;
}

.pix2-stat-card:hover {
  background: rgba(74, 144, 217, 0.12);
  border-color: rgba(74, 144, 217, 0.3);
}

.pix2-num {
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.pix2-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.pix2-compare {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.pix2-center-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pix2-qr-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.pix2-qr-big {
  font-size: 6rem;
  color: var(--white);
  opacity: 0.7;
  line-height: 1;
  display: block;
  margin: 4px 0 8px;
}

.pix2-qr-amount {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--accent);
}

.pix2-qr-confirmed {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 255, 176, 0.1);
  color: #4FFFB0;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(79, 255, 176, 0.2);
}

.pix2-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.pix2-pills {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: hidden;
  justify-content: center;
}

.pix2-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pix2-pill i {
  color: var(--accent);
  font-size: 0.8125rem;
}

@media (max-width: 992px) {
  .pix2-title { font-size: 2.25rem; }
  .pix2-showcase { grid-template-columns: 1fr; gap: 16px; }
  .pix2-center-card { order: -1; }
}

@media (max-width: 576px) {
  .pix2-num { font-size: 3rem; }
  .pix2-pills { gap: 8px; }
  .pix2-pill { font-size: 0.8125rem; padding: 8px 14px; }
}


/* =============================================
   TEF2 — Redesign section
   ============================================= */

.tef2-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.tef2-head-left { flex: 1; min-width: 0; }

.tef2-kpi {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 20px;
  padding: 30px 36px;
  text-align: center;
  min-width: 210px;
  flex-shrink: 0;
  box-shadow: 0 12px 36px rgba(27, 60, 97, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.tef2-kpi-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.tef2-kpi-num span { color: #4FFFB0; }

.tef2-kpi-lbl {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.tef2-process {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.tef2-step {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
  background: var(--gray-100);
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s, background 0.2s;
}

.tef2-step-highlight {
  background: rgba(74, 144, 217, 0.07);
  border-color: rgba(74, 144, 217, 0.3);
}

.tef2-step-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin: 0 auto 12px;
}

.tef2-step strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.tef2-step span {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.4;
  display: block;
}

.tef2-arrow {
  color: var(--gray-300);
  font-size: 1rem;
  flex-shrink: 0;
}

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

.tef2-features-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tef2-adquirentes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid var(--gray-200);
}

.tef2-adq-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 5px 14px;
}

@media (max-width: 1100px) {
  .tef2-process { flex-wrap: wrap; }
  .tef2-step { min-width: 130px; }
}

@media (max-width: 992px) {
  .tef2-head { flex-direction: column; gap: 24px; }
  .tef2-kpi { min-width: unset; }
  .tef2-grid { grid-template-columns: 1fr; gap: 40px; }
  .tef2-arrow { display: none; }
  .tef2-process { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ══════════════════════════════════════════════════
   SFEAT — Feature cards premium (segmento supermercado)
   ══════════════════════════════════════════════════ */

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

.sfeat-card {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #e4edf7;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.sfeat-card::before {
  content: '';
  position: absolute;
  top: -24px;
  right: -24px;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(74,144,217,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.sfeat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(74,144,217,0.13);
  border-color: rgba(74,144,217,0.38);
}

/* ── Dark featured card (PDV) ── */
.sfeat-card--dark {
  background: var(--primary, #1b3c61);
  border-color: var(--primary, #1b3c61);
  box-shadow: 0 8px 32px rgba(27,60,97,0.22);
}
.sfeat-card--dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(27,60,97,0.32);
  border-color: var(--primary, #1b3c61);
}
.sfeat-card--dark::before { background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); }

/* ── Accent featured card (PIX) ── */
.sfeat-card--accent {
  background: linear-gradient(135deg, #2e72bd 0%, #4a90d9 100%);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(74,144,217,0.28);
}
.sfeat-card--accent:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(74,144,217,0.38);
  border-color: transparent;
}
.sfeat-card--accent::before { background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); }

/* ── Icon ── */
.sfeat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.sfeat-card:not(.sfeat-card--dark):not(.sfeat-card--accent) .sfeat-icon {
  background: linear-gradient(135deg, #1b3c61 0%, #4a90d9 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(74,144,217,0.28);
}

.sfeat-card--dark .sfeat-icon {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.sfeat-card--accent .sfeat-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ── Number badge ── */
.sfeat-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(74,144,217,0.28);
}
.sfeat-card--dark .sfeat-num  { color: rgba(255,255,255,0.18); }
.sfeat-card--accent .sfeat-num { color: rgba(255,255,255,0.22); }

/* ── Text ── */
.sfeat-card h3 {
  font-size: 1.0rem;
  font-weight: 700;
  color: #1b3c61;
  margin-bottom: 9px;
  line-height: 1.3;
}
.sfeat-card p {
  font-size: 0.855rem;
  color: #6b7a8d;
  line-height: 1.72;
  margin: 0;
}

.sfeat-card--dark h3,
.sfeat-card--accent h3 { color: #fff; }

.sfeat-card--dark p   { color: rgba(255,255,255,0.68); }
.sfeat-card--accent p { color: rgba(255,255,255,0.82); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .sfeat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .sfeat-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   SDIF — Diferenciais interactive tabs (dark section)
   ══════════════════════════════════════════════════ */

.sdif-section {
  background: linear-gradient(160deg, #07152b 0%, #0d1f45 65%, #0f2458 100%);
  position: relative;
  overflow: hidden;
}

.sdif-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,144,217,0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.sdif-section .container {
  position: relative;
  z-index: 1;
}

.sdif-section .section-badge {
  background: rgba(74,144,217,0.18);
  border: 1px solid rgba(74,144,217,0.38);
  color: #7db8f0;
}

.sdif-section .section-title { color: #fff; }
.sdif-section .section-subtitle { color: rgba(255,255,255,0.55); }

/* Layout */
.sdif-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}

/* ── Tab list ── */
.sdif-list {
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
}

.sdif-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.2s, border-color 0.2s;
}

.sdif-tab:last-child { border-bottom: none; }

.sdif-tab-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: rgba(74,144,217,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.sdif-tab span {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  line-height: 1.35;
  transition: color 0.2s;
  font-family: 'Montserrat', sans-serif;
}

.sdif-tab:hover { background: rgba(74,144,217,0.06); }
.sdif-tab:hover .sdif-tab-icon { background: rgba(74,144,217,0.18); color: rgba(255,255,255,0.65); }
.sdif-tab:hover span { color: rgba(255,255,255,0.7); }

.sdif-tab.active {
  border-left-color: #4a90d9;
  background: rgba(74,144,217,0.1);
}
.sdif-tab.active .sdif-tab-icon {
  background: linear-gradient(135deg, #1b3c61, #4a90d9);
  color: #fff;
}
.sdif-tab.active span { color: #fff; font-weight: 700; }

/* ── Content panels ── */
.sdif-panels {
  position: relative;
  min-height: 340px;
}

.sdif-panel {
  position: absolute;
  inset: 0;
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.sdif-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sdif-panel-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #1b3c61, #4a90d9);
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(74,144,217,0.35);
}

.sdif-panel h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.sdif-panel p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.78;
  margin-bottom: 24px;
}

.sdif-panel-stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(74,144,217,0.14);
  border: 1px solid rgba(74,144,217,0.28);
  border-radius: 40px;
  padding: 8px 20px;
  width: fit-content;
}

.sdif-stat-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: #4a90d9;
  font-family: 'Montserrat', sans-serif;
}

.sdif-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.52);
  font-family: 'Montserrat', sans-serif;
}

/* ══════════════════════════════════════════════════
   SFORM — Form section redesign (supermercado)
   ══════════════════════════════════════════════════ */

.sform-section {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.sform-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(74,144,217,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.sform-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(74,144,217,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.sform-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}

/* ── Left text ── */
.sform-left h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1b3c61;
  line-height: 1.2;
  margin: 14px 0 14px;
}

.sform-left > p {
  font-size: 0.95rem;
  color: #5a6a7d;
  line-height: 1.72;
  margin-bottom: 28px;
}

/* Trust mini-cards */
.sform-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sform-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px;
  background: #f5f9ff;
  border: 1px solid #e4edf7;
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sform-trust-item:hover {
  border-color: rgba(74,144,217,0.35);
  box-shadow: 0 4px 16px rgba(74,144,217,0.08);
}

.sform-trust-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: linear-gradient(135deg, #1b3c61, #4a90d9);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
}

.sform-trust-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1b3c61;
  margin-bottom: 2px;
  line-height: 1.3;
}

.sform-trust-item span {
  font-size: 0.75rem;
  color: #7a8a9a;
  line-height: 1.4;
}

/* ── Form card ── */
.sform-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27,60,97,0.12), 0 0 0 1px rgba(74,144,217,0.1);
}

.sform-card-head {
  background: linear-gradient(135deg, #1b3c61 0%, #2a6ab5 100%);
  padding: 22px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sform-card-head-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.sform-card-head h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
  line-height: 1.3;
}

.sform-card-head p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.sform-card-body {
  padding: 26px 30px 30px;
}

.sform-card-body .form-group {
  margin-bottom: 14px;
}

.sform-card-body label {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  color: #3a4e66;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sform-card-body .form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d8e6f5;
  border-radius: 9px;
  font-size: 0.875rem;
  color: #1b3c61;
  background: #f8faff;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.sform-card-body .form-control:focus {
  outline: none;
  border-color: #4a90d9;
  box-shadow: 0 0 0 3px rgba(74,144,217,0.13);
  background: #fff;
}

.sform-card-body .form-control::placeholder { color: #a8b8c8; }

.sform-card-body select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%234a90d9' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: #f8faff;
  padding-right: 32px;
  cursor: pointer;
}

.sform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sform-card-body .btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sform-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 576px) {
  .sform-section { padding: 72px 0; }
  .sform-trust-grid { grid-template-columns: 1fr; }
  .sform-row { grid-template-columns: 1fr; }
  .sform-card-head, .sform-card-body { padding-left: 20px; padding-right: 20px; }
  .sform-left h2 { font-size: 1.7rem; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sdif-layout { grid-template-columns: 1fr; }
  .sdif-list {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .sdif-tab {
    flex: 1 1 calc(50% - 1px);
    border-left: none;
    border-top: 3px solid transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 10px;
    gap: 8px;
  }
  .sdif-tab.active { border-top-color: #4a90d9; border-left-color: transparent; }
  .sdif-panels { min-height: 260px; }
  .sdif-panel { padding: 28px 24px; }
}

@media (max-width: 576px) {
  .sdif-tab { flex: 1 1 calc(33.333% - 1px); }
  .sdif-tab span { display: none; }
  .sdif-panel h3 { font-size: 1.1rem; }
}

/* ── HOME CTA BRIDGE (flutua sobre junção depoimentos/footer) ─── */
.hcta-bridge {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: 0;
  margin-top: -90px; /* sobe 90px para dentro dos depoimentos */
}

.hcta-card {
  background: linear-gradient(105deg, #0e2540 0%, #1B3C61 45%, #1e4878 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hcta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/banner-logo-.png') center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.hcta-card::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,144,217,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hcta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 56px 48px;
  position: relative;
  z-index: 1;
}

.hcta-left {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  flex: 1;
}

.hcta-vline {
  width: 4px;
  min-height: 72px;
  background: linear-gradient(180deg, #4A90D9 0%, #5bc8f5 100%);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

.hcta-text .hcta-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.hcta-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.hcta-text h2 span {
  color: #5bc8f5;
}

.hcta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 220px;
}

.hcta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #4A90D9 0%, #5bc8f5 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 24px rgba(74,144,217,0.4);
  white-space: nowrap;
}

.hcta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(74,144,217,0.55);
}

.hcta-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.hcta-btn-whatsapp:hover {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.45);
  color: #4dde80;
}

.hcta-btn-whatsapp i {
  font-size: 1.05rem;
  color: #25d366;
}

/* Modal */
.hcta-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hcta-modal.open {
  opacity: 1;
  pointer-events: all;
}

.hcta-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,18,34,0.75);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.hcta-modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  margin: 16px;
  padding: 48px 40px 40px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.35);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.hcta-modal.open .hcta-modal-box {
  transform: translateY(0) scale(1);
}

.hcta-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f0f4f8;
  color: #6b7a8d;
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.hcta-modal-close:hover {
  background: #e0e8f0;
  color: #1B3C61;
}

.hcta-modal-head {
  text-align: center;
  margin-bottom: 30px;
}

.hcta-modal-head-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1B3C61 0%, #2B5490 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.25rem;
  color: #fff;
}

.hcta-modal-head h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1B3C61;
  margin-bottom: 6px;
}

.hcta-modal-head p {
  font-size: 0.9rem;
  color: #6b7a8d;
}

.hcta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hcta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hcta-form input,
.hcta-form select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid #dde4ed;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: #1B3C61;
  background: #f8fafd;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.hcta-form input:focus,
.hcta-form select:focus {
  border-color: #4A90D9;
  box-shadow: 0 0 0 3px rgba(74,144,217,0.12);
  background: #fff;
}

.hcta-form input::placeholder {
  color: #a0aec0;
}

.hcta-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #1B3C61 0%, #2B5490 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 17px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(27,60,97,0.25);
}

.hcta-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(27,60,97,0.38);
}

.hcta-form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.hcta-form-success.show { display: block; }

.hcta-success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #fff;
}

.hcta-form-success h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1B3C61;
  margin-bottom: 8px;
}

.hcta-form-success p {
  font-size: 0.9rem;
  color: #6b7a8d;
}

@media (max-width: 860px) {
  .hcta-bridge { margin-top: -60px; }
  .hcta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 28px;
  }
  .hcta-actions { width: 100%; }
  .hcta-btn-primary, .hcta-btn-whatsapp { width: 100%; }
}

@media (max-width: 600px) {
  .hcta-bridge { margin-top: -48px; }
  .hcta-inner { padding: 32px 20px; }
  .hcta-text h2 { font-size: 1.3rem; }
  .hcta-modal-box { padding: 40px 24px 32px; }
  .hcta-form-row { grid-template-columns: 1fr; }
}
/* ──────────────────────────────────────────────────────────── */

/* ── SEGMENTOS SPLIT ──────────────────────────────────────── */
.seg-split-section {
  position: relative;
  background: linear-gradient(135deg, #081828 0%, #0d2038 50%, #1B3C61 100%);
  overflow: hidden;
  padding: 90px 0;
}

.seg-split-image-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 44%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.seg-split-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.seg-split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #081828 0%,
    rgba(8, 24, 40, 0.85) 30%,
    rgba(8, 24, 40, 0.25) 70%,
    transparent 100%
  );
}

.seg-split-content {
  position: relative;
  z-index: 1;
  max-width: 58%;
  padding-right: 40px;
}

.seg-split-section .section-badge {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.75);
}

.seg-split-header {
  margin-bottom: 32px;
}

.seg-split-header h2 {
  font-size: 2.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  margin: 14px 0 14px;
}

.seg-split-header h2 span {
  color: #4A90D9;
}

.seg-split-header p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 420px;
}

/* Tiles */
.seg-tiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.seg-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 18px 20px;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.seg-tile::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 3px;
  background: linear-gradient(180deg, #4A90D9, #5bc8f5);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.seg-tile:hover::before {
  transform: scaleY(1);
}

.seg-tile--wide {
  grid-column: 1 / -1;
}

.seg-tile-icon {
  width: 44px;
  height: 44px;
  background: rgba(74, 144, 217, 0.1);
  border: 1px solid rgba(74, 144, 217, 0.18);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #4A90D9;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.seg-tile-body {
  flex: 1;
  min-width: 0;
}

.seg-tile-name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.seg-tile-sub {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.seg-tile-arrow {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.seg-tile:hover {
  background: rgba(74, 144, 217, 0.09);
  border-color: rgba(74, 144, 217, 0.28);
  transform: translateX(4px);
}

.seg-tile:hover .seg-tile-icon {
  background: rgba(74, 144, 217, 0.2);
  border-color: rgba(74, 144, 217, 0.35);
}

.seg-tile:hover .seg-tile-arrow {
  transform: translateX(5px);
  color: #4A90D9;
}

@media (max-width: 960px) {
  .seg-split-image-panel { width: 36%; }
  .seg-split-content { max-width: 66%; }
  .seg-split-header h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
  .seg-split-image-panel { display: none; }
  .seg-split-content { max-width: 100%; padding-right: 0; }
  .seg-split-section { padding: 70px 0; }
  .seg-split-header h2 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .seg-tiles-grid { grid-template-columns: 1fr; }
  .seg-tile--wide { grid-column: auto; }
  .seg-tile-name { white-space: normal; }
}
/* ──────────────────────────────────────────────────────────── */

/* ══════════════════════════════════════════════════════════════
   SOLT — Solutions Cards — Light photo background
   ══════════════════════════════════════════════════════════════ */

/* Section wrapper */
.solt-section {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
}

.solt-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://lp.softwarehouseexponencial.com.br/wp-content/uploads/2026/04/Weber-Lp.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.solt-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(235, 244, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.70) 100%
  );
  z-index: 1;
}

.solt-container {
  position: relative;
  z-index: 2;
}

/* Header */
.solt-header {
  text-align: center;
  margin-bottom: 56px;
}

.solt-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4A90D9;
  background: rgba(74, 144, 217, 0.1);
  border: 1px solid rgba(74, 144, 217, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.solt-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1B3C61;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.solt-heading span {
  background: linear-gradient(135deg, #4A90D9, #1B3C61);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solt-subheading {
  font-size: 1rem;
  color: #5a6e85;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.solt-subheading strong {
  color: #1B3C61;
  font-weight: 700;
}

/* Grid */
.solt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* Card */
.solt-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(27, 60, 97, 0.1);
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 60, 97, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.solt-card:hover {
  transform: translateY(-7px);
  border-color: rgba(74, 144, 217, 0.4);
  box-shadow: 0 20px 50px rgba(27, 60, 97, 0.14);
}

.solt-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4A90D9, #1B3C61);
  border-radius: 20px 20px 0 0;
}

.solt-stat {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #4A90D9 0%, #1B3C61 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.solt-icon {
  width: 46px;
  height: 46px;
  background: rgba(74, 144, 217, 0.1);
  border: 1px solid rgba(74, 144, 217, 0.2);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #4A90D9;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.solt-card:hover .solt-icon {
  background: rgba(74, 144, 217, 0.18);
  border-color: rgba(74, 144, 217, 0.38);
}

.solt-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1B3C61;
  margin: 0;
  line-height: 1.3;
}

.solt-desc {
  font-size: 0.875rem;
  color: #5a6e85;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.solt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.solt-pill {
  font-size: 0.7rem;
  font-weight: 600;
  color: #4A90D9;
  background: rgba(74, 144, 217, 0.08);
  border: 1px solid rgba(74, 144, 217, 0.2);
  border-radius: 100px;
  padding: 4px 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.solt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.825rem;
  font-weight: 700;
  color: #4A90D9;
  text-decoration: none;
  letter-spacing: 0.01em;
  margin-top: 4px;
  transition: gap 0.22s ease, color 0.22s ease;
}

.solt-link:hover {
  gap: 10px;
  color: #1B3C61;
}

@media (max-width: 900px) {
  .solt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .solt-heading { font-size: 2rem; }
}

@media (max-width: 600px) {
  .solt-section { padding: 72px 0 80px; }
  .solt-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .solt-card { padding: 28px 24px 26px; }
  .solt-stat { font-size: 3rem; }
  .solt-heading { font-size: 1.75rem; }
  .solt-header { margin-bottom: 40px; }
}

/* ══════════════════════════════════════════════════════════════
   CTPAGE — Página de Contato (redesign completo)
   ══════════════════════════════════════════════════════════════ */

/* ── Hero (gradiente marca + ruído + logo animada) ── */
.ctpage-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 96px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Gradiente principal nas cores Weber */
.ctpage-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(37, 99, 168, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(74, 144, 217, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 60% 90%, rgba(11, 38, 82, 0.7) 0%, transparent 65%),
    linear-gradient(135deg, #061528 0%, #0d2647 30%, #1B3C61 60%, #1a4f8a 100%);
  z-index: 0;
}

/* Ruído/grain — SVG feTurbulence como data URI */
.ctpage-hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* Logo watermark flutuante */
.ctpage-hero-logo-bg {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 560px;
  opacity: 0.045;
  z-index: 2;
  pointer-events: none;
  animation: ctLogoFloat 12s ease-in-out infinite;
  filter: brightness(0) invert(1);
}

.ctpage-hero-logo-bg img {
  width: 100%;
  display: block;
}

@keyframes ctLogoFloat {
  0%   { transform: translateY(0px) rotate(-3deg) scale(1); }
  33%  { transform: translateY(-18px) rotate(-1deg) scale(1.03); }
  66%  { transform: translateY(-8px) rotate(-4deg) scale(0.98); }
  100% { transform: translateY(0px) rotate(-3deg) scale(1); }
}

/* Orbs coloridos */
.ctpage-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.ctpage-hero-orb--1 {
  width: 700px;
  height: 700px;
  top: -220px;
  right: -200px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.18) 0%, transparent 65%);
  animation: ctOrbPulse 8s ease-in-out infinite;
}

.ctpage-hero-orb--2 {
  width: 500px;
  height: 500px;
  bottom: -160px;
  left: -100px;
  background: radial-gradient(circle, rgba(27, 60, 97, 0.5) 0%, transparent 65%);
  animation: ctOrbPulse 11s ease-in-out infinite reverse;
}

.ctpage-hero-orb--3 {
  width: 320px;
  height: 320px;
  top: 30%;
  left: 45%;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.1) 0%, transparent 70%);
  animation: ctOrbPulse 14s ease-in-out infinite 2s;
}

@keyframes ctOrbPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.7; }
}

.ctpage-hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
}

/* Coluna esquerda */
.ctpage-hero-left { display: flex; flex-direction: column; }

.ctpage-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7ec8f5;
  background: rgba(74, 144, 217, 0.15);
  border: 1px solid rgba(74, 144, 217, 0.4);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 28px;
  width: fit-content;
}

.ctpage-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
}

.ctpage-hero-title span {
  display: block;
  background: linear-gradient(90deg, #5bc8ff, #a3dfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ctpage-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 0 40px;
}

/* Métricas */
.ctpage-hero-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
}

.ctpage-hero-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 18px 28px;
}

.ctpage-hero-metric strong {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.ctpage-hero-metric span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.48);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ctpage-hero-metric-div {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Canais */
.ctpage-hero-channels {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ctpage-hero-ch {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(8px);
}

.ctpage-hero-ch:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.ctpage-hero-ch--wa {
  border-color: rgba(37,211,102,0.35);
  background: rgba(37,211,102,0.1);
}

.ctpage-hero-ch--wa:hover {
  background: rgba(37,211,102,0.18);
  border-color: rgba(37,211,102,0.5);
}

.ctpage-hero-ch--wa i { color: #4ade80; font-size: 1.35rem; }
.ctpage-hero-ch i { font-size: 1.05rem; color: rgba(255,255,255,0.65); }

.ctpage-hero-ch div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ctpage-hero-ch div span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.ctpage-hero-ch div strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

/* Card do formulário */
.ctpage-hero-form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}

.ctpage-hfc-header {
  padding: 28px 32px 22px;
  background: linear-gradient(135deg, #0f2d56 0%, #1B3C61 60%, #2461a0 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.ctpage-hfc-header::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(74,144,217,0.2) 0%, transparent 70%);
}

.ctpage-hfc-header h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
  position: relative;
}

.ctpage-hfc-header p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
  margin: 0;
  position: relative;
}

.ctpage-hfc-form {
  padding: 22px 28px 0;
}

.ctpage-hfc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.ctpage-hfc-fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ctpage-hfc-fg label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.01em;
}

.ctpage-hfc-fg label span { color: #E53E3E; }

.ctpage-hfc-fg input,
.ctpage-hfc-fg select {
  padding: 10px 13px;
  border: 1.5px solid #e8edf3;
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: inherit;
  color: #1a2a3a;
  background: #fafbfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.ctpage-hfc-fg input:focus,
.ctpage-hfc-fg select:focus {
  outline: none;
  border-color: #4A90D9;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74,144,217,0.1);
}

.ctpage-hfc-fg input::placeholder { color: #bdc8d4; font-size: 0.825rem; }

.ctpage-hfc-fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 13px;
  padding-right: 34px;
  cursor: pointer;
}

.ctpage-hfc-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  margin-top: 4px;
}

.ctpage-hfc-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  min-width: 15px;
  accent-color: #4A90D9;
  flex-shrink: 0;
  margin-top: 2px;
}

.ctpage-hfc-check label {
  font-size: 0.75rem;
  color: #6b7a8d;
  line-height: 1.5;
  cursor: pointer;
}

.ctpage-hfc-check label a { color: #4A90D9; font-weight: 600; }

.ctpage-hfc-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1B3C61 0%, #2a6cc4 100%);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ctpage-hfc-submit i { font-size: 0.85rem; transition: transform 0.22s ease; }

.ctpage-hfc-submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(27,60,97,0.35);
}

.ctpage-hfc-submit:hover i { transform: translateX(4px); }

.ctpage-hfc-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #b0bbc8;
  padding: 12px 28px 22px;
  text-align: center;
  margin: 0;
}

.ctpage-hfc-lock i { color: #4A90D9; font-size: 0.7rem; }

/* ── Main section: info + form ── */
.ctpage-main {
  background: #f4f7fb;
  padding: 96px 0 104px;
}

.ctpage-main-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
}

.ctpage-info-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1B3C61;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.ctpage-info-header p {
  font-size: 0.9375rem;
  color: #5a6e85;
  line-height: 1.6;
  margin: 0 0 36px;
}

.ctpage-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.ctpage-ic {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(27, 60, 97, 0.08);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(27, 60, 97, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ctpage-ic:hover {
  border-color: rgba(74, 144, 217, 0.3);
  box-shadow: 0 4px 20px rgba(27, 60, 97, 0.09);
}

.ctpage-ic-icon {
  width: 42px;
  height: 42px;
  background: rgba(74, 144, 217, 0.1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #4A90D9;
  flex-shrink: 0;
}

.ctpage-ic-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ctpage-ic-body strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1B3C61;
}

.ctpage-ic-body span {
  font-size: 0.825rem;
  color: #5a6e85;
  line-height: 1.5;
}

.ctpage-social-block {
  margin-bottom: 32px;
}

.ctpage-social-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8fa3b8;
  margin-bottom: 12px;
}

.ctpage-social-row {
  display: flex;
  gap: 10px;
}

.ctpage-soc {
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid rgba(27, 60, 97, 0.12);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B3C61;
  font-size: 0.95rem;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ctpage-soc:hover {
  background: #1B3C61;
  border-color: #1B3C61;
  color: #fff;
  transform: translateY(-3px);
}

.ctpage-trust-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #1B3C61, #2a5a96);
  border-radius: 14px;
}

.ctpage-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.ctpage-trust-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.ctpage-trust-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.ctpage-trust-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Form card */
.ctpage-form-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 40px rgba(27, 60, 97, 0.1);
  overflow: hidden;
  position: relative;
}

.ctpage-form-top-bar {
  height: 5px;
  background: linear-gradient(90deg, #4A90D9, #1B3C61);
}

.ctpage-form-header {
  padding: 36px 40px 0;
}

.ctpage-form-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1B3C61;
  margin: 0 0 8px;
}

.ctpage-form-header p {
  font-size: 0.875rem;
  color: #5a6e85;
  margin: 0;
  line-height: 1.55;
}

.ctpage-form {
  padding: 28px 40px 0;
}

.ctpage-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ctpage-fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ctpage-fg--full {
  grid-column: span 2;
}

.ctpage-fg label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #374151;
}

.ctpage-fg label span { color: #E53E3E; }

.ctpage-fg input,
.ctpage-fg select,
.ctpage-fg textarea {
  padding: 13px 16px;
  border: 2px solid #e5eaf0;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #1a2a3a;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.ctpage-fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
  cursor: pointer;
}

.ctpage-fg textarea {
  min-height: 100px;
  resize: vertical;
}

.ctpage-fg input:focus,
.ctpage-fg select:focus,
.ctpage-fg textarea:focus {
  outline: none;
  border-color: #4A90D9;
  box-shadow: 0 0 0 4px rgba(74, 144, 217, 0.1);
}

.ctpage-fg input::placeholder,
.ctpage-fg textarea::placeholder { color: #aab5c3; }

.ctpage-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}

.ctpage-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #4A90D9;
  flex-shrink: 0;
  margin-top: 2px;
  padding: 0;
  border: none;
  box-shadow: none;
}

.ctpage-check label {
  font-size: 0.825rem;
  color: #5a6e85;
  line-height: 1.5;
  cursor: pointer;
  font-weight: 400;
}

.ctpage-check label a {
  color: #4A90D9;
  font-weight: 600;
}

.ctpage-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(100% - 80px);
  margin: 24px 40px 0;
  padding: 16px;
  background: linear-gradient(135deg, #4A90D9, #1B3C61);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ctpage-submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(27, 60, 97, 0.25);
}

.ctpage-form-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.775rem;
  color: #8fa3b8;
  margin: 12px 40px 0;
  text-align: center;
}

.ctpage-form-lock i { color: #4A90D9; }

.ctpage-form-alt {
  padding: 24px 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ctpage-form-alt > span {
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #aab5c3;
  position: relative;
  white-space: nowrap;
}

.ctpage-form-alt > span::before,
.ctpage-form-alt > span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 56px;
  height: 1px;
  background: #e5eaf0;
}

.ctpage-form-alt > span::before { right: calc(100% + 12px); }
.ctpage-form-alt > span::after  { left:  calc(100% + 12px); }

.ctpage-form-alt-btns {
  display: flex;
  gap: 12px;
}

.ctpage-alt-wa,
.ctpage-alt-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ctpage-alt-wa {
  background: #25D366;
  color: #fff;
}

.ctpage-alt-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.ctpage-alt-tel {
  background: #f4f7fb;
  color: #1B3C61;
  border: 1px solid rgba(27, 60, 97, 0.12);
}

.ctpage-alt-tel:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 60, 97, 0.1);
  border-color: rgba(74, 144, 217, 0.3);
}

/* ── Proximos Passos ── */
.ctpage-steps {
  background: linear-gradient(160deg, #0d2340 0%, #1B3C61 100%);
  padding: 96px 0 104px;
  position: relative;
  overflow: hidden;
}

.ctpage-steps::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,144,217,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ctpage-steps-header {
  text-align: center;
  margin-bottom: 64px;
}

.ctpage-steps-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #4A90D9;
  background: rgba(74,144,217,0.1);
  border: 1px solid rgba(74,144,217,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.ctpage-steps-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.ctpage-steps-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
}

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

.ctpage-step-num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(74,144,217,0.15);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.ctpage-step-body {
  padding: 28px 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.ctpage-step-body:hover {
  background: rgba(74,144,217,0.07);
  border-color: rgba(74,144,217,0.25);
}

.ctpage-step-icon {
  width: 48px;
  height: 48px;
  background: rgba(74,144,217,0.12);
  border: 1px solid rgba(74,144,217,0.22);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #4A90D9;
  margin-bottom: 20px;
}

.ctpage-step-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.ctpage-step-body p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

/* ── Map ── */
.ctpage-map {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 500px;
}

.ctpage-map-info {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 64px 0;
  box-shadow: 4px 0 20px rgba(27,60,97,0.06);
  position: relative;
  z-index: 1;
}

.ctpage-map-info .container {
  width: 100%;
}

.ctpage-map-label {
  padding: 0 48px;
}

.ctpage-map-label h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1B3C61;
  margin: 16px 0 12px;
  line-height: 1.2;
}

.ctpage-map-label p {
  font-size: 0.9rem;
  color: #5a6e85;
  line-height: 1.6;
  margin: 0 0 24px;
}

.ctpage-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4A90D9;
  text-decoration: none;
  padding: 10px 20px;
  border: 1.5px solid rgba(74,144,217,0.3);
  border-radius: 10px;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.ctpage-map-link:hover {
  background: rgba(74,144,217,0.07);
  border-color: #4A90D9;
}

.ctpage-map-embed {
  position: relative;
}

.ctpage-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ctpage-main-grid { grid-template-columns: 1fr; gap: 48px; }
  .ctpage-trust-strip { max-width: 420px; }
}

@media (max-width: 1100px) {
  .ctpage-hero-inner { grid-template-columns: 1fr 420px; gap: 48px; }
}

@media (max-width: 900px) {
  .ctpage-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ctpage-hero { padding: 100px 0 72px; }
  .ctpage-hero-title { font-size: 2.3rem; }
  .ctpage-hero-metrics { width: 100%; max-width: 400px; }
  .ctpage-steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .ctpage-map { grid-template-columns: 1fr; }
  .ctpage-map-info { padding: 56px 0; }
  .ctpage-map-embed { min-height: 400px; position: relative; }
  .ctpage-map-embed iframe { position: absolute; height: 100%; }
  .ctpage-main-grid { grid-template-columns: 1fr; gap: 48px; }
  .ctpage-trust-strip { max-width: 420px; }
}

@media (max-width: 640px) {
  .ctpage-hero { padding: 88px 0 60px; }
  .ctpage-hero-title { font-size: 1.9rem; }
  .ctpage-hfc-row { grid-template-columns: 1fr; gap: 10px; }
  .ctpage-hfc-form { padding: 20px 20px 0; }
  .ctpage-hfc-header { padding: 22px 20px 18px; }
  .ctpage-hfc-lock { padding: 12px 20px 20px; }
  .ctpage-hero-channels { flex-direction: column; }
  .ctpage-form-grid { grid-template-columns: 1fr; }
  .ctpage-fg--full { grid-column: span 1; }
  .ctpage-form-header { padding: 28px 24px 0; }
  .ctpage-form { padding: 24px 24px 0; }
  .ctpage-form-lock { margin: 12px 24px 0; }
  .ctpage-submit { width: calc(100% - 48px); margin-left: 24px; margin-right: 24px; }
  .ctpage-form-alt { padding: 20px 24px 28px; }
  .ctpage-main { padding: 64px 0 72px; }
  .ctpage-steps { padding: 64px 0 72px; }
  .ctpage-map-label { padding: 0 24px; }
  .ctpage-form-alt-btns { flex-direction: column; width: 100%; }
  .ctpage-alt-wa, .ctpage-alt-tel { justify-content: center; }
}
