/* ==========================================================================
   Atlantex Global - Design System Ultra Premium (Webgas 10/10)
   ========================================================================== */

/* 1. Variáveis e Tokens de Design */
:root {
  /* Paleta Cromática C-Level */
  --bg-deep: #060b13;
  --bg-panel: #0c1622;
  --bg-card: rgba(12, 22, 34, 0.75);
  --bg-card-hover: rgba(18, 32, 50, 0.85);
  
  --slate-grey: #415a77;
  --slate-light: #778da9;
  --white-ice: #e0e1dd;
  --white-pure: #ffffff;
  
  /* Champagne Gold de Conversão */
  --gold-base: #c2a14d;
  --gold-light: #e5c158;
  --gold-dark: #8a6d20;
  --gold-glow: rgba(194, 161, 77, 0.15);
  
  /* Cores de Alerta (Compliance Severo) */
  --red-alert: #cf3c3c;
  --red-light: #f17070;
  --red-glow: rgba(207, 60, 60, 0.12);
  --emerald-base: #2e7d57;
  --emerald-light: #5fbc8a;
  --emerald-glow: rgba(46, 125, 87, 0.12);
  
  /* Tipografia Corporativa */
  --font-serif: 'Spectral', Georgia, serif;
  --font-sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Bordas e Sombras */
  --border-radius-sm: 6px;
  --border-radius-md: 10px;
  --border-radius-lg: 16px;
  --border-radius-pill: 999px;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(194, 161, 77, 0.3);
  --border-slate: rgba(65, 90, 119, 0.25);
  
  --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 8px 30px rgba(194, 161, 77, 0.15);
  --shadow-inset: inset 0 1px 1px rgba(255, 255, 255, 0.05);
  
  /* Transições */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
}

/* 2. Reset e Configurações Gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--white-ice);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--slate-grey);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-base);
}

::selection {
  background: rgba(194, 161, 77, 0.3);
  color: var(--white-pure);
}

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

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

/* Grid Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 0 0 rgba(194, 161, 77, 0.3); }
  70% { box-shadow: 0 0 0 8px rgba(194, 161, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 161, 77, 0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Efeitos Especiais */
.glass-effect {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-premium), var(--shadow-inset);
}

.glow-card {
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.glow-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 55%
  );
  transform: translate(-100%, -100%) rotate(45deg);
  transition: none;
  pointer-events: none;
}

.glow-card:hover::after {
  transform: translate(100%, 100%) rotate(45deg);
  transition: transform 1.5s ease-in-out;
}

/* 3. Header Fixo e Menu */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 11, 19, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.header--scrolled {
  background: rgba(6, 11, 19, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(65, 90, 119, 0.2);
}

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

.header__menu {
  display: none;
  align-items: center;
  gap: 36px;
}

@media (min-width: 992px) {
  .header__menu {
    display: flex;
  }
}

.header__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white-ice);
  opacity: 0.8;
  position: relative;
  padding: 8px 0;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--gold-base);
  transition: var(--transition-fast);
}

.header__link:hover {
  opacity: 1;
  color: var(--white-pure);
}

.header__link:hover::after {
  width: 100%;
}

.header__link--active {
  opacity: 1;
  color: var(--white-pure);
}

.header__link--active::after {
  width: 100%;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 11px 22px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn--primary {
  color: var(--bg-deep);
  background-color: var(--gold-base);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(194, 161, 77, 0.3);
}

.btn--secondary {
  color: var(--white-ice);
  background-color: transparent;
  border-color: var(--border-light);
}

.btn--secondary:hover {
  border-color: var(--slate-light);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.btn--outlined {
  color: var(--gold-base);
  background-color: transparent;
  border-color: var(--gold-base);
}

.btn--outlined:hover {
  color: var(--bg-deep);
  background-color: var(--gold-base);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

/* 4. Hero Section */
.hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background-image: 
    radial-gradient(110% 90% at 85% -10%, rgba(194, 161, 77, 0.07), transparent 50%),
    radial-gradient(100% 100% at -5% 105%, rgba(12, 22, 34, 0.8), transparent 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, rgba(6, 11, 19, 0.95) 100%);
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  mix-blend-mode: lighten;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, transparent 40%, var(--bg-deep) 90%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border-gold);
  background: rgba(194, 161, 77, 0.08);
  border-radius: var(--border-radius-pill);
  padding: 6px 16px;
}

.hero__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold-base);
  animation: glowPulse 2s infinite;
}

.hero__badge-text {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 42px;
  line-height: 1.15;
  color: var(--white-pure);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 54px;
  }
}

.hero__title span {
  font-weight: 500;
  color: var(--gold-base);
  display: block;
}

.hero__description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--white-ice);
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* 5. Trust Badges */
.trust-badges {
  background-color: #04080e;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
}

.trust-badges__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

@media (min-width: 992px) {
  .trust-badges__grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.trust-badges__copy {
  font-size: 13px;
  color: var(--white-ice);
  opacity: 0.6;
  max-width: 400px;
  text-align: center;
}

@media (min-width: 992px) {
  .trust-badges__copy {
    text-align: left;
  }
}

.trust-badges__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 14px;
  border-radius: var(--border-radius-sm);
  filter: grayscale(100%);
  opacity: 0.55;
  transition: var(--transition-fast);
}

.trust-badge-item:hover {
  filter: grayscale(0%);
  opacity: 0.9;
  background: rgba(194, 161, 77, 0.05);
  border-color: var(--border-gold);
}

.trust-badge-item span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white-pure);
}

.trust-badge-item i {
  color: var(--gold-base);
}

/* 6. Nossa Abordagem (Seção Comum) */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

.section--dark {
  background-color: var(--bg-panel);
}

.section-header {
  max-width: 750px;
  margin-bottom: 50px;
}

.section-header__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-base);
  margin-bottom: 12px;
  display: block;
}

.section-header__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  color: var(--white-pure);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-header__title {
    font-size: 38px;
  }
}

.section-header__desc {
  font-size: 15.5px;
  color: var(--white-ice);
  opacity: 0.8;
}

/* Grid de Abordagem */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.approach-card {
  border-radius: var(--border-radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
}

.approach-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background-color: var(--bg-card-hover);
}

.approach-card__icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background: rgba(194, 161, 77, 0.07);
  border: 1px solid var(--border-gold);
  color: var(--gold-base);
}

.approach-card__title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--white-pure);
  margin-bottom: 14px;
}

.approach-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--white-ice);
  opacity: 0.75;
}

/* 7. Soluções e Portfólio */
.solutions-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 992px) {
  .solutions-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Tabs */
.solutions-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-tab-btn {
  text-align: left;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.solution-tab-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.solution-tab-btn--active {
  background: rgba(194, 161, 77, 0.05) !important;
  border-color: var(--gold-base) !important;
  box-shadow: var(--shadow-inset);
}

.solution-tab-btn__icon {
  margin-top: 2px;
  color: var(--slate-light);
  transition: var(--transition-fast);
}

.solution-tab-btn--active .solution-tab-btn__icon {
  color: var(--gold-base);
}

.solution-tab-btn__title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--white-pure);
  margin-bottom: 6px;
}

.solution-tab-btn__desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--white-ice);
  opacity: 0.75;
}

/* Painel Exibidor da Aba Ativa */
.solution-panel {
  padding: 32px;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-panel__header {
  margin-bottom: 24px;
}

.solution-panel__title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--white-pure);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.solution-panel__title i {
  color: var(--gold-base);
}

.solution-panel__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--white-ice);
  opacity: 0.85;
  margin-bottom: 20px;
}

.solution-panel__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.solution-panel__feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--white-ice);
}

.solution-panel__feature-item i {
  color: var(--emerald-light);
}

/* Hubs Globais */
.hubs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .hubs-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.hub-card {
  padding: 20px 12px;
  text-align: center;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

.hub-card:hover {
  border-color: var(--border-gold);
  background: rgba(194, 161, 77, 0.04);
  transform: translateY(-2px);
}

.hub-card__icon {
  margin-bottom: 12px;
  color: var(--slate-light);
  font-size: 20px;
}

.hub-card:hover .hub-card__icon {
  color: var(--gold-base);
}

.hub-card__name {
  font-family: var(--font-serif);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--white-pure);
  margin-bottom: 4px;
}

.hub-card__desc {
  font-size: 11px;
  color: var(--white-ice);
  opacity: 0.6;
}

/* 8. Inteligência, Dados e Tabela Bloomberg Terminal */
.terminal-wrapper {
  margin-top: 40px;
  border: 1px solid var(--border-slate);
  border-radius: var(--border-radius-md);
  background-color: #03070d;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.terminal-header {
  background-color: #0a1017;
  border-bottom: 1px solid var(--border-slate);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terminal-header__left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--slate-light);
}

.terminal-header__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--emerald-base);
}

.terminal-header__status {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--emerald-light);
}

.terminal-header__right {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-light);
  opacity: 0.8;
}

.terminal-content {
  padding: 16px;
  overflow-x: auto;
}

/* Tabela Estilo Bloomberg */
.terminal-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-align: left;
  white-space: nowrap;
}

.terminal-table th {
  padding: 14px 16px;
  color: var(--slate-light);
  border-bottom: 1.5px solid var(--slate-grey);
  font-weight: 600;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.terminal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(65, 90, 119, 0.15);
  color: var(--white-ice);
}

.terminal-table tbody tr:hover {
  background-color: rgba(194, 161, 77, 0.04);
}

.terminal-table tr:hover td {
  color: var(--white-pure);
}

.terminal-table__val-highlight {
  color: var(--gold-light) !important;
  font-weight: 600;
}

.terminal-table__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--border-radius-pill);
}

.terminal-table__badge--green {
  background-color: var(--emerald-glow);
  color: var(--emerald-light);
  border: 1px solid rgba(46, 125, 87, 0.2);
}

.terminal-table__badge--yellow {
  background-color: var(--gold-glow);
  color: var(--gold-light);
  border: 1px solid rgba(194, 161, 77, 0.2);
}

/* Curva de taxas mono */
.terminal-parameters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 20px 16px;
  border-top: 1px solid var(--border-slate);
  background-color: rgba(10, 16, 23, 0.4);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--slate-light);
}

@media (min-width: 768px) {
  .terminal-parameters {
    grid-template-columns: repeat(3, 1fr);
  }
}

.terminal-param-item {
  display: flex;
  justify-content: space-between;
  border-right: 1px solid rgba(65, 90, 119, 0.15);
  padding-right: 16px;
}

.terminal-param-item:last-child {
  border-right: none;
  padding-right: 0;
}

.terminal-param-item span:last-child {
  color: var(--white-ice);
  font-weight: 600;
}

/* 9. Compliance e Proteção Contra Fraudes (Design Severo) */
.compliance-panel {
  border: 1px solid rgba(207, 60, 60, 0.2);
  border-radius: var(--border-radius-lg);
  background-color: rgba(207, 60, 60, 0.02);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.compliance-panel__header {
  background: linear-gradient(90deg, rgba(207, 60, 60, 0.12), transparent);
  border-bottom: 1px solid rgba(207, 60, 60, 0.2);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.compliance-panel__badge {
  background-color: var(--red-glow);
  border: 1px solid var(--red-alert);
  color: var(--red-light);
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.compliance-panel__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white-pure);
}

.compliance-panel__content {
  padding: 32px;
}

.compliance-panel__desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--white-ice);
}

.compliance-rejections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .compliance-rejections {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rejection-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 24px;
  transition: var(--transition-smooth);
}

.rejection-card:hover {
  border-color: rgba(207, 60, 60, 0.3);
  background-color: rgba(207, 60, 60, 0.015);
  transform: translateY(-2px);
}

.rejection-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--red-light);
}

.rejection-card__title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--white-pure);
}

.rejection-card__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--white-ice);
  opacity: 0.7;
}

.compliance-panel__notice {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  gap: 14px;
}

.compliance-panel__notice i {
  color: var(--red-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.compliance-panel__notice p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--white-ice);
  opacity: 0.8;
}

/* Timeline do Onboarding KYC */
.onboarding-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .onboarding-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.onboarding-step-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  position: relative;
}

.onboarding-step-card__num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--gold-base);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.onboarding-step-card__title {
  font-family: var(--font-serif);
  font-size: 17.5px;
  color: var(--white-pure);
  margin-bottom: 10px;
}

.onboarding-step-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--white-ice);
  opacity: 0.75;
}

/* 10. Novo Bloco de Contato Rápido & Qualificação */
.contact-section {
  position: relative;
  background-color: var(--bg-panel);
  border-bottom: 1px solid var(--border-light);
  padding: 100px 0;
}

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

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
}

.contact-info__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-base);
  margin-bottom: 12px;
  display: block;
}

.contact-info__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 34px;
  line-height: 1.2;
  color: var(--white-pure);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .contact-info__title {
    font-size: 40px;
  }
}

.contact-info__title span {
  color: var(--gold-base);
  font-weight: 500;
}

.contact-info__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--white-ice);
  opacity: 0.85;
  margin-bottom: 32px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--white-ice);
}

.contact-channel-item i {
  color: var(--gold-base);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Painel de Formulário Estático */
.contact-form-wrapper {
  padding: 36px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-gold);
  background-color: var(--bg-card);
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.contact-form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
  animation: fadeIn 0.5s ease-out forwards;
}

.contact-form-success i {
  color: var(--emerald-light);
  margin-bottom: 20px;
}

.contact-form-success__title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white-pure);
  margin-bottom: 12px;
}

.contact-form-success__desc {
  font-size: 14px;
  color: var(--white-ice);
  opacity: 0.8;
  line-height: 1.6;
}

/* 11. Footer e Disclaimer Legal */
.footer {
  background-color: #03070d;
  border-top: 1px solid var(--border-light);
  padding: 70px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .footer__top {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.footer__brand {
  max-width: 500px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white-pure);
}

.footer__logo-desc {
  font-size: 13.5px;
  color: var(--white-ice);
  opacity: 0.65;
  line-height: 1.6;
}

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

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 18px;
  display: block;
}

.footer__link {
  display: block;
  font-size: 13.5px;
  color: var(--white-ice);
  opacity: 0.75;
  margin-bottom: 12px;
}

.footer__link:hover {
  opacity: 1;
  color: var(--gold-base);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
}

.footer__disclaimer {
  display: flex;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: var(--border-radius-md);
  margin-bottom: 30px;
}

.footer__disclaimer-icon {
  font-size: 22px;
  color: var(--slate-light);
  flex-shrink: 0;
}

.footer__disclaimer-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--white-ice);
  opacity: 0.6;
}

.footer__copyright-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer__copyright-row {
    flex-direction: row;
  }
}

.footer__copyright {
  font-size: 12px;
  color: var(--white-ice);
  opacity: 0.5;
}

.footer__gov-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__gov-link {
  font-size: 11.5px;
  color: var(--white-ice);
  opacity: 0.5;
}

.footer__gov-link:hover {
  opacity: 1;
  color: var(--gold-base);
}

/* 12. Modal de Onboarding KYC Multi-etapas */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(3, 7, 13, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.modal-container {
  width: 100%;
  max-width: 600px;
  margin: 16px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-gold);
  background-color: var(--bg-panel);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

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

.modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white-pure);
}

.modal-close {
  color: var(--white-ice);
  opacity: 0.6;
  font-size: 20px;
  transition: var(--transition-fast);
}

.modal-close:hover {
  opacity: 1;
  color: var(--red-light);
}

.modal-steps {
  display: flex;
  background-color: rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 24px;
  gap: 12px;
}

.modal-step-dot {
  flex: 1;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-pill);
  transition: var(--transition-smooth);
}

.modal-step-dot--active {
  background-color: var(--gold-base);
}

.modal-step-dot--completed {
  background-color: var(--emerald-base);
}

.modal-body {
  padding: 28px;
  overflow-y: auto;
  max-height: 70vh;
}

.modal-view {
  display: none;
}

.modal-view--active {
  display: block;
  animation: fadeIn 0.4s ease-out forwards;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white-pure);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  color: var(--white-pure);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-base);
  box-shadow: 0 0 0 3px rgba(194, 161, 77, 0.15);
}

.form-control::placeholder {
  color: var(--white-ice);
  opacity: 0.35;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12.5px;
  color: var(--white-ice);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox-label input {
  margin-top: 3px;
}

.form-disclaimer {
  max-height: 160px;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  font-size: 12px;
  line-height: 1.6;
  color: var(--white-ice);
  opacity: 0.8;
  margin-bottom: 20px;
}

.modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
}

/* Spinner */
.modal-loader {
  text-align: center;
  padding: 40px 0;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(194, 161, 77, 0.15);
  border-top-color: var(--gold-base);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

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