/* ==========================================================================
   CHEF MARIO ROMERO — MASTER STYLESHEET (DARK CULINARY LUXURY)
   Dirección de Arte & Consorcio Tecnológico NGV & BRICHT
   
   ÍNDICE:
   01. VARIABLES DEL SISTEMA DE DISEÑO & PALETA DE COLOR
   02. FUENTES LOCALES & TIPOGRAFÍAS DE ALTA GAMA
   03. REINICIO, BASE & ESTRUCTURA CONTENEDORA
   04. EFECTOS GLOBALES & CANVAS DE BRASA INCANDESCENTE (#embersCanvas)
   05. HEADER, MONOGRAMA & NAVEGACIÓN RESPONSIVA 2026
   06. MENÚ MÓVIL DESPLEGABLE (LUXURY DRAWER)
   07. HERO SECTION CINEMATOGRÁFICA & ANIMACIÓN DE FUEGO VIVO
   08. BARRA DE GAMIFICACIÓN / PASAPORTE CULINARIO (4 HITOS)
   09. MANIFIESTO, RETRATO OFICIAL & CITAS DE AUTOR
   10. GALERÍA DINÁMICA: EL CHEF EN ACCIÓN (4 MOMENTOS)
   11. CUADRANTES DE ESPECIALIDAD CULINARIA & ACORDEONES
   12. EXPLORADOR INTERACTIVO DE +90 ESPECIES MARINAS
   13. CRONOLOGÍA PROFESIONAL (TRAYECTORIA 2010–2026)
   14. PORTAFOLIO DE PLATILLOS & MODAL LIGHTBOX INTERACTIVO
   15. PROPUESTA DE VALOR: SERVICIOS PROFESIONALES
   16. REFERENCIAS PROFESIONALES DE ALTO PERFIL
   17. SECCIÓN DE CONTACTO DIRECTO & CANALES
   18. PIE DE PÁGINA & PROTOCOLO OFICIAL NGV | BRICHT
   19. WIDGET FLOTANTE RADAR WHATSAPP
   20. SUITE DE PROTECCIÓN DRM & DERECHOS INTELECTUALES (SILENCIOSO)
   21. REGLAS RESPONSIVAS MULTI-DISPOSITIVO (MÓVIL, TABLET, 4K)
   22. REGLAS DE IMPRESIÓN LIMPIA (@media print)
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. VARIABLES DEL SISTEMA DE DISEÑO & PALETA DE COLOR
   -------------------------------------------------------------------------- */
:root {
  /* Fondos Culinarios */
  --bg-dark: #07080a;
  --bg-surface: #0e1117;
  --bg-card: rgba(18, 22, 33, 0.78);
  --bg-card-hover: rgba(26, 32, 48, 0.92);
  --bg-glass: rgba(255, 255, 255, 0.035);

  /* Acentos de Fuego & Brasa */
  --color-fire: #e65c00;
  --color-fire-bright: #ff7619;
  --color-fire-glow: rgba(230, 92, 0, 0.45);
  --color-gold: #d4af37;
  --color-amber: #f59e0b;

  /* Acentos de Mar & Salino */
  --color-ocean: #0d9488;
  --color-ocean-bright: #2dd4bf;
  --color-ocean-glow: rgba(13, 148, 136, 0.35);

  /* Tipografías & Textos */
  --text-light: #ffffff;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Bordes & Sombras */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(230, 92, 0, 0.5);
  --shadow-card: 0 12px 35px -5px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 30px rgba(230, 92, 0, 0.3);

  /* Familias Tipográficas Oficiales (NGV & BRICHT Editorial Estricto) */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif-luxury: 'Playfair Display', Georgia, serif;
  --font-roman: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ui: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-montserrat: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-bricht: 'NunitoLocal', 'Nunito', sans-serif;

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   02. FUENTES LOCALES & TIPOGRAFÍAS DE ALTA GAMA
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'NunitoLocal';
  src: url('assets/fonts/Nunito-ExtraBold.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   03. REINICIO, BASE & ESTRUCTURA CONTENEDORA
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(4.5rem, 8vh, 5.5rem);
  color-scheme: dark;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding-top: 5.8rem;
  padding-bottom: 5.8rem;
  position: relative;
  scroll-margin-top: clamp(4.5rem, 8vh, 5.5rem);
}

.text-center { text-align: center; }
.justify-center { justify-content: center; }
.text-amber { color: var(--color-fire-bright); }
.text-gold { color: var(--color-gold); }
.text-cyan { color: var(--color-ocean-bright); }

/* Barra de Progreso de Lectura */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-ocean), var(--color-fire), var(--color-gold));
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease-out;
}

/* --------------------------------------------------------------------------
   04. EFECTOS GLOBALES & CANVAS DE BRASA INCANDESCENTE (#embersCanvas)
   -------------------------------------------------------------------------- */
.embers-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
}

/* Spotlight Glow Tracker */
[data-spotlight] {
  position: relative;
}

[data-spotlight]::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    480px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(230, 92, 0, 0.14),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

[data-spotlight]:hover::before {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   05. HEADER, MONOGRAMA & NAVEGACIÓN RESPONSIVA 2026
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1rem 0;
  transition: all var(--transition-normal);
  background: rgba(7, 8, 10, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.header-scrolled {
  padding: 0.7rem 0;
  background: rgba(7, 8, 10, 0.96);
  border-bottom-color: rgba(230, 92, 0, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Marca & Monograma con protección de corte */
.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  white-space: nowrap;
  user-select: none;
}

.brand-monogram {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a202c, #0e1117);
  border: 1px solid rgba(230, 92, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-roman);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-gold);
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.brand-link:hover .brand-monogram {
  border-color: var(--color-fire);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--color-fire-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-roman);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: #ffffff;
  line-height: 1.2;
}

.brand-tag {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--color-fire-bright);
  line-height: 1.2;
  margin-top: 2px;
}

.site-header .container {
  max-width: 1440px;
}

/* Navegación Desktop: SOLO VISIBLE EN PANTALLAS GRANDES (>= 1200px) */
.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(0.5rem, 0.9vw, 0.95rem);
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-sans);
  font-size: clamp(0.74rem, 0.82vw, 0.84rem);
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-fire);
  transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

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

/* Acciones de Cabecera */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-actions .btn-sm {
  padding: 0.4rem 0.72rem;
  font-size: 0.78rem;
}

.passport-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(230, 92, 0, 0.12);
  border: 1px solid rgba(230, 92, 0, 0.35);
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-fire-bright);
  cursor: pointer;
  transition: all var(--transition-fast);
}

@media (max-width: 1360px) {
  .passport-mini-badge .passport-label {
    display: none;
  }
}

.passport-mini-badge:hover {
  background: rgba(230, 92, 0, 0.25);
  border-color: var(--color-fire);
  box-shadow: 0 0 12px var(--color-fire-glow);
}

.passport-mini-badge.all-completed {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Botones Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.85rem 1.65rem;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

.btn-fire {
  background: linear-gradient(135deg, var(--color-fire), #c2410c);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--color-fire-glow);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 92, 0, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-gold);
  color: #ffffff;
}

.icon-svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* Botón Móvil Hamburguesa (Visible en pantallas < 1200px) */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .mobile-toggle {
    display: none;
  }
}

.toggle-bar {
  height: 2px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-toggle.active .toggle-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-toggle.active .toggle-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .toggle-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   06. MENÚ MÓVIL DESPLEGABLE (LUXURY DRAWER)
   -------------------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(7, 8, 10, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(230, 92, 0, 0.25);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.mobile-menu.open {
  max-height: 90vh;
  overflow-y: auto;
}

.mobile-nav {
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--color-fire-bright);
  padding-left: 0.5rem;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* --------------------------------------------------------------------------
   07. HERO SECTION CINEMATOGRÁFICA & ANIMACIÓN DE FUEGO VIVO
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: clamp(4.2rem, 8vh, 5.8rem);
  padding-bottom: clamp(1.2rem, 3vh, 2.4rem);
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.42) contrast(1.2);
  transform: scale(1.02);
  animation: heroKenBurns 24s infinite alternate ease-in-out;
}

@keyframes heroKenBurns {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(7, 8, 10, 0.35) 0%, rgba(7, 8, 10, 0.88) 75%, var(--bg-dark) 100%);
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(230, 92, 0, 0.12);
  border: 1px solid rgba(230, 92, 0, 0.4);
  padding: 0.32rem 0.95rem;
  border-radius: 999px;
  margin-bottom: clamp(0.5rem, 1.3vh, 1rem);
  width: fit-content;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-fire);
  box-shadow: 0 0 10px var(--color-fire);
  animation: pulseBeacon 2s infinite;
}

@keyframes pulseBeacon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-pill-text {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-fire-bright);
}

/* ==========================================================================
   ANIMACIÓN MASTER DE FUEGO VIVO EN EL TÍTULO DEL HERO
   ========================================================================== */
.hero-title {
  margin-bottom: clamp(0.5rem, 1.3vh, 1rem);
  line-height: 1.06;
  position: relative;
}

.hero-title-fire {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 4.3rem);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fff5d6 12%,
    #ffd166 26%,
    #ff922b 46%,
    #ff5722 66%,
    #e65100 84%,
    #bf360c 100%
  );
  background-size: 100% 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fireFlameRise 3.4s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 16px rgba(255, 87, 34, 0.8))
          drop-shadow(0 -4px 26px rgba(255, 170, 0, 0.6))
          drop-shadow(0 -10px 42px rgba(230, 81, 0, 0.4));
  will-change: filter, background-position, transform;
}

.hero-title-fire-sub {
  display: block;
  font-family: var(--font-serif-luxury);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.65rem, 3.6vw, 3.1rem);
  letter-spacing: 0.5px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffeed9 14%,
    #ffc078 34%,
    #ff6b6b 58%,
    #e65c00 80%,
    #9a2b00 100%
  );
  background-size: 100% 240%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fireFlameRiseSub 3s ease-in-out infinite alternate-reverse;
  filter: drop-shadow(0 0 14px rgba(230, 92, 0, 0.75))
          drop-shadow(0 -4px 22px rgba(255, 154, 0, 0.5));
  will-change: filter, background-position, transform;
}

@keyframes fireFlameRise {
  0% {
    background-position: 0% 12%;
    filter: drop-shadow(0 0 14px rgba(255, 87, 34, 0.7))
            drop-shadow(0 -4px 20px rgba(255, 146, 43, 0.55))
            drop-shadow(0 -8px 30px rgba(230, 92, 0, 0.35));
    transform: translateY(0) scale(1);
  }
  35% {
    filter: drop-shadow(0 0 20px rgba(255, 94, 0, 0.9))
            drop-shadow(0 -6px 28px rgba(255, 183, 3, 0.75))
            drop-shadow(0 -12px 42px rgba(230, 81, 0, 0.5));
  }
  70% {
    background-position: 0% 88%;
    filter: drop-shadow(0 0 28px rgba(255, 107, 0, 1))
            drop-shadow(0 -8px 38px rgba(255, 192, 120, 0.9))
            drop-shadow(0 -16px 54px rgba(230, 81, 0, 0.65))
            drop-shadow(0 -24px 72px rgba(212, 175, 55, 0.4));
    transform: translateY(-1.5px) scale(1.008);
  }
  100% {
    background-position: 0% 28%;
    filter: drop-shadow(0 0 16px rgba(255, 87, 34, 0.8))
            drop-shadow(0 -5px 24px rgba(255, 154, 0, 0.6))
            drop-shadow(0 -10px 36px rgba(230, 92, 0, 0.4));
    transform: translateY(0) scale(1.002);
  }
}

@keyframes fireFlameRiseSub {
  0% {
    background-position: 0% 15%;
    filter: drop-shadow(0 0 12px rgba(230, 92, 0, 0.65))
            drop-shadow(0 -4px 18px rgba(255, 107, 107, 0.45));
    transform: translateY(0) scale(1);
  }
  50% {
    background-position: 0% 85%;
    filter: drop-shadow(0 0 22px rgba(255, 107, 0, 0.9))
            drop-shadow(0 -6px 30px rgba(255, 192, 120, 0.8))
            drop-shadow(0 -14px 46px rgba(230, 92, 0, 0.55));
    transform: translateY(-1px) scale(1.006);
  }
  100% {
    background-position: 0% 30%;
    filter: drop-shadow(0 0 14px rgba(230, 92, 0, 0.75))
            drop-shadow(0 -5px 22px rgba(255, 154, 0, 0.55));
    transform: translateY(0) scale(1);
  }
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  font-weight: 400;
  color: #e2e8f0;
  max-width: 840px;
  margin-bottom: clamp(0.75rem, 1.8vh, 1.35rem);
  line-height: 1.55;
}

.hero-subtitle strong {
  color: #ffffff;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: clamp(0.85rem, 2vh, 1.5rem);
}

.hero-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 860px;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .hero-badges-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-badge-card {
  background: rgba(14, 17, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: clamp(0.5rem, 1.1vh, 0.75rem) 0.75rem;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
}

.hero-badge-card:hover {
  border-color: var(--color-fire);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.9vw, 1.7rem);
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: 0.15rem;
}

.badge-label {
  font-size: clamp(0.68rem, 0.88vw, 0.74rem);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
  display: block;
}

/* --------------------------------------------------------------------------
   08. BARRA DE GAMIFICACIÓN / PASAPORTE CULINARIO (4 HITOS)
   -------------------------------------------------------------------------- */
.passport-banner-section {
  padding: 2.5rem 0;
  position: relative;
  z-index: 5;
}

.passport-banner-card {
  background: linear-gradient(135deg, rgba(20, 24, 36, 0.88), rgba(14, 17, 23, 0.96));
  border: 1px solid rgba(230, 92, 0, 0.28);
  border-radius: 16px;
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.passport-banner-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.passport-title-tag {
  display: inline-block;
  font-family: var(--font-roman);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

.passport-banner-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
}

.passport-progress-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-fire-bright);
}

.passport-progress-track {
  width: 140px;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.passport-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-fire), var(--color-gold));
  border-radius: 999px;
  transition: width 0.4s ease-out;
}

.passport-quests-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .passport-quests-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .passport-quests-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quest-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1rem;
  transition: all var(--transition-fast);
}

.quest-item.is-completed {
  background: rgba(230, 92, 0, 0.1);
  border-color: rgba(230, 92, 0, 0.4);
}

.quest-item.is-completed .quest-status-icon {
  background: var(--color-fire);
  color: #ffffff;
  border-color: var(--color-fire);
}

.quest-status-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-dim);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition-fast);
}

.quest-text-box {
  display: flex;
  flex-direction: column;
}

.quest-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.quest-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.passport-reward-unlock {
  display: none;
  margin-top: 1.6rem;
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(230, 92, 0, 0.16));
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 12px;
  text-align: center;
}

.passport-reward-unlock.show {
  display: block;
}

.reward-badge {
  display: inline-block;
  font-family: var(--font-roman);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
}

.reward-text {
  font-size: 0.9rem;
  color: #e2e8f0;
  max-width: 680px;
  margin: 0 auto 1rem;
}

/* --------------------------------------------------------------------------
   09. MANIFIESTO, RETRATO OFICIAL & CITAS DE AUTOR
   -------------------------------------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.label-line {
  width: 28px;
  height: 2px;
  background: var(--color-fire);
}

.label-text {
  font-family: var(--font-roman);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--color-fire-bright);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.1rem;
  color: #ffffff;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .manifesto-grid {
    grid-template-columns: 460px 1fr;
    gap: 4.5rem;
  }
}

.manifesto-media {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.chef-card-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  box-shadow: var(--shadow-card);
}

.chef-card-glow {
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--color-fire), transparent 60%);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.chef-card-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 2;
  transition: transform var(--transition-slow);
}

.chef-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(7, 8, 10, 0.95), transparent);
  z-index: 3;
}

.chef-card-info {
  display: flex;
  flex-direction: column;
}

.chef-card-name {
  font-family: var(--font-roman);
  font-size: 1.22rem;
  font-weight: 800;
  color: #ffffff;
}

.chef-card-role {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 600;
}

.chef-card-loc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.quote-card {
  background: rgba(20, 24, 36, 0.65);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--color-fire);
  padding: 1.35rem;
  border-radius: 8px;
  position: relative;
}

.quote-icon {
  width: 24px;
  height: 24px;
  color: var(--color-fire);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.quote-text {
  font-family: var(--font-serif-luxury);
  font-style: italic;
  font-size: 1.08rem;
  color: #f1f5f9;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.quote-author {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-gold);
}

.manifesto-paragraphs p {
  margin-bottom: 1.1rem;
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.75;
}

.lead-text {
  font-size: 1.18rem !important;
  color: #ffffff !important;
  font-weight: 500;
  line-height: 1.75;
}

.progressive-disclosure-box {
  margin: 1.4rem 0 2rem;
}

.disclosure-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(230, 92, 0, 0.12);
  border: 1px solid rgba(230, 92, 0, 0.35);
  border-radius: 6px;
  color: var(--color-fire-bright);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.disclosure-toggle:hover {
  background: rgba(230, 92, 0, 0.22);
  border-color: var(--color-fire);
}

.disclosure-toggle .toggle-icon {
  transition: transform var(--transition-fast);
}

.disclosure-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

.disclosure-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.3s ease;
  opacity: 0;
  border-left: 2px solid var(--color-fire);
  padding-left: 1rem;
  margin-top: 0.8rem;
}

.disclosure-content.is-open {
  max-height: 400px;
  opacity: 1;
}

.principles-grid {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.8rem;
}

.principle-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.principle-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-fire-bright);
  flex-shrink: 0;
}

.principle-svg {
  width: 22px;
  height: 22px;
}

.principle-heading {
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

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

/* --------------------------------------------------------------------------
   10. GALERÍA DINÁMICA: EL CHEF EN ACCIÓN (4 MOMENTOS)
   -------------------------------------------------------------------------- */
.moments-tabs-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.moment-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  background: rgba(20, 24, 36, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.moment-tab-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(26, 32, 48, 0.8);
}

.moment-tab-btn.active {
  background: linear-gradient(135deg, rgba(230, 92, 0, 0.3), rgba(194, 65, 12, 0.4));
  color: #ffffff;
  border-color: var(--color-fire);
  box-shadow: 0 4px 18px var(--color-fire-glow);
}

/* Indicador lineal activo de 6 segundos de rotación automática */
.moment-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2.5px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-amber), var(--color-fire-bright));
  box-shadow: 0 0 10px var(--color-fire-bright);
  transform-origin: left;
  animation: momentSlideTimer 6s linear infinite;
}

.moments-section:hover .moment-tab-btn.active::after {
  animation-play-state: paused;
}

@keyframes momentSlideTimer {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.moment-stage-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

@media (min-width: 992px) {
  .moment-stage-card {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.moment-stage-media {
  position: relative;
  min-height: 380px;
  background: #000;
}

@media (min-width: 992px) {
  .moment-stage-media {
    min-height: 480px;
  }
}

.moment-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.moment-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 8, 10, 0.9) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.moment-stage-pill {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(7, 8, 10, 0.85);
  border: 1px solid rgba(230, 92, 0, 0.4);
  color: var(--color-fire-bright);
  font-family: var(--font-roman);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.moment-stage-details {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.moment-stage-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.1rem;
  line-height: 1.25;
}

.moment-stage-desc {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.moment-key-facts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.fact-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.65rem 0.95rem;
  font-size: 0.84rem;
  color: #e2e8f0;
}

.fact-chip strong {
  color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   11. CUADRANTES DE ESPECIALIDAD CULINARIA & ACORDEONES
   -------------------------------------------------------------------------- */
.specialties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.specialty-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.specialty-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 255, 255, 0.18);
}

.card-accent-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-ocean), transparent);
}

.card-accent-border.fire-border { background: linear-gradient(90deg, var(--color-fire), transparent); }
.card-accent-border.gold-border { background: linear-gradient(90deg, var(--color-gold), transparent); }
.card-accent-border.green-border { background: linear-gradient(90deg, #cbd5e1, transparent); }

.specialty-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.85rem;
}

.ocean-badge { background: rgba(13, 148, 136, 0.15); color: var(--color-ocean-bright); border: 1px solid var(--color-ocean-glow); }
.fire-badge { background: rgba(230, 92, 0, 0.15); color: var(--color-fire-bright); border: 1px solid var(--color-fire-glow); }
.gold-badge { background: rgba(212, 175, 55, 0.15); color: var(--color-gold); border: 1px solid rgba(212, 175, 55, 0.4); }
.green-badge { background: rgba(203, 213, 225, 0.12); color: #e2e8f0; border: 1px solid rgba(203, 213, 225, 0.35); }

.specialty-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.specialty-text {
  font-size: 0.94rem;
  color: var(--text-body);
  margin-bottom: 1.2rem;
  line-height: 1.65;
}

.card-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-ocean-bright);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.card-expand-btn:hover {
  background: rgba(0, 194, 203, 0.12);
  border-color: var(--color-ocean);
  color: #ffffff;
}

.card-expand-btn .btn-arrow {
  transition: transform var(--transition-fast);
}

.card-expand-btn[aria-expanded="true"] .btn-arrow {
  transform: rotate(180deg);
}

.card-expandable-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.3s ease, margin-top 0.3s ease;
  opacity: 0;
  margin-top: 0;
}

.card-expandable-body.is-expanded {
  max-height: 600px;
  opacity: 1;
  margin-top: 1.2rem;
}

.specialty-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.specialty-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #e2e8f0;
}

.check-icon {
  width: 17px;
  height: 17px;
  color: var(--color-fire);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   12. EXPLORADOR INTERACTIVO DE +90 ESPECIES MARINAS
   -------------------------------------------------------------------------- */
.species-chips-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2.2rem;
}

.species-chip {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: rgba(20, 24, 36, 0.75);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.species-chip:hover {
  color: #ffffff;
  border-color: rgba(0, 194, 203, 0.4);
}

.species-chip.active {
  background: rgba(0, 194, 203, 0.16);
  border-color: var(--color-ocean-bright);
  color: var(--color-ocean-bright);
  box-shadow: 0 0 14px var(--color-ocean-glow);
}

.species-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .species-detail-card {
    padding: 2.5rem;
  }
}

.species-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .species-card-grid {
    grid-template-columns: 1fr 1.12fr;
    gap: 2.6rem;
  }
}

/* Columna Multimedia de la Especie (Formato Gastronómico 16:10) */
.species-media-col {
  width: 100%;
}

.species-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: #050608;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 12px 32px -5px rgba(0, 0, 0, 0.75);
}

.species-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.35s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.species-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 8, 10, 0.82) 0%, rgba(7, 8, 10, 0.15) 45%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.species-origin-pill {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(7, 8, 10, 0.88);
  border: 1px solid rgba(0, 194, 203, 0.45);
  color: var(--color-ocean-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 3;
}

/* Columna de Información Culinaria */
.species-info-col {
  display: flex;
  flex-direction: column;
}

.species-latin {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-gold);
  letter-spacing: 0.8px;
  margin-bottom: 0.35rem;
  display: block;
}

.species-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.species-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.species-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.sp-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
}

.sp-badge.fire-pill {
  background: rgba(230, 92, 0, 0.14);
  color: var(--color-fire-bright);
  border: 1px solid var(--color-fire-glow);
}

.sp-badge.ocean-pill {
  background: rgba(0, 194, 203, 0.14);
  color: var(--color-ocean-bright);
  border: 1px solid var(--color-ocean-glow);
}

/* Botón de Despliegue Progresivo Ficha Técnica (Anti-Saturación NGV & BRICHT) */
.sp-ficha-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sp-ficha-toggle-btn:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--color-gold);
  color: #ffffff;
}

.toggle-btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

/* Ficha Técnica Expandible */
.species-specs-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: rgba(14, 17, 23, 0.75);
  border: 1px solid transparent;
  border-radius: 8px;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s ease,
              padding 0.35s ease,
              margin-top 0.35s ease,
              border-color 0.35s ease;
}

.species-specs-body.is-open {
  max-height: 500px;
  opacity: 1;
  padding: 1.25rem;
  margin-top: 1rem;
  border-color: var(--border-subtle);
}

.sp-spec-box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sp-spec-label {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
}

.sp-spec-val {
  font-size: 0.88rem;
  color: #e2e8f0;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   13. CRONOLOGÍA PROFESIONAL (TRAYECTORIA 2010–2026)
   -------------------------------------------------------------------------- */
.timeline-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
}

.filter-chip {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.filter-chip:hover {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-chip.active {
  background: var(--color-fire);
  color: #ffffff;
  border-color: var(--color-fire);
  box-shadow: 0 4px 14px var(--color-fire-glow);
}

.timeline-container {
  position: relative;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 0;
}

.timeline-track-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-fire), var(--color-gold), rgba(255, 255, 255, 0.1));
}

@media (min-width: 768px) {
  .timeline-track-line { left: 32px; }
}

.timeline-block {
  position: relative;
  padding-left: 55px;
  margin-bottom: 2rem;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

@media (min-width: 768px) {
  .timeline-block { padding-left: 80px; }
}

.timeline-block.is-hidden {
  display: none;
}

.timeline-dot {
  position: absolute;
  top: 24px;
  left: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 3px solid var(--color-gold);
  z-index: 2;
  transition: all var(--transition-fast);
}

@media (min-width: 768px) {
  .timeline-dot { left: 24px; }
}

.timeline-block:hover .timeline-dot {
  background: var(--color-fire);
  border-color: #ffffff;
  box-shadow: 0 0 14px var(--color-fire-glow);
  transform: scale(1.2);
}

.timeline-content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.8rem 2rem;
  position: relative;
  transition: all var(--transition-normal);
}

.timeline-content-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.timeline-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.timeline-role {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.timeline-year-pill {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.timeline-company {
  font-size: 0.95rem;
  color: var(--color-fire-bright);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
}

.timeline-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.timeline-expand-btn:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   14. PORTAFOLIO DE PLATILLOS & MODAL LIGHTBOX INTERACTIVO
   -------------------------------------------------------------------------- */
.portfolio-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 3rem;
}

.portfolio-filter {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: rgba(20, 24, 36, 0.65);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.portfolio-filter:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.portfolio-filter.active {
  background: var(--color-fire);
  color: #ffffff;
  border-color: var(--color-fire);
  box-shadow: 0 4px 14px var(--color-fire-glow);
}

.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.dish-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 92, 0, 0.4);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.dish-img-box,
.dish-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.dish-card:hover .dish-img {
  transform: scale(1.08);
}

.dish-hover-overlay,
.dish-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 8, 10, 0.92) 0%, rgba(7, 8, 10, 0.45) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 3;
}

.dish-card:hover .dish-hover-overlay,
.dish-card:hover .dish-overlay {
  opacity: 1;
}

.view-sheet-btn,
.dish-inspect-btn {
  background: rgba(14, 17, 23, 0.9);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  backdrop-filter: blur(8px);
  transform: translateY(8px);
  transition: all var(--transition-fast);
}

.dish-card:hover .view-sheet-btn,
.dish-card:hover .dish-inspect-btn {
  transform: translateY(0);
}

.dish-category-tag,
.dish-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(7, 8, 10, 0.88);
  border: 1px solid rgba(230, 92, 0, 0.4);
  color: var(--color-fire-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.dish-category-tag.ocean-tag {
  border-color: var(--color-ocean-glow);
  color: var(--color-ocean-bright);
}

.dish-category-tag.gold-tag {
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--color-gold);
}

.dish-category-tag.fire-tag {
  border-color: rgba(230, 92, 0, 0.5);
  color: var(--color-fire-bright);
}

.dish-body,
.dish-content {
  padding: 1.35rem 1.4rem;
}

.dish-name,
.dish-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.dish-short-desc,
.dish-desc {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dish-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.meta-item strong {
  font-weight: 700;
}

/* Modal Lightbox */
.dish-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.dish-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}

.modal-container {
  position: relative;
  z-index: 2;
  background: var(--bg-surface);
  border: 1px solid rgba(230, 92, 0, 0.3);
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--color-fire);
  transform: rotate(90deg);
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .modal-body-grid { grid-template-columns: 1fr 1fr; }
}

.modal-img-col {
  position: relative;
  min-height: 300px;
  background: #000;
}

.modal-dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-tag-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(7, 8, 10, 0.85);
  border: 1px solid var(--color-fire);
  color: var(--color-fire-bright);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.modal-info-col {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
}

.modal-dish-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.modal-dish-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.modal-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.2rem;
}

.spec-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.spec-label {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
}

.spec-val {
  font-size: 0.88rem;
  color: #f1f5f9;
}

.modal-cta-box {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   15. PROPUESTA DE VALOR: SERVICIOS PROFESIONALES
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2.2rem;
  position: relative;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: rgba(230, 92, 0, 0.4);
  box-shadow: var(--shadow-card);
}

.service-number {
  font-family: var(--font-roman);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  line-height: 1;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(230, 92, 0, 0.12);
  border: 1px solid rgba(230, 92, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-fire-bright);
  margin-bottom: 1.4rem;
}

.service-icon-box svg {
  width: 26px;
  height: 26px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.service-points {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

/* --------------------------------------------------------------------------
   16. REFERENCIAS PROFESIONALES DE ALTO PERFIL
   -------------------------------------------------------------------------- */
.references-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .references-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.reference-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.reference-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
}

.ref-badge {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-gold);
  margin-bottom: 0.9rem;
}

.ref-quote {
  font-family: var(--font-serif-luxury);
  font-style: italic;
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.ref-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.1rem;
}

.ref-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #0e1117);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ref-details {
  display: flex;
  flex-direction: column;
}

.ref-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.ref-title {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.ref-endorsement {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-top: 0.35rem;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.ref-endorsement::before {
  content: '✓';
  color: var(--color-ocean-bright);
  font-weight: 800;
}

.ref-phone {
  display: none;
}

/* --------------------------------------------------------------------------
   17. SECCIÓN DE CONTACTO DIRECTO & CANALES
   -------------------------------------------------------------------------- */
.contact-section {
  padding-bottom: 6rem;
}

.contact-card-box {
  background: linear-gradient(135deg, rgba(20, 24, 36, 0.92), rgba(14, 17, 23, 0.98));
  border: 1px solid rgba(230, 92, 0, 0.35);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.contact-card-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-fire-glow), transparent 70%);
  pointer-events: none;
}

.contact-pill {
  display: inline-block;
  font-family: var(--font-roman);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: var(--color-fire-bright);
  margin-bottom: 0.8rem;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.9rem;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.8rem;
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .contact-channels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .contact-channels-grid { grid-template-columns: repeat(4, 1fr); }
}

.channel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.6rem 1.3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-normal);
}

.channel-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.channel-wa:hover { border-color: #25d366; }
.channel-mail:hover { border-color: var(--color-fire-bright); }
.channel-ig:hover { border-color: #e1306c; }
.channel-phone:hover { border-color: var(--color-gold); }

.channel-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.channel-wa .channel-icon-circle { background: rgba(37, 211, 102, 0.15); color: #25d366; }
.channel-mail .channel-icon-circle { background: rgba(230, 92, 0, 0.15); color: var(--color-fire-bright); }
.channel-ig .channel-icon-circle { background: rgba(225, 48, 108, 0.15); color: #e1306c; }
.channel-phone .channel-icon-circle { background: rgba(212, 175, 55, 0.15); color: var(--color-gold); }

.channel-icon-circle svg {
  width: 24px;
  height: 24px;
}

.channel-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.channel-val {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  word-break: break-all;
}

.channel-action {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold);
}

.contact-cv-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2.2rem 1.5rem;
}

.cv-box-label {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1.2rem;
}

.cv-download-flex {
  display: flex;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.cv-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   18. PIE DE PÁGINA & PROTOCOLO OFICIAL NGV | BRICHT
   -------------------------------------------------------------------------- */
.site-footer {
  background: #050608;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4.5rem 0 3rem;
  position: relative;
  z-index: 10;
}

.footer-inner {
  display: flex;
  flex-direction: column;
}

.footer-main-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-col {
  max-width: 480px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.footer-monogram {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #181d2a, #0e1117);
  border: 1px solid rgba(230, 92, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-roman);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-gold);
}

.footer-brand-name {
  font-family: var(--font-roman);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.footer-brand-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--color-fire-bright);
}

.footer-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer-location {
  font-size: 0.82rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-col {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-content: flex-start;
  max-width: 520px;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff;
}

.footer-link.highlight {
  color: var(--color-gold);
  font-weight: 700;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 2rem;
}

/* Fila Inferior del Footer: Consorcio NGV & BRICHT */
.footer-consortium-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.copyright-text {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.consortium-seal {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.seal-label {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.consortium-brand-group {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.95rem;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.consortium-brand-group:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.consortium-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* 1. NGV: SOLO LOGO IMAGEN RECORTADO */
.consortium-ngv-img {
  height: 24px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

.consortium-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  font-weight: 300;
  user-select: none;
}

/* 2. BRICHT: ESTRICTAMENTE TIPOGRÁFICO EN NUNITO EXTRABOLD 900 */
.consortium-bricht-wordmark {
  font-family: var(--font-bricht);
  font-weight: 900;
  font-size: 1.08rem;
  color: #ffffff;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1;
}

.brand-bricht:hover .consortium-bricht-wordmark {
  color: var(--color-fire-bright);
}

/* --------------------------------------------------------------------------
   19. WIDGET FLOTANTE RADAR WHATSAPP
   -------------------------------------------------------------------------- */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
}

.whatsapp-bubble {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition-normal);
}

.whatsapp-bubble:hover {
  transform: scale(1.08);
}

.whatsapp-icon-inner {
  position: relative;
  z-index: 3;
}

.whatsapp-icon-inner svg {
  width: 28px;
  height: 28px;
}

.whatsapp-radar {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.8;
  animation: radarWave 2.4s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
  z-index: 1;
}

.whatsapp-radar-delay {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.5;
  animation: radarWave 2.4s infinite cubic-bezier(0.1, 0.8, 0.3, 1) 0.6s;
  z-index: 1;
}

@keyframes radarWave {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(14, 17, 23, 0.95);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.whatsapp-bubble:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   20. SUITE DE PROTECCIÓN DRM & DERECHOS INTELECTUALES (SILENCIOSO)
   -------------------------------------------------------------------------- */
.protected-media-container {
  position: relative;
  overflow: hidden;
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-touch-callout: none !important;
}

.protected-media {
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
  transition: filter 0.25s ease, transform 0.4s ease;
}

.media-protection-shield {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: transparent;
  pointer-events: auto;
  cursor: default;
}

.watermark-overlay {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.16;
  mix-blend-mode: overlay;
  overflow: hidden;
}

.watermark-text {
  font-family: var(--font-montserrat);
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 4px;
  text-transform: uppercase;
  transform: rotate(-30deg);
  white-space: nowrap;
  user-select: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.capture-block-notice {
  position: absolute;
  inset: 0;
  z-index: 15;
  background: rgba(7, 8, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.capture-block-notice .notice-icon {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

.capture-block-notice .notice-title {
  font-family: var(--font-roman);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}

.capture-block-notice .notice-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Estado activo de desenfoque de protección anti-captura cuando la ventana pierde foco */
.protected-media-container.anti-capture-blur .protected-media {
  filter: blur(32px) grayscale(90%) brightness(0.2) !important;
}

.protected-media-container.anti-capture-blur .capture-block-notice {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Toast flotante de aviso de derechos de autor */
.protection-toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(14, 17, 23, 0.96);
  border: 1px solid rgba(230, 92, 0, 0.5);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7), 0 0 20px var(--color-fire-glow);
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.protection-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.toast-icon {
  font-size: 1.1rem;
}

.toast-msg {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .toast-msg {
    white-space: normal;
    font-size: 0.78rem;
  }
  .protection-toast {
    width: 90%;
    border-radius: 12px;
  }
}

/* --------------------------------------------------------------------------
   21. REGLAS RESPONSIVAS MULTI-DISPOSITIVO (2026 STANDARDS)
   -------------------------------------------------------------------------- */
/* Pantallas medianas y laptops (< 1200px) */
@media (max-width: 1199px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-cv-btn .desktop-only,
  .header-wa-btn .desktop-only {
    display: none !important;
  }
}

/* Tablets (< 992px) */
@media (max-width: 991px) {
  .section {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }

  .hero-section {
    padding-top: clamp(4.5rem, 9vh, 5.5rem);
    padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
  }

  .moment-stage-card {
    grid-template-columns: 1fr;
  }

  .species-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Optimización de Altura de Pantalla para Laptops (768p, 720p o 1080p con escalado de Windows) */
@media (max-height: 768px) {
  .hero-section {
    padding-top: clamp(3.8rem, 6.5vh, 4.8rem);
    padding-bottom: clamp(1rem, 2vh, 1.6rem);
  }

  .hero-pill {
    margin-bottom: 0.4rem;
    padding: 0.25rem 0.75rem;
  }

  .hero-title {
    margin-bottom: 0.45rem;
  }

  .hero-title-fire {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
  }

  .hero-title-fire-sub {
    font-size: clamp(1.4rem, 3vw, 2.3rem);
  }

  .hero-subtitle {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .hero-cta-group {
    margin-bottom: 0.8rem;
    gap: 0.6rem;
  }

  .btn-lg {
    padding: 0.65rem 1.25rem;
    font-size: 0.88rem;
  }

  .hero-badges-grid {
    gap: 0.55rem;
  }

  .hero-badge-card {
    padding: 0.45rem 0.65rem;
  }

  .badge-num {
    font-size: 1.28rem;
    margin-bottom: 0.1rem;
  }

  .badge-label {
    font-size: 0.68rem;
  }
}

/* Smartphones (< 640px) */
@media (max-width: 639px) {
  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .brand-tag {
    display: none;
  }

  .passport-mini-badge .passport-label,
  .passport-mini-badge .desktop-only {
    display: none !important;
  }

  .hero-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .hero-badge-card {
    padding: 0.75rem 0.5rem;
  }

  .badge-num {
    font-size: 1.4rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .moments-tabs-bar {
    gap: 0.45rem;
  }

  .moment-tab-btn {
    padding: 0.5rem 0.95rem;
    font-size: 0.8rem;
    flex-grow: 1;
    justify-content: center;
  }

  .contact-card-box {
    padding: 2.2rem 1.2rem;
  }

  .footer-main-row {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-consortium-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .consortium-seal {
    flex-wrap: wrap;
  }
}

/* Dispositivos ultracompactos (360px–400px) */
@media (max-width: 400px) {
  .brand-monogram {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .brand-name {
    font-size: 0.88rem;
    letter-spacing: 1.2px;
  }

  .header-actions .btn-sm {
    padding: 0.4rem 0.65rem;
  }
}

/* --------------------------------------------------------------------------
   22. REGLAS DE IMPRESIÓN LIMPIA (@media print)
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .floating-whatsapp-widget,
  .hero-cta-group,
  .portfolio-filter-bar,
  .timeline-filter-bar,
  .scroll-progress-bar,
  .protected-media-container,
  .protected-media,
  .embers-canvas,
  #embersCanvas {
    display: none !important;
  }

  body {
    background: #ffffff !important;
    color: #111827 !important;
  }

  .section {
    padding: 2rem 0 !important;
  }

  .timeline-content-card,
  .specialty-card,
  .service-card,
  .reference-card {
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    color: #111827 !important;
    page-break-inside: avoid;
  }

  .section-title,
  .timeline-role,
  .specialty-title {
    color: #111827 !important;
  }
}

/* --------------------------------------------------------------------------
   23. MOTOR CINEMATOGRÁFICO DE REVELACIÓN AL SCROLL (REVEAL-ON-SCROLL)
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(3px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Cascada cinematográfica escalonada en cuadrículas */
.specialties-grid .specialty-card:nth-child(2) { transition-delay: 0.08s; }
.specialties-grid .specialty-card:nth-child(3) { transition-delay: 0.16s; }
.specialties-grid .specialty-card:nth-child(4) { transition-delay: 0.24s; }

.dishes-grid .dish-card:nth-child(2) { transition-delay: 0.08s; }
.dishes-grid .dish-card:nth-child(3) { transition-delay: 0.16s; }
.dishes-grid .dish-card:nth-child(4) { transition-delay: 0.24s; }

.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.16s; }

.references-grid .reference-card:nth-child(2) { transition-delay: 0.08s; }
.references-grid .reference-card:nth-child(3) { transition-delay: 0.16s; }
.references-grid .reference-card:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   23. MODAL INTERACTIVO: ENCUESTA DE CONTACTO WHATSAPP CON EL CHEF
   ========================================================================== */
.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  padding: clamp(0.75rem, 3vw, 1.5rem);
  box-sizing: border-box;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.wa-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.wa-modal-dialog {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 620px;
  max-height: min(92dvh, 880px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: linear-gradient(180deg, #111522 0%, #090b10 100%);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 16px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.95), 0 0 35px rgba(230, 92, 0, 0.15);
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.4) transparent;
}

.wa-modal.is-open .wa-modal-dialog {
  transform: scale(1) translateY(0);
}

.wa-modal-dialog::-webkit-scrollbar {
  width: 6px;
}
.wa-modal-dialog::-webkit-scrollbar-track {
  background: transparent;
}
.wa-modal-dialog::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 4px;
}

.wa-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 12;
}

.wa-modal-close svg {
  width: 18px;
  height: 18px;
}

.wa-modal-close:hover {
  background: rgba(230, 92, 0, 0.2);
  border-color: #ff7619;
  color: #ffffff;
  transform: rotate(90deg) scale(1.05);
}

.wa-modal-header {
  margin-bottom: 1.25rem;
  padding-right: 2.2rem;
}

.wa-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #ff7619;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(230, 92, 0, 0.12);
  border: 1px solid rgba(230, 92, 0, 0.35);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 0.6rem;
}

.wa-badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px #25d366;
  animation: waPulse 1.8s infinite;
}

@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #25d366; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.wa-modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.wa-modal-subtitle {
  font-size: 0.83rem;
  color: #94a3b8;
  line-height: 1.45;
}

.wa-survey-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wa-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.wa-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wa-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: 0.2px;
}

.wa-label .req {
  color: #ff7619;
  font-weight: 800;
  margin-left: 2px;
}

.wa-input-wrap, .wa-select-wrap, .wa-textarea-wrap {
  position: relative;
  width: 100%;
}

.wa-input, .wa-select, .wa-textarea {
  width: 100%;
  background: #141825;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #ffffff;
  box-sizing: border-box;
  transition: all 0.2s ease;
  min-height: 42px;
}

.wa-input::placeholder, .wa-textarea::placeholder {
  color: #64748b;
  font-size: 0.8rem;
}

.wa-input:focus, .wa-select:focus, .wa-textarea:focus {
  border-color: #d4af37;
  background: #171d2e;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
  outline: none;
}

.wa-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 14px;
  padding-right: 2.2rem;
  cursor: pointer;
}

.wa-select option {
  background-color: #0e1117;
  color: #ffffff;
  padding: 8px;
}

.wa-textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.4;
}

.wa-field-error {
  font-size: 0.7rem;
  color: #f87171;
  min-height: 14px;
  line-height: 1.2;
}

.wa-input.has-error, .wa-select.has-error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}

.wa-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0.85rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 8px;
  margin-top: 0.4rem;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #e65c00 0%, #ff7619 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(230, 92, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  min-height: 48px;
}

.wa-submit-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.wa-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(230, 92, 0, 0.55);
  filter: brightness(1.05);
}

.wa-submit-btn:active {
  transform: translateY(0);
}

.wa-privacy-note {
  font-size: 0.72rem;
  color: #64748b;
  text-align: center;
  margin-top: 0.2rem;
  line-height: 1.35;
}

@media (max-width: 580px) {
  .wa-modal {
    padding: 0.5rem;
  }
  .wa-modal-dialog {
    padding: 1.1rem 1rem;
    max-height: 94dvh;
  }
  .wa-form-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .wa-modal-header {
    margin-bottom: 0.9rem;
    padding-right: 2rem;
  }
  .wa-modal-title {
    font-size: 1.25rem;
  }
  .wa-input, .wa-select, .wa-textarea {
    font-size: 0.84rem;
    padding: 0.6rem 0.75rem;
  }
  .wa-submit-btn {
    font-size: 0.82rem;
    padding: 0.75rem 0.85rem;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
}


