/* ===========================================================================
   CCE · Estilos de la experiencia 3D scroll-driven
   =========================================================================== */

html.cce-3d,
html.cce-3d body {
  background: #05070d;
}

html.cce-3d {
  scroll-behavior: auto; /* el smooth scroll lo maneja Lenis */
}

/* --- Capa 3D fija -------------------------------------------------------- */

.scene-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.scene-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.scene-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(212, 175, 55, 0.16), transparent 70%),
    radial-gradient(800px 520px at 85% 30%, rgba(59, 130, 246, 0.14), transparent 70%),
    #05070d;
}

.scene-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 26%, rgba(5, 7, 13, 0.82) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.55) 0%, transparent 22%, transparent 78%, rgba(5, 7, 13, 0.65) 100%);
}

.scene-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* --- Estaciones (secciones) ---------------------------------------------- */

.station {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0;
}

.station-hero {
  min-height: 100vh;
  padding-top: 5rem;
}

.station-inner {
  position: relative;
  width: 100%;
}

.display-title {
  margin-top: 1.4rem;
  font-size: clamp(2.4rem, 6.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #f8fafc;
  text-wrap: balance;
  text-shadow: 0 2px 5px rgba(0,0,0,0.92), 0 10px 44px rgba(0,0,0,0.8);
}

.lead-text {
  margin-top: 1.4rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: #e6edf7;
  max-width: 44ch;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 6px 26px rgba(0,0,0,0.75);
}

.station-title {
  margin-top: 1rem;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #f8fafc;
  max-width: 22ch;
  text-wrap: balance;
  text-shadow: 0 2px 5px rgba(0,0,0,0.92), 0 8px 34px rgba(0,0,0,0.78);
}

.station-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #dbe4f0;
  max-width: 58ch;
  text-shadow: 0 2px 4px rgba(0,0,0,0.85), 0 5px 20px rgba(0,0,0,0.65);
}

/* --- Kicker con punto pulsante ------------------------------------------- */

.kicker-3d {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.07);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary-color, #d4af37);
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
  animation: ccePulse 2.4s infinite;
}

@keyframes ccePulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* --- Tarjetas de vidrio con tilt ----------------------------------------- */

.glass-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(212, 175, 55, 0.12), transparent 62%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.glass-card:hover::before {
  opacity: 1;
}

.service-tile {
  min-height: 190px;
}

.emblem {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.26);
}

/* --- Métricas del hero --------------------------------------------------- */

.metric-pill {
  padding: 0.7rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
  min-width: 148px;
}

.metric-pill.is-accent {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.1);
}

.metric-pill-label {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #94a3b8;
}

.metric-pill-value {
  margin-top: 0.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #f8fafc;
}

.metric-pill.is-accent .metric-pill-value {
  color: var(--primary-color, #d4af37);
}

/* --- Filas numeradas ----------------------------------------------------- */

.data-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 13px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.data-row:hover {
  border-color: rgba(212, 175, 55, 0.32);
  background: rgba(212, 175, 55, 0.05);
  transform: translateX(6px);
}

.data-row-index {
  font-family: 'Spectral', serif;
  font-size: 0.85rem;
  color: var(--primary-color, #d4af37);
  letter-spacing: 0.06em;
}

.data-row-text {
  font-size: 0.92rem;
  font-weight: 500;
  color: #e2e8f0;
}

/* --- Timeline del proceso ------------------------------------------------ */

.timeline-3d {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0;
}

.timeline-item {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.timeline-marker {
  flex-shrink: 0;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.02));
  font-family: 'Spectral', serif;
  font-size: 0.95rem;
  color: var(--primary-color, #d4af37);
  letter-spacing: 0.04em;
}

/* --- CTA final ----------------------------------------------------------- */

.final-cta {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(212, 175, 55, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.final-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #f8fafc;
  max-width: 24ch;
  margin-inline: auto;
}

.btn-lg {
  padding: 0.78rem 1.4rem !important;
  font-size: 0.95rem !important;
  border-radius: 14px !important;
}

/* --- Indicador de scroll ------------------------------------------------- */

.scroll-hint {
  position: absolute;
  bottom: -3.5rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
}

.scroll-hint-line {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.7), rgba(212, 175, 55, 0));
  animation: cceSlide 2.6s ease-in-out infinite;
}

@keyframes cceSlide {
  0%, 100% { transform: translateX(0); opacity: 0.35; }
  50% { transform: translateX(10px); opacity: 1; }
}

/* --- Riel de progreso lateral -------------------------------------------- */

.scroll-rail {
  position: fixed;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.rail-track {
  width: 2px;
  height: 190px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.rail-fill {
  width: 100%;
  background: linear-gradient(180deg, rgba(212, 175, 55, 1), rgba(59, 130, 246, 0.8));
  transition: height 0.12s linear;
}

.rail-dots {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.rail-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rail-dot:hover {
  border-color: rgba(212, 175, 55, 0.9);
  transform: scale(1.25);
}

.rail-dot.is-active {
  background: var(--primary-color, #d4af37);
  border-color: var(--primary-color, #d4af37);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.65);
}

.rail-dot-label {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #e2e8f0;
  background: rgba(5, 7, 13, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  padding: 0.25rem 0.55rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.rail-dot:hover .rail-dot-label,
.rail-dot.is-active .rail-dot-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.rail-tour {
  position: absolute;
  bottom: -3.4rem;
  right: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(5, 7, 13, 0.7);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.25s ease;
}

.rail-tour:hover {
  background: rgba(212, 175, 55, 0.16);
}

.rail-tour.is-active {
  background: rgba(212, 175, 55, 0.9);
  border-color: rgba(212, 175, 55, 1);
}

.tour-glyph.is-play {
  width: 0;
  height: 0;
  border-left: 9px solid var(--primary-color, #d4af37);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
}

.tour-glyph.is-pause {
  width: 10px;
  height: 11px;
  border-left: 3px solid #05070d;
  border-right: 3px solid #05070d;
}

/* --- Reveal on scroll ---------------------------------------------------- */

.reveal {
  opacity: 0;
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s ease;
  filter: blur(6px);
  will-change: transform, opacity;
}

.reveal-up { transform: translate3d(0, 46px, 0) rotateX(6deg); }
.reveal-left { transform: translate3d(-46px, 12px, 0) rotateY(-8deg); }
.reveal-right { transform: translate3d(46px, 12px, 0) rotateY(8deg); }

.reveal.is-in {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
}

/* --- Ajustes responsive y accesibilidad ---------------------------------- */

@media (max-width: 1024px) {
  .scroll-rail { display: none; }
  .station { min-height: auto; padding: 5rem 0; }
  .station-hero { min-height: 92vh; }
  .timeline-marker { width: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; filter: none; transform: none; }
  .kicker-dot, .scroll-hint-line { animation: none; }
  .glass-card { transition: none; }
}

/* --- Header y footer sobre la escena ------------------------------------- */

html.cce-3d header {
  background: rgba(5, 7, 13, 0.55) !important;
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}

html.cce-3d footer {
  position: relative;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.72), rgba(5, 7, 13, 0.95)) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Las tarjetas heredadas (.card) también se vuelven translúcidas */
html.cce-3d .card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* --- Velo local detrás del texto (legibilidad sobre el 3D) --------------- */

.station-inner::before {
  content: "";
  position: absolute;
  inset: -6% -8%;
  background: radial-gradient(closest-side, rgba(5, 7, 13, 0.62), rgba(5, 7, 13, 0.28) 62%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

/* Texto secundario dentro de tarjetas: un escalón más claro */
html.cce-3d .text-slate-400 { color: #b9c5d6 !important; }
html.cce-3d .text-slate-300 { color: #dae2ee !important; }
html.cce-3d .text-slate-500 { color: #9aa8bd !important; }

html.cce-3d .kicker { color: #e2e8f0; }

/* El vidrio de las tarjetas, un poco más opaco para que el texto respire */
.glass-card {
  background:
    linear-gradient(180deg, rgba(16, 22, 36, 0.66), rgba(10, 14, 24, 0.52)) !important;
}

/* ===========================================================================
   Identidad de marca · Cercle des Cinq Économistes
   =========================================================================== */

/* --- Preloader ----------------------------------------------------------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #05070d;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

.preloader.is-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.preloader-logo {
  width: min(230px, 52vw);
  height: auto;
  animation: cceLogoIn 1.3s cubic-bezier(0.16, 1, 0.3, 1) both;
  filter: drop-shadow(0 0 34px rgba(212, 175, 55, 0.28));
}

@keyframes cceLogoIn {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to { opacity: 1; transform: none; }
}

.preloader-bar {
  width: 168px;
  height: 1px;
  background: rgba(148, 163, 184, 0.22);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--primary-color, #d4af37), transparent);
  animation: cceSweep 1.5s ease-in-out infinite;
}

@keyframes cceSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.preloader-text {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7c8aa0;
}

/* --- Firma de marca en el hero ------------------------------------------- */

.hero-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.hero-brand-logo {
  width: 62px;
  height: auto;
  filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.35));
}

.hero-brand-copy {
  border-left: 1px solid rgba(212, 175, 55, 0.32);
  padding-left: 1rem;
}

.hero-brand-name {
  font-family: 'Spectral', serif;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  color: #f1e6c8;
  line-height: 1.25;
}

.hero-brand-est {
  margin-top: 0.2rem;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8b98ac;
}

/* --- Numeración editorial de secciones ----------------------------------- */

.station-number {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.station-number-digits {
  font-family: 'Spectral', serif;
  font-size: 0.98rem;
  color: var(--primary-color, #d4af37);
  letter-spacing: 0.08em;
}

.station-number-rule {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.75), rgba(212, 175, 55, 0.06));
}

.station-number-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cbd5e1;
}

/* --- Bloque del Círculo --------------------------------------------------- */

.brand-serif {
  font-family: 'Spectral', serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: 0.04em;
  color: #f1e6c8;
  margin-top: 1.6rem;
}

.brand-quote {
  margin-top: 2rem;
  padding-left: 1.4rem;
  border-left: 2px solid rgba(212, 175, 55, 0.55);
  font-family: 'Spectral', serif;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-style: italic;
  line-height: 1.5;
  color: #e8eef8;
  max-width: 34ch;
}

.five-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 22, 36, 0.7), rgba(10, 14, 24, 0.5));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.five-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  transition: transform 0.25s ease, color 0.25s ease;
}

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

.five-item:hover { transform: translateX(5px); }

.five-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary-color, #d4af37);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
  flex-shrink: 0;
}

.five-index {
  font-family: 'Spectral', serif;
  font-size: 0.78rem;
  color: rgba(212, 175, 55, 0.75);
}

.five-label {
  font-size: 0.98rem;
  font-weight: 500;
  color: #e8eef8;
  letter-spacing: 0.01em;
}

/* --- Banda de cifras ------------------------------------------------------ */

.stats-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(148, 163, 184, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  overflow: hidden;
}

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

.stats-cell {
  padding: 1.6rem 1.2rem;
  text-align: center;
  background: rgba(10, 14, 24, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease;
}

.stats-cell:hover { background: rgba(212, 175, 55, 0.07); }

.stats-value {
  font-family: 'Spectral', serif;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1;
  color: var(--primary-color, #d4af37);
  letter-spacing: -0.01em;
}

.stats-label {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aeb9ca;
}

/* --- Esquinas de las tarjetas de vidrio ---------------------------------- */

.glass-card::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  border-left: 1px solid rgba(212, 175, 55, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.glass-card:hover::after { opacity: 1; }

/* --- Bloque de contacto --------------------------------------------------- */

.contact-block {
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16, 22, 36, 0.7), rgba(10, 14, 24, 0.52));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-title {
  margin-top: 0.9rem;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.contact-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.42);
  background: rgba(212, 175, 55, 0.06);
  transform: translateY(-3px);
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.26);
  margin-bottom: 0.5rem;
}

.contact-label {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9aa8bd;
}

.contact-value {
  font-size: 0.94rem;
  font-weight: 500;
  color: #eef3fa;
  word-break: break-word;
}

.contact-note {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #b9c5d6;
}

/* --- Lista de preguntas --------------------------------------------------- */

.question-head {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-color, #d4af37);
  padding: 0 0.4rem 0.9rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  margin-bottom: 0.3rem;
}

.question-label {
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.45;
  color: #e8eef8;
}

/* --- Capacidades (sección 01) -------------------------------------------- */

.cap-head {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9aa8bd;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.cap-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.cap-card {
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(16, 22, 36, 0.66), rgba(10, 14, 24, 0.5));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.28s ease, transform 0.28s ease;
}

.cap-card:hover {
  border-color: rgba(212, 175, 55, 0.38);
  transform: translateY(-4px);
}

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

.cap-num {
  font-family: 'Spectral', serif;
  font-size: 1.5rem;
  color: rgba(212, 175, 55, 0.32);
  line-height: 1;
}

.cap-title {
  margin-top: 1.1rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: #f4f8fd;
}

.cap-text {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #bcc8d9;
}
