/* ==========================================================================
   credito.vc - Manual de Identidade e Estilos Core (Versão Flat / Sem Sombras)
   Fintech Editorial de Alta Performance
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & VARIABLE SETUP
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - design.md Specification */
  --color-neon-mint: #2BFFBC;
  --color-deep-teal: #008E7D;
  --color-deep-teal-hover: #007567;
  --color-deep-teal-alpha: rgba(0, 142, 125, 0.15);
  --color-corp-dark: #0A0F12;
  --color-corp-dark-80: rgba(10, 15, 18, 0.85);
  --color-corp-dark-surface: #141C22;
  --color-white: #FFFFFF;
  --color-mist-gray: #F1F4F5;
  --color-mist-gray-dark: #E2E7EA;

  /* Alert / Market Status Colors */
  --color-alert-red: #FF4D4D;
  --color-alert-red-alpha: rgba(255, 77, 77, 0.12);
  --color-mint-alpha: rgba(43, 255, 188, 0.15);
  --color-text-secondary: #5A6570;
  --color-text-muted: #8A97A4;
  --color-border: #E5E9EC;

  /* Typography Tokens */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Lora', Georgia, Cambria, serif;

  /* Spacing System */
  --space-xs: 0.25rem;
  /* 4px */
  --space-sm: 0.5rem;
  /* 8px */
  --space-md: 1rem;
  /* 16px */
  --space-lg: 1.5rem;
  /* 24px */
  --space-xl: 2rem;
  /* 32px */
  --space-2xl: 3rem;
  /* 48px */
  --space-3xl: 4rem;
  /* 64px */

  /* Shadows - REMOVED PER USER INSTRUCTION */
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-deep: none;
  --shadow-mint-glow: none;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  box-shadow: none !important;
  /* Strict Enforcement: Remove all shadows across design */
  text-shadow: none !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-corp-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* Container & 12-Column Grid System */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-lg);
}

/* --------------------------------------------------------------------------
   3. TOP FINANCIAL TICKER
   -------------------------------------------------------------------------- */
.top-ticker-bar {
  background-color: var(--color-corp-dark);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.top-ticker-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticker-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  white-space: nowrap;
}

.ticker-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-neon-mint);
  border-radius: 50%;
  margin-right: 4px;
}

.ticker-scroll-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 var(--space-sm);
}

.ticker-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.ticker-name {
  color: #A0B0B9;
  font-weight: 600;
}

.ticker-val {
  color: var(--color-white);
  font-weight: 700;
}

.ticker-change {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.72rem;
}

.ticker-change.up {
  color: var(--color-neon-mint);
  background: rgba(43, 255, 188, 0.12);
}

.ticker-change.down {
  color: var(--color-alert-red);
  background: rgba(255, 77, 77, 0.12);
}

/* --------------------------------------------------------------------------
   4. NAVIGATION & HEADER
   -------------------------------------------------------------------------- */
.main-header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 90;
  transition: all var(--transition-fast);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

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

.brand-text {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-corp-dark);
}

.brand-vc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-neon-mint);
  color: var(--color-corp-dark);
  font-weight: 900;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-deep-teal);
  margin-left: 2px;
  font-size: 1.25rem;
}

/* Navigation Categories */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-corp-dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--color-neon-mint);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.search-btn {
  background: transparent;
  color: var(--color-corp-dark);
  font-size: 1.1rem;
  padding: 8px;
  border-radius: 50%;
  transition: background var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: var(--color-mist-gray);
  color: var(--color-deep-teal);
}

/* Buttons - Flat Style */
.btn-primary {
  background-color: var(--color-neon-mint);
  color: var(--color-corp-dark);
  border: 1px solid #1BECA7;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: #24E5A8;
  border-color: var(--color-deep-teal);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-deep-teal);
  border: 2px solid var(--color-deep-teal);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background-color: var(--color-deep-teal);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Botão Voltar: apenas ícone, compacto (square) */
.btn-icon-only {
  background-color: var(--color-mist-gray);
  color: var(--color-corp-dark);
  border: 1px solid var(--color-border);
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 0;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  font: inherit;
}

.btn-icon-only:hover {
  background-color: var(--color-mist-gray-dark);
  border-color: var(--color-deep-teal);
  color: var(--color-deep-teal);
}

.btn-icon-only:focus-visible {
  outline: 2px solid var(--color-deep-teal);
  outline-offset: 2px;
}

.btn-icon-only [data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.mobile-toggle {
  display: none;
  background: transparent;
  font-size: 1.4rem;
  color: var(--color-corp-dark);
}

/* Sub-header Trending Bar */
.subnav-bar {
  background: var(--color-mist-gray);
  border-bottom: 1px solid var(--color-border);
  padding: 8px 0;
  font-size: 0.82rem;
}

.subnav-bar .container {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.subnav-tag {
  background-color: var(--color-corp-dark);
  color: var(--color-neon-mint);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.subnav-topics {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  overflow-x: auto;
  scrollbar-width: none;
}

.subnav-topic-link {
  color: var(--color-text-secondary);
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.subnav-topic-link:hover {
  color: var(--color-deep-teal);
}

/* --------------------------------------------------------------------------
   5. HERO GRID (A CAPA) - FLAT & CLEAN
   -------------------------------------------------------------------------- */
.hero-section {
  padding: var(--space-xl) 0;
}

.hero-main-card {
  grid-column: span 8;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-main-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-deep-teal);
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--color-corp-dark);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-main-card:hover .hero-image-wrap img {
  transform: scale(1.03);
}

.badge-category {
  display: inline-block;
  background-color: var(--color-neon-mint);
  color: var(--color-corp-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xs);
  border: 1px solid rgba(0, 142, 125, 0.4);
}

.badge-overlay {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 10;
}

.hero-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-grow: 1;
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--color-corp-dark);
  transition: color var(--transition-fast);
}

.hero-main-card:hover .hero-title {
  color: var(--color-deep-teal);
}

.hero-excerpt {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.meta-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-top: auto;
  padding-top: var(--space-sm);
}

.meta-author {
  color: var(--color-corp-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.author-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-deep-teal);
}

/* Secondary Stories Column (Right 4 Cols) */
.hero-secondary-col {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-deep-teal);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--color-neon-mint);
  margin-bottom: var(--space-xs);
}

.secondary-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.secondary-card:hover {
  transform: translateX(4px);
  border-color: var(--color-deep-teal);
  background-color: var(--color-mist-gray);
}

.secondary-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-corp-dark);
}

.secondary-card:hover .secondary-title {
  color: var(--color-deep-teal);
}

/* --------------------------------------------------------------------------
   6. QUICK CREDIT SIMULATOR STRIP - FLAT
   -------------------------------------------------------------------------- */
.quick-simulator-strip {
  background: var(--color-corp-dark);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color-deep-teal);
}

.quick-sim-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.quick-sim-header {
  max-width: 420px;
}

.quick-sim-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.quick-sim-title span {
  color: var(--color-neon-mint);
}

.quick-sim-desc {
  font-size: 0.9rem;
  color: #A0B3C2;
}

.quick-sim-form {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sim-input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sim-input-group label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-neon-mint);
  font-weight: 700;
}

.sim-select,
.sim-input {
  background: var(--color-corp-dark);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 180px;
}

.sim-select:focus,
.sim-input:focus {
  border-color: var(--color-neon-mint);
}

/* --------------------------------------------------------------------------
   7. COLUMNISTS SECTION (FLAT CARD & RINGS)
   -------------------------------------------------------------------------- */
.columnists-section {
  background: var(--color-mist-gray);
  padding: var(--space-2xl) 0;
  margin: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.section-title-large {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-corp-dark);
  letter-spacing: -0.02em;
}

.columnists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.columnist-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.columnist-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-deep-teal);
}

.columnist-avatar-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: var(--space-md);
}

.columnist-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-deep-teal);
  transition: border-color var(--transition-normal), transform var(--transition-normal);
}

.columnist-card:hover .columnist-avatar {
  border-color: var(--color-neon-mint);
  transform: scale(1.05);
}

.columnist-badge-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--color-corp-dark);
  color: var(--color-neon-mint);
  font-size: 0.65rem;
  font-weight: 900;
  padding: 3px 6px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-white);
}

.columnist-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-corp-dark);
  margin-bottom: 2px;
}

.columnist-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-deep-teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.columnist-article-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--color-text-secondary);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   8. MAIN CONTENT LAYOUT
   -------------------------------------------------------------------------- */
.main-content-layout {
  padding: var(--space-xl) 0;
}

.editorial-col {
  grid-column: span 8;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.sidebar-col {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.editorial-block-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-corp-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--color-corp-dark);
  margin-bottom: var(--space-lg);
}

.editorial-block-title span::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--color-neon-mint);
  margin-left: 8px;
  border-radius: 2px;
}

.see-more-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-deep-teal);
  display: flex;
  align-items: center;
  gap: 4px;
}

.see-more-link:hover {
  color: var(--color-corp-dark);
}

.news-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.news-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-deep-teal);
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img {
  transform: scale(1.04);
}

.news-card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.news-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-corp-dark);
}

.news-card:hover .news-card-title {
  color: var(--color-deep-teal);
}

.news-card-excerpt {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* List Style News Block */
.news-list-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.news-list-item {
  display: flex;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  transition: transform var(--transition-fast);
}

.news-list-item:last-child {
  border-bottom: none;
}

.news-list-item:hover {
  transform: translateX(4px);
}

.news-list-thumb {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.news-list-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-corp-dark);
}

.news-list-item:hover .news-list-title {
  color: var(--color-deep-teal);
}

/* --------------------------------------------------------------------------
   9. SIDEBAR WIDGETS - FLAT
   -------------------------------------------------------------------------- */
.widget-box {
  background: var(--color-mist-gray);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-corp-dark);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-deep-teal);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.trending-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  transition: transform var(--transition-fast);
}

.trending-item:hover {
  transform: translateX(4px);
}

.trending-rank {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-deep-teal);
  line-height: 1;
  min-width: 28px;
}

.trending-title {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-corp-dark);
}

.trending-item:hover .trending-title {
  color: var(--color-deep-teal);
}

/* Sidebar Promotional Banner */
.sidebar-promo-card {
  background: var(--color-deep-teal);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 2px solid var(--color-neon-mint);
  position: relative;
  overflow: hidden;
}

.promo-badge {
  display: inline-block;
  background: var(--color-neon-mint);
  color: var(--color-corp-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.promo-title {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.promo-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
}

/* Market Rates Calculator Widget */
.widget-calc {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

/* --------------------------------------------------------------------------
   10. CONVERSION SYSTEM: ARTICLE-END CTA BANNER (SERIOUS & CENTERED)
   -------------------------------------------------------------------------- */
.article-end-cta-section {
  margin: var(--space-3xl) auto;
}

.article-end-cta-banner {
  background: var(--color-corp-dark);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color-deep-teal);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-banner-content {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.cta-banner-badge {
  display: inline-block;
  background: var(--color-deep-teal);
  color: var(--color-neon-mint);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  border: 1px solid rgba(43, 255, 188, 0.3);
}

.cta-banner-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-white);
}

.cta-banner-subtitle {
  font-size: 1rem;
  color: #A0B0B9;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: 640px;
}

.cta-banner-action {
  position: relative;
  z-index: 2;
}

.btn-cta-lg {
  background-color: var(--color-neon-mint);
  color: var(--color-corp-dark);
  border: 1px solid #1BECA7;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-cta-lg:hover {
  transform: translateY(-2px);
  background-color: #24E5A8;
  border-color: var(--color-deep-teal);
}

/* display: inline-flex;
align-items: center;
gap: 10px;
} */

.btn-cta-lg:hover {
  transform: scale(1.03);
  background-color: #26FEB9;
}

/* --------------------------------------------------------------------------
   11. THE "VC" CREDIT MODAL (2-COLUMN DESKTOP & FULLSCREEN MOBILE)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-corp-dark-80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

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

/* 2-Column Container Layout */
.modal-container {
  background-color: var(--color-white);
  width: 100%;
  max-width: 920px;
  min-height: 720px;
  max-height: 94vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition-bounce);
  position: relative;
  display: flex;
}

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

/* Left Sidebar Column with Background Image + Solid Teal Overlay */
.modal-sidebar-col {
  width: 320px;
  flex-shrink: 0;
  position: relative;
  color: var(--color-white);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--color-border);
  overflow: hidden;
}

.modal-sidebar-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-deep-teal);
  opacity: 0.82;
  z-index: 0;
}

.modal-sidebar-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/image-modal-side.avif') center/cover no-repeat;
  z-index: 0;
  mix-blend-mode: luminosity;
  opacity: 0.35;
}

.modal-sidebar-col > * {
  position: relative;
  z-index: 1;
}

.modal-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 800;
}

.modal-sidebar-trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
}

.trust-icon {
  width: 28px;
  height: 28px;
  background: var(--color-neon-mint);
  color: var(--color-corp-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.trust-icon svg,
.trust-icon [data-lucide] {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

/* Right Main Column (Form Flow) */
.modal-main-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background-color: var(--color-white);
  position: relative;
}

/* --------------------------------------------------------------------------
   10.2 MODAL CLOSE BUTTON (Flutuante no canto superior direito)
   -------------------------------------------------------------------------- */
.modal-close-btn-floating {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  background: var(--color-white);
  color: var(--color-corp-dark);
  border: 1px solid var(--color-border);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
  padding: 0;
}

.modal-close-btn-floating:hover {
  background: var(--color-mist-gray);
  border-color: var(--color-deep-teal);
  color: var(--color-deep-teal);
  transform: rotate(90deg);
}

.modal-close-btn-floating:active {
  transform: rotate(90deg) scale(0.92);
}

.modal-close-btn-floating [data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.modal-progress-bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-mist-gray);
  position: sticky;
  top: 0;
  z-index: 5;
  flex-shrink: 0;
}

.modal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-deep-teal) 0%, var(--color-neon-mint) 100%);
  width: 0;
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 0 3px 3px 0;
}

.modal-body {
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  min-height: 540px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.modal-step {
  display: none;
  animation: fadeInStep 0.3s ease;
  flex: 1;
  flex-direction: column;
}

.modal-step.active {
  display: flex;
}

/* Área de campos do step — preenche o espaço disponível
   e centraliza verticalmente seu conteúdo (título + inputs) */
.step-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: var(--space-md);
  min-height: 0;
}

.step-body.step-center {
  text-align: center;
  align-items: center;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

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

.step-question {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-corp-dark);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.step-subtitle {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.credit-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.credit-opt-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.credit-opt-card:hover,
.credit-opt-card.selected {
  border-color: var(--color-deep-teal);
  background-color: rgba(43, 255, 188, 0.06);
}

.credit-opt-card.selected {
  border-color: var(--color-neon-mint);
  border-width: 2px;
}

.opt-icon {
  font-size: 1.5rem;
  color: var(--color-deep-teal);
}

.opt-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-corp-dark);
}

.opt-desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.slider-container {
  background: var(--color-mist-gray);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--color-border);
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.slider-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-deep-teal);
}

.modal-result-box {
  background: var(--color-corp-dark);
  color: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--color-deep-teal);
}

.res-label {
  font-size: 0.8rem;
  color: #A0B0B9;
}

.res-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-neon-mint);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-lg);
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-corp-dark);
  letter-spacing: -0.005em;
}

.form-input {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-corp-dark);
  background-color: var(--color-white);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.form-input::placeholder {
  color: var(--color-text-muted);
  font-weight: 500;
}

.form-input:focus {
  border-color: var(--color-deep-teal);
  background-color: rgba(0, 142, 125, 0.02);
}

/* Estado de erro (validação inline) — vermelho com X à direita */
.form-input.input-error {
  border-color: var(--color-alert-red);
  background-color: var(--color-alert-red-alpha);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23FF4D4D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
  padding-right: 44px;
  animation: shakeInput 0.32s ease;
}

/* Estado de sucesso — verde com check à direita */
.form-input.input-valid {
  border-color: var(--color-deep-teal);
  background-color: rgba(0, 142, 125, 0.04);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23008E7D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
  padding-right: 44px;
}

@keyframes shakeInput {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

/* --------------------------------------------------------------------------
   11.1 AMOUNT SLIDER (Steps Progressivos R$ 100 → R$ 50.000)
   -------------------------------------------------------------------------- */
.amount-slider-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: 4px;
}

.amount-slider-header label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-corp-dark);
  letter-spacing: -0.005em;
}

.amount-slider-display {
  font-family: var(--font-sans);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-deep-teal);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.amount-slider-wrap {
  position: relative;
  height: 32px;
  display: flex;
  align-items: center;
  margin-top: 6px;
}

/* Trilha "vazia" cinza (camada de fundo) */
.amount-slider-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--color-mist-gray-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

/* Trilha "preenchida" mint (acima do ::before, abaixo do thumb) */
.amount-slider-track-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 8px;
  background: var(--color-neon-mint);
  border-radius: var(--radius-full);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  width: 0;
  transition: width var(--transition-fast);
}

.amount-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px; /* track de 8px, centralizado pelo flex do wrap (área de clique 32px) */
  background: transparent;
  outline: none;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  cursor: pointer;
  display: block;
}

/* Track nativo TRANSPARENTE — o cinza é o ::before, o mint é a track-fill */
.amount-slider::-webkit-slider-runnable-track {
  height: 8px;
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
}

.amount-slider::-moz-range-track {
  height: 8px;
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
}

/* Thumb (alça) - Webkit */
.amount-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  background-color: var(--color-neon-mint);
  border: 3px solid var(--color-deep-teal);
  border-radius: 50%;
  margin-top: -9px; /* centraliza o thumb 26px num track de 8px */
  cursor: grab;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  outline: 4px solid rgba(0, 142, 125, 0.15);
  outline-offset: 0;
}

.amount-slider::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}

.amount-slider:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.18);
  outline-color: rgba(0, 142, 125, 0.25);
}

/* Thumb (alça) - Mozilla */
.amount-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  background-color: var(--color-neon-mint);
  border: 3px solid var(--color-deep-teal);
  border-radius: 50%;
  cursor: grab;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  outline: 4px solid rgba(0, 142, 125, 0.15);
  outline-offset: 0;
}

.amount-slider::-moz-range-thumb:hover {
  transform: scale(1.12);
}

.amount-slider:active::-moz-range-thumb {
  cursor: grabbing;
  transform: scale(1.18);
  outline-color: rgba(0, 142, 125, 0.25);
}

.amount-slider-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   11.2 MODAL HELPERS (Steps, Strips, Cards, Buttons Grandes)
   -------------------------------------------------------------------------- */

/* Botão largura cheia (usado em CTAs principais de cada step) */
.btn-block {
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

/* Form dentro de cada step - ocupa toda a altura disponível */
.step-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

/* Hint/legenda abaixo de um input */
.form-hint {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 2px;
  line-height: 1.4;
  font-weight: 500;
}

/* Contador de passo discreto no canto */
.step-counter {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Strip do CPF validado no passo 2 */
.cpf-strip {
  background: transparent;
  padding: 6px 0;
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
  font-weight: 500;
}

.cpf-strip strong {
  color: var(--color-corp-dark);
  font-weight: 700;
}

.cpf-strip-ok {
  color: var(--color-deep-teal);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Strip de valor aprovado no passo 6 (KYC) */
.approved-strip {
  background: var(--color-mist-gray);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.approved-strip-label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.approved-strip-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-deep-teal);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.approved-strip-ok {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-deep-teal);
  background: var(--color-mint-alpha);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* Card escuro da CCB (passo 7) */
.ccb-card {
  background: var(--color-corp-dark);
  color: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--color-deep-teal);
}

.ccb-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #A0B0B9;
  margin-bottom: 6px;
  font-weight: 600;
}

.ccb-card-status {
  color: var(--color-neon-mint);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.ccb-card-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-neon-mint);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.ccb-card-meta {
  font-size: 0.8rem;
  color: #A0B0B9;
  margin-top: 4px;
}

.ccb-card-meta strong {
  color: var(--color-white);
}

/* Upload box (passo 6) */
.upload-box {
  border: 2px dashed var(--color-border);
  padding: var(--space-lg);
  text-align: center;
  border-radius: var(--radius-md);
  background: var(--color-mist-gray);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.upload-box:hover {
  border-color: var(--color-deep-teal);
  background: rgba(0, 142, 125, 0.04);
}

.upload-box-icon {
  font-size: 1.6rem;
}

.upload-box-text {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  font-weight: 600;
}

.upload-box input[type="file"] {
  display: none;
}

.upload-box.uploaded {
  border-color: var(--color-deep-teal);
  border-style: solid;
  background: rgba(0, 142, 125, 0.08);
  color: var(--color-deep-teal);
}

/* Card de informação (App download, Sucesso) */
.info-card {
  background: var(--color-mist-gray);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: left;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-corp-dark);
}

.info-card-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-corp-dark);
  margin-bottom: 6px;
}

.info-card-list {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: 18px;
  list-style: disc;
}

.info-card-success {
  border-left: 4px solid var(--color-deep-teal);
  line-height: 1.7;
}

/* Acordo Certo - Tela de recusa */
.acordo-certo {
  text-align: center;
  padding: var(--space-md) 0;
}

.acordo-certo-icon {
  width: 56px;
  height: 56px;
  background: var(--color-alert-red-alpha);
  color: var(--color-alert-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md) auto;
  border: 2px solid var(--color-alert-red);
  font-weight: 800;
  font-size: 1.4rem;
}

/* Container central para steps sem form (app download, sucesso) */
.step-center {
  text-align: center;
  align-items: center;
  padding: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: var(--space-md);
}

.app-icon-circle,
.success-icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(0, 142, 125, 0.1);
  color: var(--color-deep-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md) auto;
  border: 2px solid var(--color-deep-teal);
  font-size: 1.6rem;
}

.success-icon-circle svg {
  display: block;
}

/* --------------------------------------------------------------------------
   11.3 OPTION BUTTONS (Radio Groups Estilizados como Botões Grandes)
   -------------------------------------------------------------------------- */
.option-grid {
  display: grid;
  gap: 10px;
  width: 100%;
}

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

.option-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.option-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.option-btn {
  background: var(--color-white);
  color: var(--color-corp-dark);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 56px;
  text-align: center;
  line-height: 1.2;
  position: relative;
  font-family: inherit;
}

.option-btn:hover {
  border-color: var(--color-deep-teal);
  background: rgba(0, 142, 125, 0.04);
  transform: translateY(-1px);
}

.option-btn:focus-visible {
  outline: 3px solid rgba(0, 142, 125, 0.35);
  outline-offset: 2px;
}

.option-btn.option-btn-error {
  border-color: var(--color-alert-red);
  background: var(--color-alert-red-alpha);
  animation: shakeOption 0.4s ease;
}

@keyframes shakeOption {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

.option-btn.selected {
  border-color: var(--color-deep-teal);
  background: rgba(0, 142, 125, 0.08);
  color: var(--color-deep-teal);
}

/* Variação com label + sub (usado nas marcas de smartphone) */
.option-btn-brand {
  padding: 18px 10px;
  min-height: 92px;
  gap: 8px;
}

.option-btn-label {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.option-btn-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1px;
}

.option-btn.selected .option-btn-sub {
  color: var(--color-deep-teal);
  opacity: 0.75;
}

/* Logo da marca (SVG horizontal preto ~2:1) */
.option-btn-brand-logo {
  display: block;
  width: auto;
  height: 38px;
  max-width: 96px;
  object-fit: contain;
  margin-bottom: 2px;
  filter: grayscale(1) contrast(1.05);
  transition: filter var(--transition-fast), opacity var(--transition-fast);
  opacity: 0.85;
}

.option-btn.selected .option-btn-brand-logo {
  filter: grayscale(1) contrast(1.1) brightness(0.5);
  opacity: 1;
}

.option-btn-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--color-mist-gray-dark);
  margin-bottom: 6px;
  color: var(--color-corp-dark);
}

.option-btn-icon[data-lucide],
.option-btn-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.option-btn.selected .option-btn-icon {
  background: var(--color-deep-teal);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   11.4 LUCIDE ICON SIZING (Global)
   -------------------------------------------------------------------------- */
[data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.btn-primary [data-lucide],
.btn-secondary [data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
  vertical-align: middle;
  display: inline-block;
}

.upload-box-icon[data-lucide] {
  width: 32px;
  height: 32px;
  color: var(--color-deep-teal);
  stroke-width: 1.8;
  margin-bottom: 6px;
}

.acordo-certo-icon [data-lucide] {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

.app-icon-circle [data-lucide],
.success-icon-circle [data-lucide] {
  width: 30px;
  height: 30px;
  stroke-width: 2;
}

.approved-strip-ok [data-lucide] {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
  vertical-align: middle;
  margin-right: 4px;
}

.ccb-card-status [data-lucide] {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
}

.cpf-strip [data-lucide] {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 6px;
  color: var(--color-deep-teal);
}

.info-card [data-lucide] {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--color-deep-teal);
  stroke-width: 2.2;
}

/* --------------------------------------------------------------------------
   11.4 MODAL HEADER LOGO & SIDEBAR LOGO
   -------------------------------------------------------------------------- */
.modal-header-logo {
  height: 40px;
  width: auto;
  display: block;
}

.modal-sidebar-logo {
  height: 48px;
  width: auto;
  display: block;
  /* Sidebar é escura: inverte o logo pra ficar claro (monocromático branco) */
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
}

/* --------------------------------------------------------------------------
   12. FOOTER SECTION
   -------------------------------------------------------------------------- */
.main-footer {
  background-color: var(--color-corp-dark);
  color: var(--color-white);
  padding: var(--space-3xl) 0 var(--space-xl) 0;
  border-top: 4px solid var(--color-deep-teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-logo {
  color: var(--color-white);
}

.footer-desc {
  font-size: 0.88rem;
  color: #8A97A4;
  line-height: 1.6;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-links a {
  color: #A0B0B9;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-neon-mint);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #6C7A87;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-main-card {
    grid-column: span 12;
  }

  .hero-secondary-col {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-col,
  .sidebar-col {
    grid-column: span 12;
  }

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

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

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

  .mobile-toggle {
    display: block;
  }

  .hero-secondary-col {
    grid-template-columns: 1fr;
  }

  .news-cards-grid {
    grid-template-columns: 1fr;
  }

  .quick-sim-content {
    flex-direction: column;
    align-items: stretch;
  }

  .article-end-cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .credit-options-grid {
    grid-template-columns: 1fr;
  }

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

  /* Fullscreen Modal on Mobile */
  .modal-overlay {
    padding: 0;
  }

  .modal-container {
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    border: none;
    flex-direction: column;
  }

  .modal-sidebar-col {
    display: none;
  }

  .modal-main-col {
    height: 100%;
  }

  .modal-body {
    padding: var(--space-lg) var(--space-md) var(--space-md);
    min-height: 0;
  }

  .modal-close-btn-floating {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }

  .modal-step {
    flex: 1;
  }

  .step-question {
    font-size: 1.2rem;
  }

  .step-subtitle {
    font-size: 0.82rem;
  }

  .modal-footer {
    margin-top: auto;
    flex-wrap: wrap;
    gap: 8px;
  }

  .modal-footer .btn-primary,
  .modal-footer .btn-secondary {
    font-size: 0.82rem;
    padding: 10px 14px;
    white-space: nowrap;
  }

  .modal-footer .step-counter {
    display: none;
  }

  .amount-slider-display {
    font-size: 1.35rem;
  }

  /* Option grids: tablets */
  .option-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 480px) {
  .option-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .option-btn-brand {
    min-height: 80px;
    padding: 12px 8px;
    gap: 6px;
  }

  .option-btn-brand-logo {
    height: 30px;
    max-width: 76px;
    margin-bottom: 2px;
  }

  .option-btn-label {
    font-size: 0.92rem;
  }

  /* Em telas bem pequenas, mantém Voltar e Avançar em uma única linha
     (Voltar à esquerda, Avançar à direita). */
  .modal-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .modal-footer .btn-primary {
    flex: 1;
    justify-content: center;
    font-size: 0.8rem;
    padding: 12px 14px;
    white-space: nowrap;
  }

  .modal-footer .btn-icon-only {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .modal-footer .step-counter {
    display: none;
  }
}