/* ==========================================================================
   BRAGA & ARAUJO ADVOGADOS ASSOCIADOS
   Landing Page de Alta Performance: Gestão de Passivo Bancário PJ
   Design System: Editorial Luxury Corporate (Formato Revista / Sóbrio / Clean)
   ========================================================================== */

@import url('variables.css');

/* ==========================================
   1. RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-dark-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--transition-fast);
}

/* ==========================================
   2. TYPOGRAPHY & EDITORIAL HIERARCHY
   ========================================== */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  color: var(--text-dark-title);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

.highlight-gold {
  color: var(--gold-600);
}

.highlight-navy {
  color: var(--navy-800);
}

.text-muted {
  color: var(--text-dark-muted);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-600);
  margin-bottom: 16px;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--gold-400);
}

.section-tag svg {
  color: var(--gold-500);
}

/* ==========================================
   3. LAYOUT & CONTAINERS
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: var(--text-base);
  color: var(--text-dark-muted);
  line-height: 1.65;
}

/* ==========================================
   4. BUTTONS & CONVERSION CTAS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all var(--transition-fast);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  color: #ffffff;
}

.btn-navy {
  background: var(--navy-800);
  color: #ffffff;
}

.btn-navy:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: #ffffff;
}

.btn-outline {
  border: 1px solid var(--navy-800);
  color: var(--navy-800);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy-800);
  color: #ffffff;
}

.btn-outline-gold {
  border: 1px solid var(--gold-500);
  color: var(--gold-600);
  background: transparent;
}

.btn-outline-gold:hover {
  background: var(--gold-bg-subtle);
  border-color: var(--gold-600);
}

.btn-sm {
  padding: 10px 18px;
  font-size: var(--text-xs);
}

.pulse-subtle {
  animation: subtlePulse 3s infinite;
}

@keyframes subtlePulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================
   5. TOP NOTICE BAR & HEADER
   ========================================== */
.top-notice-bar {
  background: var(--navy-900);
  color: #ffffff;
  padding: 8px 24px;
  font-size: var(--text-xs);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.3px;
}

.top-notice-bar strong {
  color: var(--gold-300);
  font-weight: 600;
}

.top-notice-bar a {
  color: var(--gold-300);
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 600;
}

.top-notice-bar a:hover {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.logo-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-wrapper img {
  height: 35px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  white-space: nowrap;
}

.nav-menu a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy-700);
  transition: color var(--transition-fast);
  padding: 6px 0;
  letter-spacing: 0.2px;
}

.nav-menu a:hover {
  color: var(--gold-600);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border-radius: var(--radius-sm);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy-800);
  transition: all var(--transition-fast);
}

/* ==========================================
   6. HERO SECTION (EDITORIAL B2B)
   ========================================== */
.hero-section {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

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

.hero-content h1 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 2.5vw + 1rem, 3.1rem);
  line-height: 1.24;
}

.hero-subtitle {
  font-size: var(--text-base);
  color: var(--text-dark-body);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-sm);
  color: var(--text-dark-body);
  line-height: 1.6;
}

.hero-bullets li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold-500);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  color: var(--text-dark-muted);
  font-weight: 500;
}

.trust-item svg {
  color: var(--gold-500);
}

/* Hero Right Institutional Card */
.hero-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.hero-card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--navy-900);
  color: var(--gold-300);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.institutional-badge-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.legal-seal-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gold-500);
}

.legal-seal-info h3 {
  font-size: 17px;
  margin-bottom: 2px;
  color: var(--navy-800);
}

.legal-seal-info p {
  font-size: 12px;
  color: var(--text-dark-muted);
}

.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.stat-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--navy-900);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-dark-muted);
  line-height: 1.4;
}

/* ==========================================
   7. URGENCY & PRAZO DE 15 DIAS (SÓBRIO)
   ========================================== */
.urgency-section {
  padding: 50px 0;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-light);
}

.urgency-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--alert-red);
  border-radius: var(--radius-sm);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.urgency-content h2 {
  font-size: var(--text-xl);
  margin-bottom: 12px;
  color: var(--navy-900);
}

.urgency-content p {
  font-size: var(--text-sm);
  color: var(--text-dark-body);
  line-height: 1.65;
}

.urgency-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.urgency-cta .btn {
  width: 100%;
}

.urgency-note {
  font-size: 11px;
  color: var(--text-dark-muted);
  text-align: center;
  width: 100%;
}

/* ==========================================
   8. DORES & RISCOS EMPRESARIAIS (GRID LIMPO)
   ========================================== */
.problem-section {
  padding: var(--section-padding);
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

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

.problem-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.problem-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.card-num {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-600);
  margin-bottom: 16px;
  display: block;
}

.problem-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--navy-900);
}

.problem-card p {
  font-size: var(--text-sm);
  color: var(--text-dark-muted);
  line-height: 1.65;
}

/* ==========================================
   9. METODOLOGIA GESTÃO 360° (EDITORIAL)
   ========================================== */
.solution-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}

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

.solution-step {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  position: relative;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-500);
}

.step-icon {
  color: var(--navy-700);
}

.solution-step h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--navy-900);
}

.solution-step p {
  font-size: 13px;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

/* ==========================================
   10. ESTUDOS DE CASO & ACORDOS REAIS
   ========================================== */
.proof-section {
  padding: var(--section-padding);
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

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

.proof-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.proof-card:hover {
  border-color: var(--gold-400);
}

.proof-img-wrap {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.proof-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}

.proof-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy-900);
  color: var(--gold-300);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.proof-body {
  padding: 24px;
}

.proof-body h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--navy-900);
}

.proof-body p {
  font-size: 13px;
  color: var(--text-dark-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.proof-result-badge {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.2px;
}

/* ==========================================
   11. SIMULADOR DE PASSIVO B2B (CLEAN & SÓBRIO)
   ========================================== */
.simulator-section {
  padding: var(--section-padding);
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-light);
}

.simulator-card {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.sim-progress-bar {
  height: 4px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  overflow: hidden;
}

.sim-progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--navy-800);
  transition: width 0.3s ease;
}

.simulator-step {
  display: none;
}

.simulator-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.sim-step-header {
  margin-bottom: 24px;
}

.sim-step-header h3 {
  font-size: 19px;
  margin-bottom: 6px;
  color: var(--navy-900);
}

.sim-step-header p {
  font-size: 13px;
  color: var(--text-dark-muted);
}

.sim-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.sim-option {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  cursor: pointer;
  background: var(--bg-secondary);
  transition: all var(--transition-fast);
}

.sim-option:hover {
  border-color: var(--navy-700);
  background: #ffffff;
}

.sim-option.selected {
  border-color: var(--navy-900);
  background: #ffffff;
  box-shadow: 0 0 0 1.5px var(--navy-900);
}

.sim-opt-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-900);
  margin-bottom: 4px;
  display: block;
}

.sim-opt-desc {
  font-size: 12px;
  color: var(--text-dark-muted);
  display: block;
}

.sim-nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sim-btn-prev {
  color: var(--text-dark-muted);
  font-weight: 500;
  font-size: 13px;
}

.sim-btn-prev:hover {
  color: var(--navy-900);
}

/* Simulator Results */
.simulator-result {
  display: none;
  text-align: center;
}

.simulator-result.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.sim-result-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin: 24px 0;
  text-align: left;
}

.sim-result-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}

.sim-result-item:last-child {
  border-bottom: none;
}

.sim-result-item strong {
  color: var(--navy-900);
}

.sim-result-savings {
  background: #ffffff;
  border: 1px solid var(--border-medium);
  padding: 18px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: 18px;
}

.sim-result-savings span {
  font-size: 12px;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.sim-result-savings h4 {
  font-size: 18px;
  color: var(--navy-900);
  margin-top: 6px;
}

/* ==========================================
   12. BANCA & AUTORIDADE INSTITUCIONAL
   ========================================== */
.authority-section {
  padding: var(--section-padding);
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.authority-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.authority-institutional-card {
  background: var(--navy-900);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 32px;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.auth-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-card-emblem {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  flex-shrink: 0;
}

.auth-card-title h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 2px;
}

.auth-card-title span {
  font-size: 11px;
  color: var(--gold-300);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.auth-card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.auth-metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}

.auth-metric-val {
  display: block;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--gold-300);
  margin-bottom: 2px;
}

.auth-metric-lbl {
  font-size: 11px;
  color: var(--text-white-muted);
}

.auth-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: var(--text-white-muted);
  flex-wrap: wrap;
  gap: 10px;
}

.auth-card-footer a {
  color: var(--gold-300);
  text-decoration: underline;
  font-weight: 500;
}

.auth-card-footer a:hover {
  color: #ffffff;
}

.authority-content h2 {
  margin-bottom: 20px;
}

.authority-content p {
  margin-bottom: 16px;
  font-size: var(--text-base);
  color: var(--text-dark-body);
  line-height: 1.7;
}

.credentials-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.credentials-list li {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
}

/* ==========================================
   13. AVALIAÇÕES GOOGLE (CLEAN)
   ========================================== */
.reviews-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}

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

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold-500);
}

.review-text {
  font-size: 14px;
  color: var(--text-dark-body);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar-badge {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--navy-900);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 13px;
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 11px;
  color: var(--text-dark-muted);
}

/* ==========================================
   14. FAQ ACCORDION (EDITORIAL)
   ========================================== */
.faq-section {
  padding: var(--section-padding);
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-900);
  text-align: left;
}

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

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--navy-600);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

/* ==========================================
   15. FOOTER (MONOCROMÁTICO & INSTITUCIONAL)
   ========================================== */
.site-footer {
  background: var(--navy-900);
  color: #ffffff;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 14px;
  font-family: var(--font-main);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-300);
  margin-bottom: 20px;
}

.footer-col p,
.footer-col li {
  font-size: 13px;
  color: var(--text-white-muted);
  line-height: 1.65;
}

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

.footer-col a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-white-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.oab-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  line-height: 1.5;
}

/* Floating Elements */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--whatsapp-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  color: #ffffff;
}

.mobile-bottom-bar {
  display: none;
}

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