/* ==========================================================================
   ALCA SISTEMAS SAS - SISTEMA DE IDENTIDAD DE MARCA OFICIAL 2026
   Arquetipo: "El Gobernante" (The Ruler & The Wise)
   Paleta Soberana: Regla 60-30-10 (Sovereign Navy, Imperial Gold, Velvet Surface)
   Tipografía: Cinzel (Display/Headings) & Plus Jakarta Sans (Reading/Body)
   Estándares: WCAG 2.2 AAA para público Senior (+50), TASS 3.0
   ========================================================================== */

:root {
  /* TOKENS MAESTROS DE IDENTIDAD OFICIAL */
  --bg-dark: #070F1A;                      /* Fondo estructural dominante (60% viewport) */
  --bg-surface: #0B192C;                   /* Fondo de tarjetas, secciones y barra con transparencia 0.95 (30%) */
  --bg-surface-elevated: #0F223A;          /* Superficies elevadas y desplegables */
  --gold-noble: #C5A059;                   /* Color acento de autoridad (10%) */
  --gold-glow: rgba(197, 160, 89, 0.40);   /* Resplandor interactivo en bucle */
  --gold-border: rgba(197, 160, 89, 0.35); /* Bordes de contención de 1px en tarjetas y modales */
  --gold-border-subtle: rgba(197, 160, 89, 0.20);
  --text-primary: #FFFFFF;                 /* Títulos H1 y encabezados de alta legibilidad */
  --text-body: #E2E8F0;                    /* Cuerpo de lectura sin fatiga visual (18px-19px, line-height: 1.65) */
  --text-muted: #94A3B8;                   /* Notas legales y aclaraciones al pie */

  /* JERARQUÍA TIPOGRÁFICA EDITORIAL */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'SF Mono', 'Roboto Mono', 'Fira Code', Consolas, monospace;

  /* ELEMENTOS DE DISEÑO */
  --radius-btn: 4px;
  --radius-card: 6px;
  --container-width: 1200px;
  --transition: 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 50% -5%, rgba(197, 160, 89, 0.09) 0%, transparent 60%),
    radial-gradient(circle at 90% 70%, rgba(11, 25, 44, 0.65) 0%, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ==========================================================================
   CONTENEDOR FIJO INTEGRAL (TICKER + HEADER SIEMPRE VISIBLES)
   ========================================================================== */
.sticky-top-container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(7, 15, 26, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* TERMINAL INSTITUCIONAL DE COTIZACIONES EN VIVO */
.market-ticker-bar {
  background: #040910;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner-flex {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
}

.ticker-lead-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(197, 160, 89, 0.3);
}

.ticker-live-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.ticker-lead-text {
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.ticker-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #E2E8F0;
  font-weight: 500;
}

.ticker-symbol {
  color: var(--gold-noble);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.ticker-price {
  color: #FFFFFF;
}

.ticker-change.up {
  color: #10B981;
  font-size: 0.72rem;
}

.ticker-change.down {
  color: #F87171;
  font-size: 0.72rem;
}

/* HEADER TASS - NAVEGACIÓN SEMÁNTICA INSTITUCIONAL */
.header-tass {
  padding: 12px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 0 14px rgba(197, 160, 89, 0.25);
  border: 1px solid var(--gold-border);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text-main {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFFFFF;
  line-height: 1.15;
}

.brand-text-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--gold-noble);
  text-transform: uppercase;
  font-weight: 600;
}

/* MENÚ DE NAVEGACIÓN DESKTOP */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 24px;
}

.nav-item a {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: #CBD5E1;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 6px 2px;
  position: relative;
  transition: color var(--transition);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-noble);
  transition: width var(--transition);
}

.nav-item a:hover {
  color: #FFFFFF;
}

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

.nav-item a.active {
  color: var(--gold-noble);
  font-weight: 600;
}

.nav-badge-pill {
  font-size: 0.68rem;
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-noble);
  border: 1px solid var(--gold-border);
  padding: 2px 7px;
  border-radius: 12px;
  margin-left: 6px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

/* BOTONES DEL HEADER */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold-noble);
  padding: 8px 12px;
  border-radius: var(--radius-btn);
  cursor: pointer;
}

.menu-toggle-btn svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

/* MENÚ MÓVIL */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background-color: var(--bg-surface);
  border-left: 1px solid var(--gold-border);
  z-index: 2000;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: right 300ms ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.mobile-nav-panel.open {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  display: none;
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-border-subtle);
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-menu a {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #E2E8F0;
  text-decoration: none;
  letter-spacing: 1px;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-menu a.active {
  color: var(--gold-noble);
  font-weight: 700;
}

/* ==========================================================================
   ESTRUCTURAS GENERALES Y TIPOGRAFÍA
   ========================================================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.ambient-glow-sphere {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

h1, h2, .display-title, .section-title, .headline-ruler {
  font-family: var(--font-serif);
  color: var(--text-primary);
  letter-spacing: 2px;
  line-height: 1.28;
  font-weight: 700;
}

h3 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 1.35;
}

h4 {
  font-family: var(--font-sans);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

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

.eyebrow-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-noble);
  background: rgba(197, 160, 89, 0.10);
  border: 1px solid var(--gold-border);
  padding: 6px 16px;
  border-radius: var(--radius-btn);
  margin-bottom: 20px;
}

/* BOTONES MAESTROS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  gap: 10px;
}

.btn-cta-ruler {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
  color: #070F1A !important;
  border: 1px solid #E6C875;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.25);
  font-weight: 700;
}

.btn-cta-ruler:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(197, 160, 89, 0.45);
  background: linear-gradient(135deg, #E6C875 0%, #D4AF37 100%);
}

.cta-glow-loop {
  animation: buttonGlowLoop 3.5s infinite alternate ease-in-out;
}

@keyframes buttonGlowLoop {
  0% { box-shadow: 0 0 12px rgba(197, 160, 89, 0.2); }
  100% { box-shadow: 0 0 26px rgba(197, 160, 89, 0.55); }
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-noble) !important;
  border: 1px solid var(--gold-noble);
}

.btn-outline-gold:hover {
  background: rgba(197, 160, 89, 0.12);
  color: #FFFFFF !important;
  border-color: #E6C875;
  transform: translateY(-2px);
}

.btn-secondary-dark {
  background: var(--bg-surface);
  color: #FFFFFF !important;
  border: 1px solid var(--gold-border);
}

.btn-secondary-dark:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--gold-noble);
  transform: translateY(-2px);
}

/* TARJETAS VELVET Y CONTENEDORES */
.velvet-card {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-card);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.velvet-card:hover {
  border-color: var(--gold-noble);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(197, 160, 89, 0.15);
}

/* HERO UNIVERSAL PARA PÁGINAS INTERIORES */
.inner-hero {
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--gold-border-subtle);
  background: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
}

.inner-hero-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 18px;
}

.inner-hero-lead {
  font-size: 1.15rem;
  max-width: 840px;
  margin: 0 auto;
  color: #CBD5E1;
  line-height: 1.75;
}

/* SECCIONES Y ESPACIADOS */
.section-py {
  padding: 80px 0;
  position: relative;
}

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

.section-title {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: #CBD5E1;
  line-height: 1.7;
}

/* MANIFIESTO SOBERANO */
.manifiesto-box {
  background: linear-gradient(180deg, rgba(11, 25, 44, 0.9) 0%, rgba(7, 15, 26, 0.95) 100%);
  border: 1px solid var(--gold-noble);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  position: relative;
  margin: 40px 0;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(197, 160, 89, 0.05);
}

.manifiesto-box::before {
  content: '“';
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(197, 160, 89, 0.12);
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}

.manifiesto-quote {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  color: #FFFFFF;
  line-height: 1.85;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.manifiesto-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--gold-border);
  padding-top: 20px;
}

.signature-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-noble);
  letter-spacing: 1.5px;
}

.signature-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* METODOLOGÍA ALCA: 4 PILARES */
.grid-methodology {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  margin: 40px 0;
}

.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-card);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-noble);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 16px rgba(197, 160, 89, 0.18);
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-noble);
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: inline-block;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  color: #FFFFFF;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.pillar-desc {
  font-size: 0.95rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-noble);
  text-decoration: none;
  transition: gap var(--transition);
}

.pillar-link:hover {
  gap: 14px;
  color: #FFFFFF;
}

/* ==========================================================================
   LÍNEA DE TIEMPO (TIMELINE 1987 - 2026) PARA ACERCA-DE
   ========================================================================== */
.timeline-section {
  padding: 60px 0 90px;
}

.timeline-era-block {
  margin-bottom: 60px;
}

.era-banner {
  background: linear-gradient(90deg, rgba(11, 25, 44, 0.95) 0%, rgba(15, 34, 58, 0.8) 100%);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold-noble);
  padding: 16px 24px;
  border-radius: var(--radius-card);
  margin-bottom: 30px;
}

.era-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-noble);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.timeline-items-flow {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid rgba(197, 160, 89, 0.35);
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.timeline-card-node {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  transition: all var(--transition);
}

.timeline-card-node::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 24px;
  width: 14px;
  height: 14px;
  background-color: var(--gold-noble);
  border: 3px solid var(--bg-dark);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-noble);
}

.timeline-card-node:hover {
  border-color: var(--gold-noble);
  transform: translateX(4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(197, 160, 89, 0.15);
}

.timeline-year-label {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-noble);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.timeline-entry-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

.timeline-entry-text strong {
  color: #FFFFFF;
}

.timeline-entry-text em {
  color: var(--gold-noble);
  font-style: normal;
  font-weight: 600;
}

.timeline-entry-text a {
  color: var(--gold-noble);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* BIOGRAFÍA DEL FUNDADOR */
.bio-hero-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 50px;
}

.bio-portrait-box {
  text-align: center;
}

.bio-portrait-img {
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(197, 160, 89, 0.2);
  display: block;
  margin: 0 auto;
}

.bio-portrait-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-top: 18px;
  letter-spacing: 1.5px;
}

.bio-portrait-credentials {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-noble);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* FORMULARIOS Y CONTACTO */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

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

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #CBD5E1;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: #040910;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-btn);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-noble);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* FOOTER CORPORATIVO OFICIAL */
.site-footer {
  background-color: #040910;
  border-top: 1px solid var(--gold-border);
  padding: 70px 0 24px;
  margin-top: auto;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 50px;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--gold-noble);
}

.footer-desc {
  font-size: 0.92rem;
  color: #94A3B8;
  line-height: 1.65;
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 0.92rem;
  color: #CBD5E1;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-noble);
  padding-left: 4px;
}

.footer-contact-box {
  font-size: 0.90rem;
  color: #CBD5E1;
  line-height: 1.75;
}

.footer-contact-box b {
  color: #FFFFFF;
}

.footer-contact-box strong {
  color: var(--gold-noble);
}

.footer-contact-box a {
  color: var(--gold-noble);
  text-decoration: none;
}

.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVIDAD Y CONSULTAS DE MEDIOS
   ========================================================================== */
@media (max-width: 1080px) {
  .nav-menu {
    display: none;
  }
  .menu-toggle-btn {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 18px;
  }
  .bio-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ticker-lead-text {
    display: none;
  }
  .ticker-lead-badge {
    padding-right: 10px;
  }
}
