/* ==========================================================================
   SERASA LIMPA NOME - DESIGN SYSTEM & STYLES (PROJETO ESCOLAR)
   ========================================================================== */

/* 1. RESET E VARIÁVEIS GLOBAIS */
:root {
  /* Cores Principais Serasa */
  --primary: #E80070;
  --primary-hover: #D00063;
  --primary-dark: #A5004F;
  --primary-light: #FF2E93;
  --primary-subtle: #FFF0F6;
  --primary-glow: rgba(232, 0, 112, 0.28);
  
  /* Cores Secundárias e Neutras */
  --navy-950: #050814;
  --navy-900: #0B132B;
  --navy-800: #141E3C;
  --navy-700: #1E2D5A;
  --navy-100: #E6EAF4;
  
  --surface-white: #FFFFFF;
  --surface-subtle: #F8FAFC;
  --surface-card: #FFFFFF;
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --border-light: #E2E8F0;
  --border-focus: #E80070;
  
  /* Cores de Destaque */
  --success: #10B981;
  --success-bg: #ECFDF5;
  --success-border: #A7F3D0;
  --warning: #F59E0B;
  --warning-bg: #FEF3C7;
  
  /* Tipografia */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Elevação e Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.12), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 30px var(--primary-glow);
  
  /* Bordas e Transições */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--surface-subtle);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden !important;
  height: 100% !important;
  width: 100% !important;
  touch-action: auto !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 2. BANNER SUPERIOR COM BOTÃO DE CONSULTA */
.top-banner-bar {
  background: linear-gradient(90deg, #E80070 0%, #C81869 50%, #9B0E50 100%);
  padding: 0.6rem 0;
  text-align: center;
  position: relative;
  z-index: 1100;
  box-shadow: 0 2px 10px rgba(232, 0, 112, 0.3);
}

.top-banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-banner-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-banner-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.top-banner-text {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-top-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  color: #E80070;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.btn-top-cta:hover {
  background: #FFF0F6;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  color: #C81869;
}

.brand-image-banner {
  display: none;
}

.brand-logo img,
.header-logo-icon {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  object-fit: contain !important;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--primary-glow);
}

/* RODAPÉ COMPACTO */
.compact-footer {
  background: var(--navy-950);
  color: #94A3B8;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  margin-top: 2rem;
}

.footer-compact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-copy img {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  object-fit: contain !important;
  flex-shrink: 0;
  border-radius: 4px;
}

.footer-links-quick {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-links-quick a:hover {
  color: white;
}

/* 3. CABEÇALHO OFICIAL SERASA LIMPA NOME (FOTO 2 & SNIPPET OFICIAL) */
.headerTop.header--brand {
  background: #E80070 !important;
  background-color: #E80070 !important;
  color: white !important;
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  min-width: 100% !important;
  box-sizing: border-box !important;
  z-index: 9999 !important;
  box-shadow: 0 2px 12px rgba(232, 0, 112, 0.25) !important;
}

.headerTop .ecs-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4.25rem;
}

.headerHamburguer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}

.iconHamburguer {
  width: 18px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.iconHamburguer::before,
.iconHamburguer::after,
.iconHamburguer div {
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 2px;
}

.ea-button--ghost.ht-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}

.headerLogoMini {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
}

.headerLogoMini svg {
  fill: white;
  width: 28px;
  height: 28px;
  display: block;
}

.headerLogo.logo-limpa-nome img {
  height: 32px !important;
  width: auto !important;
  max-height: 32px !important;
  display: block !important;
  position: relative !important;
  inset: auto !important;
  margin: 0 !important;
}

/* HERO SECTION OFICIAL (FOTO 2) */
.serasa-hero-section {
  background: #FFF0F6;
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.serasa-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title-serasa {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  line-height: 1.14;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.hero-brand-title {
  color: #0F172A;
  font-weight: 800;
}

.hero-pink-title {
  color: #E80070;
  font-weight: 800;
}

.hero-desc-serasa {
  font-size: 1.08rem;
  color: #475569;
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.5;
}

.serasa-cpf-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 480px;
  width: 100%;
}

.serasa-input-wrapper {
  position: relative;
  width: 100%;
}

.serasa-cpf-input {
  width: 100%;
  height: 64px;
  min-height: 64px;
  padding: 1.1rem 1.4rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2.5px solid #CBD5E1;
  border-radius: 14px;
  background: white;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.serasa-cpf-input:focus {
  border-color: #E80070;
  box-shadow: 0 0 0 4px rgba(232, 0, 112, 0.25);
}

.btn-serasa-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E80070;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  height: 64px;
  min-height: 64px;
  padding: 0 2rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232, 0, 112, 0.35);
  transition: var(--transition);
  width: 100%;
}

.btn-serasa-cta:hover {
  background: #D00063;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 0, 112, 0.5);
}

.serasa-hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.serasa-img-banner {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(232, 0, 112, 0.12);
}

.logo-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-product {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-800);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Links do Menu */
.main-nav .nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Ações do Header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 0, 112, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  background: var(--surface-subtle);
  color: var(--text-main);
  border-color: #CBD5E1;
}

.btn-light {
  background: white;
  color: var(--primary);
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
  background: #FFF0F6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Menu Hambúrguer (Mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* 4. HERO SECTION */
.hero-section {
  padding: 4rem 0 5rem;
  background: radial-gradient(circle at 85% 20%, rgba(232, 0, 112, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
              linear-gradient(180deg, #FFFFFF 0%, var(--surface-subtle) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-grid-clean {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hero-content-clean {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary-subtle);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(232, 0, 112, 0.15);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232, 0, 112, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 0, 112, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(232, 0, 112, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 0, 112, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1px;
  color: var(--navy-900);
  margin-bottom: 1.25rem;
}

.highlight-pink {
  background: linear-gradient(135deg, var(--primary) 0%, #FF5EA8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

/* Card de Formulário de CPF */
.cpf-card {
  background: var(--surface-white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.cpf-card:hover {
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.08);
}

.cpf-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.input-group {
  display: flex;
  gap: 0.6rem;
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.cpf-input {
  flex: 1;
  padding: 0.9rem 1rem 0.9rem 2.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--surface-subtle);
  outline: none;
  transition: var(--transition);
  color: var(--text-main);
}

.cpf-input:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.btn-submit {
  white-space: nowrap;
}

.input-help {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.trust-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* 5. VISUAL HERO & SCORE METER */
.hero-visual {
  position: relative;
}

.main-preview-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 8, 38, 0.08);
  position: relative;
  z-index: 10;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.user-avatar-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #FF4D9E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px var(--primary-glow);
}

.user-greeting {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.user-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.status-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.status-positive {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid var(--success-border);
}

/* Display do Score Circular */
.score-display {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--surface-subtle);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
  border: 1px solid var(--border-light);
}

.score-circle-container {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.score-gauge {
  transform: rotate(-90deg);
}

.gauge-bg {
  fill: none;
  stroke: #E2E8F0;
  stroke-width: 10;
}

.gauge-progress {
  fill: none;
  stroke: url(#scoreGrad);
  stroke: var(--primary);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 1s ease-out;
}

.score-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
}

.score-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.score-summary h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}

.score-summary p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Cartão de Dívida em Destaque */
.deal-highlight-box {
  background: linear-gradient(135deg, #FFF6FA 0%, #FFFFFF 100%);
  border: 1px solid rgba(232, 0, 112, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.deal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.deal-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-800);
}

.discount-badge {
  background: #E80070;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.deal-pricing {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.price-original {
  font-size: 0.9rem;
  color: var(--text-light);
}

.price-original span {
  text-decoration: line-through;
}

.price-deal {
  font-size: 1.4rem;
  color: var(--navy-900);
}

.price-deal strong {
  color: var(--primary);
  font-weight: 800;
}

.deal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(232, 0, 112, 0.2);
}

.btn-text-link {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-size: 0.8rem;
  transition: var(--transition);
}

.btn-text-link:hover {
  text-decoration: underline;
}

/* Badges Flutuantes */
.floating-badge {
  position: absolute;
  background: white;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 20;
  border: 1px solid var(--border-light);
  animation: float 4s ease-in-out infinite;
}

.floating-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy-900);
}

.floating-badge small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.badge-top {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.badge-bottom {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

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

/* 6. STATS STRIP */
.stats-strip {
  background: var(--navy-900);
  color: white;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FF5EA8;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #94A3B8;
  max-width: 200px;
}

/* 7. SIMULADOR DE NEGOCIAÇÃO INTERATIVO */
.simulator-section {
  padding: 5rem 0;
  background: #F1F5F9;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.simulator-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.simulator-controls {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.control-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.control-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
}

.control-value-display {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-900);
}

.control-value-display.highlight {
  color: var(--primary);
}

/* Range Sliders Customizados */
.range-slider {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  background: #E2E8F0;
  border-radius: var(--radius-full);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy-900);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-slider-pink::-webkit-slider-thumb {
  background: var(--primary);
  box-shadow: 0 2px 8px var(--primary-glow);
}

.range-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Chips de Parcelamento */
.installment-chips {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.chip {
  flex: 1;
  padding: 0.65rem 0.5rem;
  border: 1px solid var(--border-light);
  background: var(--surface-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.chip:hover {
  background: #E2E8F0;
  color: var(--text-main);
}

.chip.active {
  background: var(--primary-subtle);
  border-color: var(--primary);
  color: var(--primary-dark);
  font-weight: 700;
}

/* Bloco do Resultado da Simulação */
.simulator-result {
  background: linear-gradient(145deg, #0B132B 0%, #15224A 100%);
  color: white;
  padding: 3rem;
  display: flex;
  align-items: center;
}

.result-card-inner {
  width: 100%;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.result-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94A3B8;
  font-weight: 700;
}

.economy-tag {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.result-main-value {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.result-main-value small {
  color: #94A3B8;
  font-size: 0.85rem;
}

.final-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0.35rem 0;
  letter-spacing: -0.5px;
}

.installment-detail {
  font-size: 0.85rem;
  color: #38BDF8;
  font-weight: 600;
}

.result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
  color: #CBD5E1;
}

.text-green {
  color: #34D399;
  font-weight: 700;
}

.simulator-disclaimer {
  display: block;
  font-size: 0.72rem;
  color: #64748B;
  text-align: center;
  margin-top: 1rem;
}

/* 8. COMO FUNCIONA (PASSOS) */
.how-it-works-section {
  padding: 5rem 0;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--surface-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 0, 112, 0.3);
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #E2E8F0;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 9. PARCEIROS CREDENCIADOS */
.partners-section {
  padding: 4.5rem 0;
  background: var(--surface-subtle);
  border-top: 1px solid var(--border-light);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.partner-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.partner-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}

.partner-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* 10. DEPOIMENTOS */
.testimonials-section {
  padding: 5rem 0;
  background: white;
}

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

.testimonial-card {
  background: var(--surface-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.savings-tag {
  background: #FFF0F6;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #334155;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-800);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
}

.author-role {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
}

/* 11. FAQ ACCORDION */
.faq-section {
  padding: 5rem 0;
  background: var(--surface-subtle);
  border-top: 1px solid var(--border-light);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: #CBD5E1;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  stroke: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 1.25rem;
}

/* 12. CALL TO ACTION FINAL */
.final-cta {
  padding: 4.5rem 0;
  background: white;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, #C81869 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px var(--primary-glow);
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-box p {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* 13. FOOTER */
.main-footer {
  background: var(--navy-950);
  color: #94A3B8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo .logo-brand {
  color: white;
}

.footer-logo .logo-product {
  color: var(--primary-light);
}

.footer-desc {
  margin-top: 1rem;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: #94A3B8;
}

.footer-col a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
}

.footer-pill {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: #CBD5E1;
}

/* 14. MODAL DE SIMULAÇÃO DE CPF */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(11, 19, 43, 0.78);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: white;
  width: 100%;
  max-width: 430px;
  max-height: calc(100vh - 1rem);
  max-height: calc(100dvh - 1rem);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: auto;
}

.modal-overlay.open .modal-dialog {
  transform: scale(1);
}

.modal-result {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: hidden;
}

/* Loading State */
.modal-loading {
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 4px solid #E2E8F0;
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.modal-loading h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.modal-loading p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Result State */
.modal-header {
  padding: 0.75rem 1rem;
  background: var(--surface-subtle);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--success);
  display: block;
}

.modal-title-area h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--navy-900);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-body {
  padding: 0.6rem 0.75rem !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  touch-action: pan-y !important;
  flex: 1 1 auto;
  min-height: 0;
}

/* Card com dados reais retornados da API */
.user-api-card {
  background: var(--surface-subtle);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.6rem;
}

.user-api-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.user-api-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-api-main {
  flex: 1;
}

.user-api-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.user-api-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy-900);
}

.api-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  background: #E0E7FF;
  color: #3730A3;
}

.user-api-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 0.5rem;
  background: white;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.api-detail-item small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-light);
}

.api-detail-item span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
}

.text-success-badge {
  color: var(--success) !important;
}

.debt-alert-card {
  background: #FFF0F6;
  border: 2px solid #FBCFE8;
  border-radius: var(--radius-md);
  padding: 0.75rem 0.85rem;
  margin-top: 0.6rem;
  box-shadow: 0 4px 15px rgba(232, 0, 112, 0.08);
}

.urgency-theme {
  border-color: #E80070;
  box-shadow: 0 6px 25px rgba(232, 0, 112, 0.15);
}

.debt-urgency-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #0F172A;
  padding: 0 0 0.4rem 0;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.debt-alert-top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.debt-alert-badge-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.debt-alert-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #9D174D;
  margin-bottom: 0.35rem;
}

.debt-alert-info p {
  font-size: 0.9rem;
  color: #831843;
  line-height: 1.45;
}

.date-highlight-text {
  background: transparent !important;
  color: #E80070 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.debt-alert-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #FBCFE8;
  margin-bottom: 1.1rem;
}

.price-val-highlight {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #E80070;
}

.price-val-highlight strong {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 600;
}

.btn-urgent-pulse {
  background: linear-gradient(135deg, #E80070 0%, #BE185D 100%) !important;
  font-size: 1rem !important;
  letter-spacing: 0.5px;
  animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(232, 0, 112, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 8px 25px rgba(232, 0, 112, 0.6); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(232, 0, 112, 0.4); }
}

.debt-price-item small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.debt-price-item .price-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.debt-price-item .price-val strong {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 600;
}

.offer-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.offer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}

.creditor-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-900);
}

.contract-code {
  font-size: 0.75rem;
  color: var(--text-light);
}

.offer-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.old-price {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.new-price {
  font-size: 0.95rem;
  color: var(--navy-900);
}

.new-price strong {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 800;
}

.coupon-box {
  background: #FFF0F6;
  border: 1px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--primary-dark);
}

.coupon-box strong {
  color: var(--primary);
}

.coupon-box small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.modal-footer {
  padding: 1rem 1.5rem;
  background: var(--surface-subtle);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
}

/* 15. TOAST NOTIFICATION */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy-900);
  color: white;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 16. RESPONSIVIDADE (MOBILE & TABLET) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 2.35rem;
  }
  
  .simulator-card {
    grid-template-columns: 1fr;
  }
  
  .simulator-controls {
    padding: 2rem;
  }
  
  .simulator-result {
    padding: 2rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .headerTop.header--brand {
    background: #E80070 !important;
    padding: 0.25rem 0 !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
  }

  .headerTop .ecs-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 3.8rem !important;
    padding: 0 1rem !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  .headerHamburguer, 
  .ea-button--ghost.ht-cta {
    color: #FFFFFF !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    background: transparent !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
  }

  .headerHamburguer svg,
  .ea-button--ghost.ht-cta svg,
  .headerLogoMini svg {
    fill: #FFFFFF !important;
    stroke: #FFFFFF !important;
    color: #FFFFFF !important;
  }

  .headerLogo.logo-limpa-nome img {
    height: 28px !important;
    max-height: 28px !important;
    width: auto !important;
    display: block !important;
  }

  .serasa-hero-section {
    padding: 1.75rem 1rem 2.5rem !important;
    background: #FFF0F6 !important;
  }

  .serasa-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .hero-title-serasa {
    font-size: 1.95rem !important;
    line-height: 1.2 !important;
    text-align: left !important;
    margin-bottom: 1rem !important;
  }

  .hero-desc-serasa {
    font-size: 0.98rem !important;
    margin-bottom: 1.5rem !important;
    text-align: left !important;
    line-height: 1.45 !important;
  }

  .serasa-cpf-form {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
  }

  .serasa-input-wrapper {
    width: 100% !important;
    position: relative !important;
  }

  .serasa-cpf-input {
    width: 100% !important;
    height: 64px !important;
    min-height: 64px !important;
    font-size: 19px !important; /* Forces mobile numeric keyboard popup & prevents iOS zoom */
    padding: 0.9rem 1.25rem !important;
    border: 2.5px solid #CBD5E1 !important;
    border-radius: 14px !important;
    background: #FFFFFF !important;
    color: #0F172A !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    touch-action: manipulation !important;
    cursor: text !important;
    display: block !important;
    position: relative !important;
    z-index: 10 !important;
  }

  .serasa-cpf-input:focus {
    border-color: #E80070 !important;
    box-shadow: 0 0 0 4px rgba(232, 0, 112, 0.25) !important;
    background: #FFFFFF !important;
  }

  .btn-serasa-cta {
    width: 100% !important;
    height: 64px !important;
    min-height: 64px !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    border-radius: 14px !important;
    background: #E80070 !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(232, 0, 112, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    border: none !important;
  }

  .serasa-img-banner {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 18px !important;
    height: auto !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .hero-title-serasa {
    font-size: 1.75rem !important;
  }

  .serasa-cpf-input {
    height: 68px !important;
    min-height: 68px !important;
    font-size: 20px !important;
  }

  .btn-serasa-cta {
    height: 68px !important;
    min-height: 68px !important;
    font-size: 1.25rem !important;
  }
}

/* ==========================================================================
   RESET GLOBAL DE TRANSBORDAMENTO (PREVINE BUG DE ZOOM E SCROLL LATERAL)
   ========================================================================== */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
}

.headerTop.header--brand {
  background: #E80070 !important;
  background-color: #E80070 !important;
  color: white !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
  z-index: 99999 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
}

.main-content {
  margin-top: 4.25rem !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.serasa-hero-section, 
.serasa-hero-grid,
#main-footer {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ==========================================================================
   CARD DE BUSCA DE CPF DESTACADO E ENORME
   ========================================================================== */
.serasa-cpf-card-box {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 30px rgba(232, 0, 112, 0.12);
  border: 2px solid #FBCFE8;
  width: 100%;
  max-width: 500px;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .serasa-cpf-card-box {
    padding: 1.5rem 1.25rem !important;
    border-radius: 18px !important;
    max-width: 100% !important;
    background: #FFFFFF !important;
    box-shadow: 0 10px 30px rgba(232, 0, 112, 0.15) !important;
  }
  .serasa-cpf-input {
    height: 68px !important;
    min-height: 68px !important;
    font-size: 20px !important;
    padding: 1rem 1.25rem !important;
    border-radius: 16px !important;
    border: 2.5px solid #CBD5E1 !important;
  }
  .btn-serasa-cta {
    height: 68px !important;
    min-height: 68px !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 25px rgba(232, 0, 112, 0.45) !important;
  }
}

/* ==========================================================================
   RODAPÉ OFICIAL SERASA EXPERIAN (LADO A LADO EM MULTICOLUNAS)
   ========================================================================== */
#main-footer {
  background: #FFFFFF !important;
  color: #334155 !important;
  padding: 3.5rem 0 2.5rem !important;
  font-family: var(--font-body) !important;
  border-top: 1px solid #E2E8F0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

#main-footer .footer-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 1.25rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

#main-footer .footer-columns {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 1.5rem 1rem !important;
  margin-bottom: 2.5rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

#main-footer .footer-column {
  flex: 1 1 160px !important;
  min-width: 140px !important;
  max-width: 48% !important;
  box-sizing: border-box !important;
}

#main-footer .footer-title {
  font-family: var(--font-heading) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin-bottom: 0.85rem !important;
  white-space: nowrap !important;
}

#main-footer .footer-column ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.45rem !important;
}

#main-footer .footer-column a {
  color: #475569 !important;
  font-size: 0.85rem !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  display: inline-block !important;
}

#main-footer .footer-column a:hover {
  color: #E80070 !important;
}

#main-footer .footer-etc {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 1.5rem !important;
  padding: 1.75rem 0 !important;
  border-top: 1px solid #F1F5F9 !important;
  margin-bottom: 1.75rem !important;
  width: 100% !important;
}

#main-footer .footer-social-networks {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.75rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-wrap: wrap !important;
}

#main-footer .footer-social-networks img {
  width: 32px !important;
  height: 32px !important;
  object-fit: contain !important;
}

#main-footer .footer-apps {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.75rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#main-footer .footer-apps img {
  height: 36px !important;
  width: auto !important;
}

#main-footer .footer-stamp {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1rem !important;
}

#main-footer .footer-stamp img {
  height: 44px !important;
  width: auto !important;
  object-fit: contain !important;
}

#main-footer .footer-extra-links {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.25rem 2rem !important;
  flex-wrap: wrap !important;
  list-style: none !important;
  padding: 1.25rem 0 !important;
  margin-bottom: 1.75rem !important;
  border-top: 1px solid #F1F5F9 !important;
  border-bottom: 1px solid #F1F5F9 !important;
  width: 100% !important;
}

#main-footer .footer-extra-links a {
  color: #E80070 !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

#main-footer .footer-address-title {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #64748B !important;
  margin-bottom: 0.75rem !important;
  text-align: center !important;
}

#main-footer .footer-addresses-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.4rem !important;
  text-align: center !important;
  width: 100% !important;
}

#main-footer .footer-address {
  font-size: 0.76rem !important;
  color: #94A3B8 !important;
  line-height: 1.4 !important;
}

@media (max-width: 768px) {
  #main-footer .footer-columns {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 1.5rem 0.85rem !important;
  }

  #main-footer .footer-column {
    flex: 1 1 45% !important;
    min-width: 135px !important;
    max-width: 48% !important;
  }

  #main-footer .footer-etc {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1.25rem !important;
    text-align: center !important;
  }

  #main-footer .footer-social-networks,
  #main-footer .footer-apps,
  #main-footer .footer-stamp {
    justify-content: center !important;
  }

  #main-footer .footer-extra-links {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1rem 1.25rem !important;
  }
}
