/* =============================================
   ELLO MARCAS — HOME (conversão)
   ============================================= */

/* ═══════════════════════════════════════════════
   HERO — foto de escritório + overlay + painel
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 48px) 0 56px;
  overflow: hidden;
}

/* Foto de fundo — escritório profissional real */
.hero-bg-photo {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* Overlay: azul da marca com gradiente sofisticado
   — lado esquerdo mais escuro (texto legível)
   — lado direito mais leve (painel se destaca) */
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 22, 50, 0.93) 0%,
      rgba(10, 22, 50, 0.85) 35%,
      rgba(10, 22, 50, 0.68) 55%,
      rgba(8, 18, 42, 0.72) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(8, 18, 42, 0.20) 0%,
      transparent 25%,
      transparent 70%,
      rgba(8, 18, 42, 0.45) 100%
    );
}

/* Grid: texto | painel */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 1; width: 100%;
}

/* ── Esquerda: texto ── */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,201,0.14);
  border: 1px solid rgba(14,165,201,0.32);
  color: rgba(255,255,255,0.88);
  padding: 7px 16px; border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 600; margin-bottom: 22px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}
.eyebrow-dot { width: 7px; height: 7px; background: #10B981; border-radius: 50%; animation: pulse 2s infinite; }

.hero-title {
  color: white;
  margin-bottom: 20px;
  line-height: 1.04;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  letter-spacing: -0.02em;
}
/* "quando é registrada." — azul ciano, itálico */
.hero-title-highlight {
  display: block;
  color: var(--cyan);
  font-style: italic;
}

.hero-desc {
  color: rgba(255,255,255,0.80);
  font-size: 1.0625rem; line-height: 1.72;
  margin-bottom: 32px; max-width: 400px;
}

.hero-cta-block { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; background: var(--cyan); color: white;
  border-radius: var(--radius-full); font-size: 1rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(14,165,201,0.45);
  transition: var(--transition); border: none; cursor: pointer;
  white-space: nowrap; text-decoration: none;
}
.btn-hero-primary:hover {
  background: var(--cyan-light); transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(14,165,201,0.55);
}

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 15px 24px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius-full); font-size: 1rem; font-weight: 500;
  transition: var(--transition); white-space: nowrap; cursor: pointer;
  backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.40); color: white;
}

.hero-trust { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.trust-item  { display: flex; align-items: center; gap: 6px; font-size: 0.875rem; color: rgba(255,255,255,0.72); }
.trust-sep   { color: rgba(255,255,255,0.28); }

/* ── Direita: painel + chip ── */
.hero-visual {
  display: flex; flex-direction: column;
  gap: 14px;
  position: relative;
}

.hero-dashboard-wrap { position: relative; }

/* Painel — glass com backdrop blur sobre foto */
.dashboard-card {
  background: rgba(6, 14, 36, 0.82);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  backdrop-filter: blur(32px);
  overflow: hidden;
  box-shadow:
    0 28px 72px rgba(0,0,0,0.55),
    0 1px 0 rgba(255,255,255,0.06) inset;
}
.dash-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.035);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.dash-title  { font-size: 0.78rem; color: rgba(255,255,255,0.42); flex: 1; text-align: center; letter-spacing: 0.04em; font-weight: 500; }
.dash-status { font-size: 0.73rem; color: #10B981; display: flex; align-items: center; gap: 5px; font-weight: 600; }
.status-dot  { width: 6px; height: 6px; background: #10B981; border-radius: 50%; animation: pulse 2s infinite; }
.dash-body   { padding: 18px; }

.dash-brand-name {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 11px; padding: 11px 14px; margin-bottom: 14px;
}
.brand-icon {
  width: 34px; height: 34px; background: rgba(14,165,201,0.2);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: var(--cyan-light); flex-shrink: 0;
}
.dash-brand-name strong { display: block; color: white; font-size: 0.875rem; font-weight: 700; }
.dash-brand-name span   { font-size: 0.72rem; color: rgba(255,255,255,0.36); }

.dash-progress { margin-bottom: 14px; }
.progress-header {
  display: flex; justify-content: space-between;
  font-size: 0.74rem; color: rgba(255,255,255,0.40); margin-bottom: 7px;
}
.progress-header strong { color: var(--cyan); font-weight: 700; }
.progress-bar  { height: 5px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--cyan-dark), var(--cyan)); border-radius: 3px; }

.dash-steps-mini { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.step-mini { display: flex; align-items: center; gap: 8px; font-size: 0.79rem; color: rgba(255,255,255,0.33); }
.step-mini.done   { color: #10B981; }
.step-mini.active { color: white; font-weight: 600; }
.mini-dot         { width: 9px; height: 9px; background: var(--cyan); border-radius: 50%; flex-shrink: 0; animation: pulse 1.5s infinite; }
.mini-dot.inactive { background: rgba(255,255,255,0.1); animation: none; }

.dash-metric-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.07);
}
.metric span   { display: block; font-size: 0.62rem; color: rgba(255,255,255,0.26); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.metric strong { font-size: 0.84rem; color: rgba(255,255,255,0.88); font-weight: 700; }

/* Float badges */
.float-badge {
  position: absolute; background: white;
  border-radius: var(--radius-full);
  padding: 7px 14px; font-size: 0.78rem; font-weight: 700; color: var(--navy);
  box-shadow: 0 6px 22px rgba(0,0,0,0.25); display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.float-badge-1 { bottom: -14px; left: -20px; }
.float-badge-2 { top: -10px; right: -20px; }

/* Chip de credencial — abaixo do painel */
.hero-cred-chip {
  display: flex; align-items: center; gap: 9px;
  background: rgba(6, 14, 36, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 9px 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.hcc-dot { width: 7px; height: 7px; background: #10B981; border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }
.hero-cred-chip span { font-size: 0.80rem; color: rgba(255,255,255,0.60); }
.hero-cred-chip strong { color: white; font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { min-height: auto; padding: calc(var(--header-h) + 36px) 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .float-badge { display: none; }
}
@media (max-width: 768px) {
  .hero { padding: calc(var(--header-h) + 24px) 0 40px; }
  .hero-title { font-size: 2.4rem; }
  .hero-desc { font-size: 1rem; }
  .hero-cta-block { flex-direction: column; }
  .hero-cta-block > * { justify-content: center; }
  .hero-trust {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .trust-sep { display: none; }
  .trust-item {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.80);
  }
  .hero-visual { display: none; }

  /* Prova social — números */
  .psn-item strong { font-size: 2rem; }
  .ps-numbers { padding: 20px 16px; }

  /* Prova social — mostrar só o primeiro depoimento */
  .pst-card:not(:first-child) { display: none; }

  /* Barra CTA flutuante */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 12px 20px 20px;
    background: white;
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 -4px 20px rgba(14,26,53,0.10);
    z-index: 900;
  }
  .mobile-cta-bar a {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }
}
@media (min-width: 1440px) {
  .hero { min-height: 86vh; padding: calc(var(--header-h) + 56px) 0 64px; }
  .hero-inner { gap: 64px; }
  .hero-title { font-size: 4.6rem; }
  .btn-hero-primary, .btn-hero-ghost { font-size: 1.0625rem; padding: 16px 30px; }
}
@media (min-width: 1920px) {
  .hero-title { font-size: 5.2rem; }
  .hero { min-height: 82vh; }
}

/* ═══════════ DIFERENCIAL ═══════════ */
.section-diff {
  background: var(--navy);
  padding: 40px 0 48px;
}
.diff-trio {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.diff-trio-item {
  display: flex; flex-direction: column; gap: 12px;
  padding: 30px 28px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  transition: transform var(--transition), box-shadow var(--transition);
}
.diff-trio-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.28);
}
.dti-icon {
  width: 46px; height: 46px;
  background: var(--cyan-glow); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.diff-trio-item strong { font-size: 1.125rem; font-weight: 700; color: var(--navy); font-family: var(--font-body); }
.diff-trio-item span   { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.65; }


/* ═══════════ COMO FUNCIONA ═══════════ */
.how-flow {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 48px; align-items: start;
}
.how-flow-header h2 { margin-top: 8px; line-height: 1.12; font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
.how-flow-header p  { font-size: 1rem; color: var(--gray-500); line-height: 1.72; margin-top: 12px; }
.how-flow-header h2 em { font-style: italic; color: var(--cyan); }
.how-flow-steps {
  display: flex; flex-direction: column; gap: 12px;
}
.hf-step {
  display: flex; gap: 18px; align-items: center;
  padding: 22px 26px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: white;
  transition: box-shadow var(--transition);
}
.hf-step:hover { box-shadow: var(--shadow-sm); }
.hf-step-highlight {
  border-color: rgba(14,165,201,0.3);
  background: rgba(14,165,201,0.04);
}
.hf-connector { display: none; }
.hf-num {
  font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 800;
  color: white; background: var(--cyan);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; line-height: 1;
  letter-spacing: 0;
}
.hf-step-highlight .hf-num { background: var(--cyan); opacity: 1; }
.hf-content { flex: 1; }
.hf-content h4 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.hf-content p  { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.65; margin: 0; }
.hf-content p strong { color: var(--cyan); font-weight: 700; }


/* ═══════════ FORMULÁRIO / LEAD ═══════════ */
.lead-section {
  background: white;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.lead-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}

/* Esquerda */
.lead-left h2 { margin-top: 8px; margin-bottom: 12px; line-height: 1.1; }
.lead-left h2 em { font-style: italic; color: var(--cyan); }
.lead-desc { font-size: 1.1875rem; color: var(--gray-500); margin-bottom: 20px; line-height: 1.7; }

/* Foto da especialista */
.lead-specialist-photo {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
}
.lsp-image-wrap {
  position: relative; flex-shrink: 0;
}
.lsp-photo {
  width: 80px; height: 92px;
  object-fit: cover; object-position: center top;
  border-radius: 14px;
  display: block;
  filter: grayscale(8%);
  box-shadow: 0 6px 20px rgba(14,26,53,0.14);
}
.lsp-credential {
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 5px;
  background: white; border-radius: var(--radius-full);
  padding: 3px 8px 3px 5px;
  font-size: 0.65rem; font-weight: 700; color: #059669;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.lsp-cred-dot {
  width: 7px; height: 7px;
  background: #10B981; border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.lsp-caption { flex: 1; }
.lsp-caption strong { display: block; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.lsp-caption span { font-size: 0.875rem; color: var(--gray-500); line-height: 1.4; }

.lead-promises { display: flex; flex-direction: column; gap: 12px; margin-bottom: 0; }
.lp-item { display: flex; align-items: center; gap: 10px; font-size: 1.125rem; color: var(--gray-600); font-weight: 500; }

/* Imagem visual — equilibra altura com o formulário */
.lead-visual {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(14,26,53,0.1);
}
.lead-visual img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform .4s ease;
}
.lead-visual:hover img { transform: scale(1.02); }
@media (max-width: 768px) { .lead-visual { display: none; } }

.lead-social-proof {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
}
.lsp-avatars { display: flex; }
.lsp-av {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.68rem; font-weight: 700;
  border: 2px solid white; margin-right: -8px;
}
.lead-social-proof p { font-size: 1rem; color: var(--gray-600); margin: 0; margin-left: 12px; }
.lead-social-proof p strong { color: var(--navy); }

/* Direita — card do form */
.lead-form-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: 20px; padding: 28px;
  box-shadow: 0 8px 40px rgba(14,26,53,0.08);
}
.lfc-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-100);
}
.lfc-icon {
  width: 40px; height: 40px;
  background: var(--cyan-glow); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); flex-shrink: 0;
}
.lfc-header strong { display: block; font-size: 1.0625rem; font-weight: 700; color: var(--navy); }
.lfc-header span   { font-size: 0.9375rem; color: var(--gray-500); }

/* Campos do form */
.lf-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.lf-group label { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.lf-group input, .lf-group select {
  padding: 12px 15px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 1.0625rem; font-family: var(--font-body);
  color: var(--navy); background: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.lf-group input:focus, .lf-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(14,165,201,0.1);
}
.lf-group input::placeholder { color: var(--gray-300); }
.lf-input-error { border-color: #EF4444 !important; }
.lf-error { font-size: 0.78rem; color: #EF4444; margin-top: 4px; min-height: 1em; }

.lf-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px;
  background: var(--cyan); color: white;
  border: none; border-radius: var(--radius-full);
  font-size: 1.0625rem; font-weight: 700; font-family: var(--font-body);
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 6px 24px rgba(14,165,201,0.35);
  margin-top: 8px;
}
.lf-submit:hover { background: var(--cyan-light); transform: translateY(-1px); box-shadow: 0 10px 32px rgba(14,165,201,0.45); }
.lf-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.lf-disclaimer { font-size: 0.78rem; color: var(--gray-400); text-align: center; margin-top: 10px; margin-bottom: 0; }

/* Estado sucesso */
.lf-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 12px; padding: 16px 0;
}
.lfs-icon {
  width: 56px; height: 56px;
  background: rgba(14,165,201,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.lf-success h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); font-family: var(--font-body); }
.lf-success p  { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; max-width: 300px; }
.lf-success p strong { color: var(--cyan); }
.lfs-steps { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; width: 100%; }
.lfs-step { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gray-400); padding: 8px 12px; border-radius: 8px; background: var(--off-white); }
.lfs-done  { color: #10B981; }
.lfs-done svg { stroke: #10B981; }
.lfs-active { color: var(--cyan); font-weight: 600; }
.lfs-dot { width: 10px; height: 10px; background: var(--cyan); border-radius: 50%; animation: pulse 1.5s infinite; flex-shrink: 0; }
.lfs-dot-off { background: var(--gray-200); animation: none; }


/* ═══════════ PROVA SOCIAL ═══════════ */
.proof-simple { display: flex; flex-direction: column; gap: 40px; }

.ps-numbers {
  display: flex; align-items: center;
  background: var(--navy); border: none;
  border-radius: var(--radius-lg); padding: 28px 48px;
  box-shadow: var(--shadow-sm);
}
.psn-item { flex: 1; text-align: center; }
.psn-item strong { display: block; font-size: 2.6rem; font-weight: 800; color: white; font-family: var(--font-display); line-height: 1; margin-bottom: 5px; }
.psn-item span   { font-size: 1rem; color: rgba(255,255,255,0.6); }
.psn-item strong .psn-star { color: #FBBF24; }
.psn-div { width: 1px; height: 44px; background: rgba(255,255,255,0.12); flex-shrink: 0; margin: 0 20px; }

.ps-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pst-card { background: white; border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 24px 26px; transition: box-shadow var(--transition); }
.pst-card:hover { box-shadow: var(--shadow-md); }
.pst-stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 12px; }
.pst-card > p { font-size: 1.0625rem; color: var(--gray-600); line-height: 1.65; font-style: italic; margin-bottom: 18px; }
.pst-author { display: flex; align-items: center; gap: 10px; }
.pst-av { width: 36px; height: 36px; background: linear-gradient(135deg, var(--navy), var(--cyan-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.72rem; font-weight: 700; flex-shrink: 0; }
.pst-author strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.pst-author span   { font-size: 0.78rem; color: var(--gray-500); }


/* ═══════════ CTA FINAL ═══════════ */
.cta-final {
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 48px 0;
}
.cta-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-final-text { flex: 1; }
.cta-final-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 8px;
}
.cta-final-title em { font-style: italic; color: var(--cyan); }
.cta-final-sub {
  font-size: 1rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}
.cta-final-btn { flex-shrink: 0; }


/* ═══════════ SEÇÃO EXPERIMENTE ═══════════ */
.exp-outer {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.exp-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}
.exp-content { flex: 1; min-width: 0; }
.exp-header  { margin-bottom: 36px; }
.exp-header h2 { margin-bottom: 12px; }
.exp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.exp-image { flex-shrink: 0; }
.exp-image img {
  width: 340px;
  max-width: 100%;
  border-radius: 20px;
  opacity: 0.92;
  box-shadow: 0 24px 64px rgba(14,26,53,0.14);
  display: block;
  object-fit: cover;
}

/* Imagem demo do painel — dentro do card navy */
.demo-img {
  width: 100%;
  margin-top: 16px;
  border-radius: 12px;
  opacity: 0.92;
  display: block;
  border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 1100px) {
  .exp-image { display: none; }
}
@media (max-width: 900px) {
  .exp-section { flex-direction: column; }
  .exp-image { display: block; width: 100%; }
  .exp-image img { width: 100%; max-width: 500px; margin: 0 auto; }
  .exp-cards { grid-template-columns: 1fr; }
}

/* ═══════════ BARRA CTA MOBILE ═══════════ */
/* Oculta por padrão — só aparece via media query */
.mobile-cta-bar { display: none; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .diff-trio { grid-template-columns: 1fr; }
  .diff-trio-item:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .how-flow { grid-template-columns: 1fr; gap: 32px; }
  .lead-layout { grid-template-columns: 1fr; gap: 40px; }
  .ps-numbers { flex-wrap: wrap; padding: 22px 28px; }
  .psn-item { min-width: 45%; margin-bottom: 12px; }
  .psn-div  { display: none; }
  .ps-testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cta-final { padding: 36px 0; }
  .cta-final-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-final-btn { width: 100%; justify-content: center; }
  .lead-form-card { padding: 20px; }
}

/* ═══════════ LARGE SCREENS ═══════════ */
@media (min-width: 1440px) {
  .diff-trio-item { padding: 32px 32px; }
  .how-flow { gap: 80px; }
  .lead-layout { gap: 80px; }
  .lead-form-card { padding: 32px; }
  .cta-final { padding: 56px 0; }
}
@media (min-width: 1920px) {
  .hero { min-height: 80vh; }
  .hero-title { font-size: 4.4rem; }
}