/* ==========================================================================
   SUIPACHA GOURMET 2026 - SISTEMA DE DISEÑO Y ESTILOS PROFESIONAL
   Dirección de Arte & Identidad Visual Oficial
   ========================================================================== */

/* @font-face para Plus Jakarta Sans local con fallback a Google Fonts */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../colores y tipografias/PlusJakartaSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../colores y tipografias/PlusJakartaSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../colores y tipografias/PlusJakartaSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../colores y tipografias/PlusJakartaSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../colores y tipografias/PlusJakartaSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Variables del Sistema de Diseño */
:root {
  /* Paleta Oficial Suipacha Gourmet */
  --sg-charcoal: #2D2E3A;
  --sg-charcoal-deep: #1A1B23;
  --sg-charcoal-light: #4A4D5E;
  --sg-blue: #145FCD;
  --sg-blue-light: #EBF2FC;
  --sg-blue-dark: #0E489E;
  --sg-cheese-ochre: #EF8B1B;
  --sg-wine: #B01917;
  --sg-wine-dark: #831210;
  --sg-wine-light: #FCEBEA;
  --sg-orange: #F26A03;
  --sg-orange-hover: #D95A00;
  --sg-cream: #FDEDD5;
  --sg-cream-light: #FAF6F0;
  --sg-cream-dark: #F3E4CF;
  --sg-white: #FFFFFF;
  --sg-muted: #64748B;
  --sg-border: rgba(45, 46, 58, 0.1);

  /* Tipografías */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Caveat', 'Playfair Display', cursive;

  /* Sombras Suaves & Naturales */
  --shadow-sm: 0 2px 8px rgba(45, 46, 58, 0.05);
  --shadow-md: 0 8px 24px rgba(45, 46, 58, 0.07);
  --shadow-lg: 0 16px 36px rgba(45, 46, 58, 0.09);
  --shadow-xl: 0 24px 54px rgba(45, 46, 58, 0.12);
  --shadow-sticker: 0 8px 20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-orange: 0 10px 25px rgba(242, 106, 3, 0.3);
  --shadow-blue: 0 10px 25px rgba(20, 95, 205, 0.25);
  --shadow-wine: 0 10px 25px rgba(176, 25, 23, 0.25);

  /* Curvas de Borde Consistentes */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transiciones Discretas */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* Anchos de Contenedor */
  --container-width: 1260px;
  --container-narrow: 960px;
}

/* Reset y Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--sg-cream-light);
  color: #2D2E3A;
  line-height: 1.68;
  overflow-x: hidden;
  position: relative;
  background-image: radial-gradient(rgba(45, 46, 58, 0.04) 1px, transparent 0);
  background-size: 28px 28px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  color: #383A49;
}

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

/* Contenedores */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* Top Banner de Fecha y Cuenta Regresiva */
.top-bar {
  background: var(--sg-charcoal-deep);
  color: var(--sg-cream);
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(253, 237, 213, 0.12);
  position: relative;
  z-index: 100;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-badge {
  background: var(--sg-orange);
  color: var(--sg-white);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.top-countdown {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
}

.top-countdown strong {
  color: var(--sg-cheese-ochre);
  font-weight: 700;
}

/* Navegación Principal */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 46, 58, 0.07);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: var(--container-width);
  margin: 0 auto;
  gap: 1.5rem;
}

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

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

.nav-center-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  gap: 1.75rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--sg-charcoal);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

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

.nav-link:hover {
  color: var(--sg-orange);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ==========================================================================
   SISTEMA DE BOTONES UNIFICADO (Jerarquía Art Direction)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.65rem;
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* Botón Principal (Rey de Conversión): Naranja Festival */
.btn-primary,
.btn-orange {
  background: var(--sg-orange);
  color: var(--sg-white);
  box-shadow: var(--shadow-orange);
  border-color: var(--sg-orange);
}

.btn-primary:hover,
.btn-orange:hover {
  background: var(--sg-orange-hover);
  border-color: var(--sg-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(242, 106, 3, 0.4);
  color: var(--sg-white);
}

.btn-primary:active,
.btn-orange:active {
  transform: translateY(0);
}

/* Botón Secundario (Azul Institucional) */
.btn-secondary {
  background: var(--sg-blue);
  color: var(--sg-white);
  box-shadow: var(--shadow-blue);
  border-color: var(--sg-blue);
}

.btn-secondary:hover {
  background: var(--sg-blue-dark);
  border-color: var(--sg-blue-dark);
  transform: translateY(-2px);
}

/* Botón Contorno Neutro (Acciones de Exploración) */
.btn-outline {
  background: transparent;
  color: var(--sg-charcoal);
  border: 2px solid var(--sg-charcoal);
  font-weight: 700;
}

.btn-outline:hover {
  background: var(--sg-charcoal);
  border-color: var(--sg-charcoal);
  color: var(--sg-white);
  transform: translateY(-2px);
}

/* Botón Contorno Blanco (Fondos Oscuros) */
.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: var(--sg-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  font-weight: 700;
}

.btn-outline-white:hover {
  background: var(--sg-white);
  border-color: var(--sg-white);
  color: var(--sg-charcoal-deep);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--sg-charcoal);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.mobile-drawer {
  display: none;
}

/* ==========================================================================
   HERO CINEMATOGRÁFICO - Momento Sensorial Festival
   ========================================================================== */
.hero-cinematic {
  position: relative;
  padding: 4.5rem 0 5.5rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, #FBF6EE 0%, #F5ECDF 100%);
  border-bottom: 1px solid rgba(45, 46, 58, 0.08);
}

.hero-texture-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../Imagenes/white-paper-texture-background.jpg');
  background-size: cover;
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-cinematic-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-cinematic-copy {
  display: flex;
  flex-direction: column;
}

.hero-editorial-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--sg-white);
  border: 1.5px solid rgba(239, 139, 27, 0.3);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--sg-wine);
  margin-bottom: 1.35rem;
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
  letter-spacing: 0.02em;
}

.pill-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sg-orange);
  box-shadow: 0 0 0 3px rgba(242, 106, 3, 0.25);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(242, 106, 3, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(242, 106, 3, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(242, 106, 3, 0); }
}

.hero-editorial-title {
  font-size: clamp(2.4rem, 4.2vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--sg-charcoal-deep);
  margin-bottom: 1.35rem;
  letter-spacing: -0.03em;
}

.hero-editorial-lead {
  font-size: 1.15rem;
  color: #383A49;
  line-height: 1.68;
  margin-bottom: 1.85rem;
  max-width: 540px;
}

.hero-editorial-meta {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-bottom: 2.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(45, 46, 58, 0.12);
  border-bottom: 1px solid rgba(45, 46, 58, 0.12);
}

.meta-editorial-item {
  display: flex;
  flex-direction: column;
}

.meta-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.meta-sub {
  font-size: 0.88rem;
  color: #4A4D5E;
  font-weight: 600;
}

.meta-editorial-divider {
  width: 1px;
  height: 44px;
  background: rgba(45, 46, 58, 0.16);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-hero-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-secondary-link {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--sg-charcoal-deep);
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  transition: color var(--transition-fast);
}

.hero-secondary-link:hover {
  color: var(--sg-orange);
}

/* Escena Fotográfica Inmersiva */
.hero-sensorial-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sensorial-frame-main {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(45, 46, 58, 0.16);
  border: 4px solid var(--sg-white);
  position: relative;
  background: var(--sg-charcoal);
}

.sensorial-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}

.sensorial-frame-main:hover .sensorial-hero-img {
  transform: scale(1.03);
}

.sensorial-caption-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(13, 27, 42, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  color: var(--sg-white);
  display: flex;
  flex-direction: column;
}

.caption-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--sg-cream);
}

.caption-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Sello de Marca Oficial Superpuesto */
.hero-brand-stamp {
  position: absolute;
  top: -20px;
  right: -15px;
  background: #FFFFFF;
  border: 2px solid rgba(20, 95, 205, 0.18);
  padding: 1rem 1.35rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 5;
  transform: rotate(3deg);
  transition: transform var(--transition-fast);
}

.hero-brand-stamp:hover {
  transform: rotate(0deg) scale(1.04);
}

.stamp-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}

.hero-sticker-float {
  position: absolute;
  z-index: 6;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.18));
  transition: transform var(--transition-fast);
}

.sticker-ne {
  bottom: -25px;
  left: -20px;
  width: 135px;
  transform: rotate(-10deg);
}

.sticker-ne:hover {
  transform: rotate(-4deg) scale(1.06);
}

.hero-cutout-float {
  position: absolute;
  z-index: 5;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.22));
}

.cutout-wine-float {
  top: -30px;
  left: 20px;
  width: 110px;
  transform: rotate(-6deg);
}

/* ==========================================================================
   EL MANIFIESTO: PAUSA TIPOGRÁFICA & CONTRASTE DE ESCALA
   ========================================================================== */
.manifesto-section {
  padding: 5.5rem 0 4.5rem 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(45, 46, 58, 0.06);
  border-bottom: 1px solid rgba(45, 46, 58, 0.06);
}

.manifesto-wrap {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--sg-wine);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.manifesto-quote {
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  font-weight: 700;
  line-height: 1.38;
  color: var(--sg-charcoal-deep);
  margin: 0 auto 3.5rem auto;
  font-style: italic;
  border: none;
  padding: 0;
}

.manifesto-stats-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1.5px solid rgba(45, 46, 58, 0.08);
}

.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-num {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--sg-wine);
  line-height: 1;
  margin-bottom: 0.45rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.95rem;
  color: #4A4D5E;
  font-weight: 600;
  line-height: 1.45;
  max-width: 240px;
}

.stat-divider {
  width: 1px;
  height: 65px;
  background: rgba(45, 46, 58, 0.14);
}

/* ==========================================================================
   DÍPTICO ASIMÉTRICO: FOTOGRAFÍA PROTAGONISTA & HISTORIA
   ========================================================================== */
.story-diptych-section {
  padding: 6.5rem 0;
  background: var(--sg-cream-light);
  position: relative;
}

.story-diptych-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 4.5rem;
  align-items: center;
}

.story-visual-column {
  position: relative;
}

.story-photo-main-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
  border: 4px solid #FFFFFF;
  position: relative;
  background: var(--sg-charcoal);
}

.story-photo-main {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.6s ease;
}

.story-photo-main-frame:hover .story-photo-main {
  transform: scale(1.03);
}

.story-floating-sticker-wrap {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 3;
}

.story-artisan-sticker {
  width: 150px;
  transform: rotate(6deg);
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
  transition: transform var(--transition-fast);
}

.story-artisan-sticker:hover {
  transform: rotate(0deg) scale(1.05);
}

.story-photo-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #55586A;
  line-height: 1.5;
}

.story-photo-caption span {
  font-weight: 800;
  color: var(--sg-charcoal-deep);
}

.story-narrative-column {
  display: flex;
  flex-direction: column;
}

.story-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  line-height: 1.15;
  margin-bottom: 1.35rem;
  letter-spacing: -0.02em;
}

.story-text-body p {
  font-size: 1.05rem;
  color: #383A49;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.story-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin: 1.5rem 0 2.25rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--sg-white);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(45, 46, 58, 0.08);
}

.pillar-line {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: #383A49;
  line-height: 1.5;
}

.pillar-bullet {
  color: var(--sg-orange);
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.pillar-line strong {
  color: var(--sg-charcoal-deep);
}

.story-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   TICKER / CINTA ÚNICA DE IDENTIDAD (Marquee Ticker)
   ========================================================================== */
.marquee-strip {
  background: var(--sg-charcoal-deep);
  color: var(--sg-white);
  padding: 0.95rem 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  border-top: 2px solid var(--sg-orange);
  border-bottom: 2px solid var(--sg-orange);
}

.marquee-track {
  display: inline-flex;
  animation: marquee 35s linear infinite;
  gap: 2.5rem;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-separator {
  color: var(--sg-cheese-ochre);
  font-size: 1.2rem;
}

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

/* ==========================================================================
   SPOTLIGHT MONUMENTAL: SALÓN EXCLUSIVO DE QUESOS Y VINOS
   ========================================================================== */
.salon-spotlight {
  padding: 6.5rem 0;
  background: radial-gradient(circle at 75% 30%, #17325b 0%, #0d1b2a 100%);
  color: var(--sg-cream);
  position: relative;
  overflow: hidden;
}

.salon-decor-bg {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 139, 27, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.salon-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.salon-content .section-kicker {
  color: var(--sg-cheese-ochre);
}

.salon-content h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  color: var(--sg-white);
  line-height: 1.15;
  margin-bottom: 1.35rem;
}

.salon-lead-p {
  font-size: 1.1rem;
  color: rgba(253, 237, 213, 0.92);
  margin-bottom: 1.75rem;
  line-height: 1.68;
}

.salon-quote-box {
  background: rgba(255, 255, 255, 0.07);
  border-left: 4px solid var(--sg-cheese-ochre);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2rem;
}

.salon-quote-box p {
  font-size: 1rem;
  color: var(--sg-cream);
  font-style: italic;
  margin-bottom: 0.45rem;
  line-height: 1.55;
}

.salon-quote-box span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sg-cheese-ochre);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.salon-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.salon-visual {
  position: relative;
}

.salon-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border: 1.5px solid rgba(253, 237, 213, 0.2);
}

.salon-image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.salon-sticker-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 130px;
  transform: rotate(-8deg);
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.4));
  transition: transform var(--transition-fast);
}

.salon-sticker-float:hover {
  transform: rotate(0deg) scale(1.06);
}

/* ==========================================================================
   04. LINE-UP DE INVITADOS ESPECIALES: COMPOSICIÓN EDITORIAL DE AUTOR
   ========================================================================== */
.lineup-section {
  padding: 6.5rem 0;
  background: var(--sg-cream-light);
  position: relative;
  border-top: 1px solid rgba(45, 46, 58, 0.08);
}

.lineup-editorial-header {
  margin-bottom: 3.5rem;
}

.lineup-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(45, 46, 58, 0.12);
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.editorial-section-tag {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--sg-wine);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Filtro Tipográfico Minimalista (Sin píldoras flotantes) */
.lineup-tabs-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sg-charcoal-light);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  position: relative;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--sg-charcoal-deep);
}

.tab-btn.active {
  color: var(--sg-charcoal-deep);
  font-weight: 800;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--sg-orange);
}

.tab-pipe {
  color: rgba(45, 46, 58, 0.25);
  font-size: 0.9rem;
}

.lineup-header-title-block {
  max-width: 900px;
}

.lineup-editorial-title {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 1.15rem;
}

.lineup-editorial-sub {
  font-size: 1.15rem;
  color: #4A4D5E;
  line-height: 1.65;
}

/* Galería Asimétrica de Retratos */
.lineup-editorial-gallery {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Fila 1: Díptico Estelar 60 / 40 */
.lineup-featured-diptych {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: stretch;
}

.chef-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Tarjeta Estelar Dominante (Pietro Sorba) */
.chef-lead-primary,
.chef-lead-secondary {
  background: var(--sg-white);
  border: 1.5px solid rgba(45, 46, 58, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.chef-lead-primary:hover,
.chef-lead-secondary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.chef-portrait-frame {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: var(--sg-charcoal-deep);
}

.chef-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform 0.6s ease;
}

.chef-card:hover .chef-portrait-img {
  transform: scale(1.03);
}

.chef-portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(13, 27, 42, 0.6) 100%);
  pointer-events: none;
}

.chef-day-flag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--sg-charcoal-deep);
  color: var(--sg-white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  border-left: 3px solid var(--sg-orange);
}

.chef-day-flag.orange {
  border-left-color: var(--sg-orange);
}

.chef-day-flag.blue {
  border-left-color: var(--sg-blue);
}

.chef-editorial-info {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.chef-discipline-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sg-blue);
  margin-bottom: 0.45rem;
}

.chef-portrait-name {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.95rem;
}

.chef-portrait-bio {
  font-size: 1rem;
  color: #434657;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.chef-activity-line {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(45, 46, 58, 0.08);
}

.activity-bullet {
  color: var(--sg-orange);
  font-size: 1rem;
  line-height: 1.3;
}

.activity-detail {
  font-size: 0.92rem;
  color: var(--sg-charcoal-deep);
  line-height: 1.45;
}

.activity-detail strong {
  color: var(--sg-wine);
}

/* Fila 2: Cuarteto Cultural en Grilla Asimétrica 4 Columnas */
.lineup-quartet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.chef-quartet-item {
  background: var(--sg-white);
  border: 1px solid rgba(45, 46, 58, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.chef-quartet-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.chef-quartet-thumb {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--sg-charcoal-deep);
}

.chef-quartet-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.chef-quartet-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.chef-quartet-desc {
  font-size: 0.88rem;
  color: #55586A;
  line-height: 1.55;
  margin-bottom: 1.15rem;
  flex-grow: 1;
}

.chef-activity-compact {
  font-size: 0.82rem;
  color: var(--sg-charcoal-deep);
  padding-top: 0.85rem;
  border-top: 1px solid rgba(45, 46, 58, 0.08);
  line-height: 1.4;
}

.chef-activity-compact strong {
  color: var(--sg-wine);
}

/* ==========================================================================
   05. MÓDULO DE ENTRADAS & EXPERIENCIAS EDITORIALES
   ========================================================================== */
.tickets-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--sg-cream-light) 0%, #FAF2E6 100%);
  position: relative;
  border-top: 1px solid rgba(45, 46, 58, 0.08);
}

.tickets-editorial-intro {
  max-width: 860px;
  margin-bottom: 3.5rem;
}

.tickets-editorial-headline {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 0.65rem;
  margin-bottom: 1.15rem;
}

.tickets-editorial-lead {
  font-size: 1.15rem;
  color: #4A4D5E;
  line-height: 1.65;
}

/* Showcase de las 3 Experiencias Previas */
.experiences-manifesto-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.experience-showcase-card {
  background: var(--sg-white);
  border: 1.5px solid rgba(45, 46, 58, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.experience-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.experience-showcase-card.highlighted {
  border-color: rgba(239, 139, 27, 0.45);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F2 100%);
}

.experience-showcase-card.premium {
  border-color: rgba(176, 25, 23, 0.35);
  background: linear-gradient(180deg, #FFFFFF 0%, #FDF4F4 100%);
}

.exp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(45, 46, 58, 0.08);
  padding-bottom: 0.85rem;
}

.exp-category-meta {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--sg-blue-dark);
}

.exp-category-meta.ochre {
  color: var(--sg-cheese-ochre);
}

.exp-category-meta.wine {
  color: var(--sg-wine);
}

.exp-rate-meta {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  letter-spacing: -0.01em;
}

.exp-rate-meta.ochre {
  color: var(--sg-orange);
  font-size: 1.15rem;
}

.exp-rate-meta.wine {
  color: var(--sg-wine);
  font-size: 1.15rem;
}

.exp-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.exp-desc {
  font-size: 0.95rem;
  color: #4A4D5E;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.exp-specs {
  border-top: 1px solid rgba(45, 46, 58, 0.08);
  padding-top: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #55586A;
  line-height: 1.45;
}

.exp-specs strong {
  color: var(--sg-charcoal-deep);
}

/* Mesa de Acreditación Oficial (Consola Transaccional Refinada) */
.accreditation-desk-wrapper {
  background: var(--sg-white);
  border: 1.5px solid rgba(45, 46, 58, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3.5rem;
}

.accreditation-desk-title-strip {
  background: var(--sg-charcoal-deep);
  color: var(--sg-cream);
  padding: 1.25rem 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.accreditation-desk-title-strip h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--sg-white);
  letter-spacing: -0.01em;
  margin: 0;
}

.accreditation-currency-notice {
  font-size: 0.82rem;
  color: rgba(253, 237, 213, 0.8);
}

.tickets-calculator-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
}

.ticket-tiers-container {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  border-right: 1px solid rgba(45, 46, 58, 0.08);
}

.accreditation-group-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.group-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--sg-orange);
  background: rgba(242, 106, 3, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.accreditation-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accreditation-row {
  background: #FDFBF8;
  border: 1px solid rgba(45, 46, 58, 0.09);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.65rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: all var(--transition-fast);
}

.accreditation-row:hover {
  background: var(--sg-white);
  border-color: rgba(45, 46, 58, 0.22);
}

.accreditation-row.featured {
  border-left: 3.5px solid var(--sg-orange);
}

.accreditation-row.experience-row {
  border-left: 3.5px solid var(--sg-cheese-ochre);
  background: #FFFAF4;
}

.accreditation-row.vip-row {
  border-left: 3.5px solid var(--sg-wine);
  background: #FDF7F7;
}

.row-info-col {
  flex-grow: 1;
}

.row-title-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
}

.row-title-badge h4,
.row-info-col h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  margin: 0;
  line-height: 1.25;
}

.row-text-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sg-orange);
}

.row-text-tag.ochre {
  color: var(--sg-cheese-ochre);
}

.row-text-tag.wine {
  color: var(--sg-wine);
}

.row-summary {
  font-size: 0.88rem;
  color: #55586A;
  margin: 0.35rem 0 0.5rem 0;
  line-height: 1.45;
}

.row-price-meta {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.price-main {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--sg-wine);
}

.price-strike {
  font-size: 0.85rem;
  color: var(--sg-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.price-unit {
  font-size: 0.82rem;
  color: var(--sg-muted);
  font-weight: 600;
}

/* Controles Numéricos Limpios (Sin círculos toscos) */
.counter-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--sg-white);
  border: 1.5px solid rgba(45, 46, 58, 0.14);
  border-radius: 6px;
  padding: 0.25rem 0.35rem;
  flex-shrink: 0;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: #F4F3F0;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sg-charcoal-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.counter-btn:hover {
  background: var(--sg-charcoal-deep);
  color: var(--sg-white);
}

.counter-val {
  font-size: 1.05rem;
  font-weight: 800;
  width: 28px;
  text-align: center;
  color: var(--sg-charcoal-deep);
}

/* Ticket de Acreditación Lateral */
.accreditation-ticket-summary {
  background: #171821;
  color: var(--sg-cream);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ticket-stub-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px dashed rgba(253, 237, 213, 0.25);
  padding-bottom: 1.5rem;
  margin-bottom: 1.75rem;
}

.stub-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sg-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.35rem;
}

.ticket-stub-top h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sg-white);
  margin: 0;
}

.ticket-stub-logo {
  height: 36px;
  width: auto;
}

.ticket-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  min-height: 120px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: rgba(253, 237, 213, 0.88);
}

.summary-row strong {
  color: var(--sg-white);
}

.ticket-total-box {
  border-top: 1px solid rgba(253, 237, 213, 0.2);
  padding-top: 1.35rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.total-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sg-cream);
}

.total-amount {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--sg-cheese-ochre);
  letter-spacing: -0.02em;
}

.ticket-actions-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* El botón naranja exclusivo para la conversión principal */
.btn-checkout-pill {
  width: 100%;
  padding: 1.05rem 1.75rem;
  font-size: 1.02rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-orange);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  background: var(--sg-orange);
  color: var(--sg-white);
}

.btn-checkout-pill:hover {
  transform: translateY(-2px);
  background: var(--sg-orange-hover);
}

.btn-text-editorial {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--sg-cream);
  text-decoration: none;
  text-align: center;
  padding: 0.5rem;
  transition: color var(--transition-fast);
}

.btn-text-editorial:hover {
  color: var(--sg-orange);
}

.ticket-security-footer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-top: 1px solid rgba(253, 237, 213, 0.15);
  padding-top: 1.25rem;
}

.sec-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.sec-text {
  font-size: 0.78rem;
  color: rgba(253, 237, 213, 0.7);
  line-height: 1.45;
}

.sec-text strong {
  color: var(--sg-cream);
}

/* Franja Continua de Puntos de Venta Presenciales */
.pos-editorial-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sg-white);
  border: 1px solid rgba(45, 46, 58, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.pos-strip-lead {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pos-strip-locations {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.pos-location-item {
  font-size: 0.9rem;
  color: #4A4D5E;
}

.pos-location-item strong {
  color: var(--sg-charcoal-deep);
}

.pos-sep {
  color: rgba(45, 46, 58, 0.3);
}

/* ==========================================================================
   06. DESTINO & ITINERARIO: ESCAPADA RURAL PANORÁMICA
   ========================================================================== */
.location-panorama-section {
  padding: 6.5rem 0;
  background: var(--sg-white);
  position: relative;
  border-top: 1px solid rgba(45, 46, 58, 0.08);
}

.location-editorial-header {
  max-width: 820px;
  margin-bottom: 3.5rem;
}

.location-editorial-headline {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 0.65rem;
  margin-bottom: 1.15rem;
}

.location-editorial-lead {
  font-size: 1.12rem;
  color: #4A4D5E;
  line-height: 1.65;
}

.destination-experience-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: stretch;
}

.destination-guide-column {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.destination-hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
}

.destination-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 27, 42, 0.85) 100%);
  color: var(--sg-white);
}

.geo-badge {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sg-orange);
  display: block;
  margin-bottom: 0.35rem;
}

.destination-hero-caption h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--sg-white);
  margin: 0;
}

.destination-origins-box {
  background: #FAF8F5;
  border: 1px solid rgba(45, 46, 58, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.origins-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 1rem;
}

/* Botones Rectangulares Limpios de Ruta (Sin píldoras redondeadas) */
.route-buttons-group {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.route-select-btn {
  background: var(--sg-white);
  border: 1.5px solid rgba(45, 46, 58, 0.15);
  padding: 0.6rem 1.15rem;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--sg-charcoal);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.route-select-btn:hover {
  border-color: var(--sg-charcoal-deep);
  color: var(--sg-charcoal-deep);
}

.route-select-btn.active,
.route-select-btn.btn-primary {
  background: var(--sg-charcoal-deep);
  color: var(--sg-white);
  border-color: var(--sg-charcoal-deep);
}

.route-itinerary-card {
  background: var(--sg-white);
  border: 1.5px solid rgba(45, 46, 58, 0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.route-header-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(45, 46, 58, 0.08);
  padding-bottom: 0.85rem;
}

.rn-mark {
  font-size: 0.82rem;
  font-weight: 800;
  background: var(--sg-blue-dark);
  color: var(--sg-white);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.rural-tag {
  font-size: 0.84rem;
  font-weight: 700;
  color: #55586A;
}

.route-detail-paragraph {
  font-size: 0.95rem;
  color: #383A49;
  line-height: 1.6;
  margin: 0;
}

.route-direct-actions {
  display: flex;
  gap: 1.25rem;
  padding-top: 0.75rem;
}

.route-link-btn {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sg-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.route-link-btn:hover {
  color: var(--sg-wine);
  text-decoration: underline;
}

/* Columna de Mapa Integrado */
.destination-map-column {
  display: flex;
  flex-direction: column;
}

.map-integrated-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(45, 46, 58, 0.12);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.map-card-bar {
  background: var(--sg-charcoal-deep);
  color: var(--sg-cream);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.map-coord-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sg-orange);
}

.map-coord-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(253, 237, 213, 0.9);
}

.map-frame-box {
  flex-grow: 1;
  min-height: 480px;
  background: #EAE6DF;
}

.map-frame-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================================================================
   07. PRENSA & REPERCUSIÓN: COMPOSICIÓN EDITORIAL DE AUTOR
   ========================================================================== */
.press-editorial-section {
  padding: 6.5rem 0;
  background: var(--sg-cream-light);
  border-top: 1px solid rgba(45, 46, 58, 0.08);
}

.press-section-header {
  margin-bottom: 3.5rem;
}

.press-section-headline {
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  color: var(--sg-charcoal-deep);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 0.65rem;
}

/* Cita Pull-Quote Masiva con Fotografía */
.press-hero-composition {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: center;
  background: var(--sg-white);
  border: 1.5px solid rgba(45, 46, 58, 0.08);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
  position: relative;
}

.press-main-quote-col {
  position: relative;
}

.press-quote-mark {
  font-family: Georgia, serif;
  font-size: 6.5rem;
  line-height: 0.8;
  color: var(--sg-orange);
  opacity: 0.35;
  position: absolute;
  top: -2.5rem;
  left: -0.5rem;
  pointer-events: none;
}

.press-lead-blockquote {
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  font-weight: 700;
  color: var(--sg-charcoal-deep);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0 0 2rem 0;
  position: relative;
}

.press-citation-block {
  border-top: 1px solid rgba(45, 46, 58, 0.1);
  padding-top: 1.25rem;
}

.citation-source-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sg-wine);
  margin-bottom: 0.25rem;
}

.citation-meta {
  font-size: 0.88rem;
  color: #64748B;
  margin-bottom: 0.85rem;
}

.press-read-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sg-charcoal-deep);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.press-read-link:hover {
  color: var(--sg-orange);
}

.press-lead-photo-col {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 360px;
}

.press-feature-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-feature-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(13, 27, 42, 0.9);
  color: var(--sg-white);
  padding: 0.65rem 1rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}

.press-feature-badge span {
  font-size: 0.72rem;
  color: var(--sg-cheese-ochre);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.press-feature-badge strong {
  font-size: 0.88rem;
  color: var(--sg-white);
}

/* Dos Columnas Tipográficas Secundarias sin Cards de Cartón */
.press-secondary-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.press-secondary-item {
  border-top: 2px solid rgba(45, 46, 58, 0.15);
  padding-top: 1.5rem;
}

.sec-media-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--sg-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.sec-quote-text {
  font-size: 1.05rem;
  color: #383A49;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.sec-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sg-charcoal-deep);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.sec-link:hover {
  color: var(--sg-orange);
}

/* Convocatoria para Productores y Gastronómicos */
.producers-institutional-banner {
  background: var(--sg-charcoal-deep);
  color: var(--sg-cream);
  padding: 3.5rem 4rem;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid rgba(253, 237, 213, 0.15);
  box-shadow: var(--shadow-xl);
  margin-top: 1rem;
}

.banner-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--sg-cheese-ochre);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.5rem;
}

.banner-content h3 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--sg-white);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.banner-content p {
  font-size: 1rem;
  color: rgba(253, 237, 213, 0.85);
  line-height: 1.6;
  margin: 0;
}

.banner-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.btn-text-light {
  font-size: 0.92rem;
  color: var(--sg-cream);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.btn-text-light:hover {
  color: var(--sg-orange);
}

/* Responsive Media Queries para las 4 secciones */
@media (max-width: 992px) {
  .lineup-featured-diptych {
    grid-template-columns: 1fr;
  }
  .lineup-quartet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .experiences-manifesto-showcase {
    grid-template-columns: 1fr;
  }
  .tickets-calculator-layout {
    grid-template-columns: 1fr;
  }
  .ticket-tiers-container {
    border-right: none;
    border-bottom: 1px solid rgba(45, 46, 58, 0.08);
  }
  .destination-experience-layout {
    grid-template-columns: 1fr;
  }
  .press-hero-composition {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
  .press-lead-photo-col {
    height: 280px;
  }
  .press-secondary-columns {
    grid-template-columns: 1fr;
  }
  .producers-institutional-banner {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
}

@media (max-width: 600px) {
  .lineup-quartet-grid {
    grid-template-columns: 1fr;
  }
  .ticket-tiers-container {
    padding: 1.5rem 1rem;
  }
  .accreditation-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
  }
  .counter-controls {
    align-self: flex-start;
  }
  .accreditation-ticket-summary {
    padding: 1.75rem 1.25rem;
  }
  .pos-editorial-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .pos-strip-locations {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .pos-sep {
    display: none;
  }
  .press-hero-composition {
    padding: 1.75rem;
  }
  .producers-institutional-banner {
    padding: 1.75rem;
  }
}

/* ==========================================================================
   PREGUNTAS FRECUENTES (Acordeón Interactivo)
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background: var(--sg-white);
}

.faq-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--sg-cream-light);
  border: 1px solid rgba(45, 46, 58, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.75rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sg-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--sg-wine);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--sg-wine);
  color: var(--sg-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.75rem;
  color: var(--sg-charcoal-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.4rem 1.75rem;
}

/* ==========================================================================
   FOOTER EDITORIAL & CONTACTO DIRECTO
   ========================================================================== */
.site-footer {
  background: var(--sg-charcoal-deep);
  color: var(--sg-cream);
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid rgba(253, 237, 213, 0.1);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand .footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(253, 237, 213, 0.75);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--sg-white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

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

.footer-links a {
  color: rgba(253, 237, 213, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--sg-cheese-ochre);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(253, 237, 213, 0.85);
}

.footer-contact-item a {
  color: var(--sg-cream);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--sg-cheese-ochre);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 237, 213, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(253, 237, 213, 0.6);
}

/* ==========================================================================
   BOTONES FLOTANTES: VOLVER ARRIBA & WHATSAPP OFICIAL
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 990;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Botón Subir al Principio (Flecha) */
.btn-back-to-top {
  width: 46px;
  height: 46px;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FDEDD5;
  border: 1px solid rgba(253, 237, 213, 0.25);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.btn-back-to-top:hover {
  background: var(--sg-blue-navy);
  color: var(--sg-gold);
  border-color: var(--sg-gold);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-back-to-top svg {
  display: block;
  stroke: currentColor;
}

/* Botón WhatsApp Oficial */
.btn-wa-official {
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42);
}

.btn-wa-official:hover {
  background-color: #20BA5A;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
}

.btn-wa-official svg {
  display: block;
  fill: currentColor;
  width: 30px;
  height: 30px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries Avanzadas)
   ========================================================================== */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 1rem;
  }
  .nav-link {
    font-size: 0.88rem;
  }
  .nav-center-wrap {
    gap: 1.25rem;
  }
}

@media (max-width: 1024px) {
  .site-header {
    padding: 0.5rem 0;
  }

  .nav-center-wrap {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  /* Menú Móvil Desplegable */
  .mobile-drawer {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    z-index: 89;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
    overflow-y: auto;
    border-top: 1px solid rgba(45, 46, 58, 0.1);
  }

  .mobile-drawer.open {
    display: flex;
  }

  .mobile-drawer .nav-menu-mobile {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .mobile-drawer .nav-link {
    font-size: 1.25rem;
    font-weight: 700;
  }

  .mobile-drawer .mobile-cta-btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-meta-strip {
    justify-content: center;
  }

  .hero-cinematic-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sensorial-frame-main {
    max-width: 580px;
    margin: 0 auto;
  }

  .manifesto-stats-band {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-divider {
    display: none;
  }

  .story-diptych-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .salon-grid {
    grid-template-columns: 1fr;
  }

  .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tickets-calculator-layout {
    grid-template-columns: 1fr;
  }

  .ticket-summary-card {
    position: static;
  }

  .producers-cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-info {
    justify-content: center;
    width: 100%;
  }

  .top-countdown {
    margin: 0 auto;
  }

  .hero-cinematic {
    padding: 2.5rem 0 3.5rem 0;
  }

  .hero-editorial-title {
    font-size: 2.15rem;
  }

  .sensorial-hero-img {
    height: 320px;
  }

  .story-photo-main {
    height: 360px;
  }

  .hero-brand-stamp {
    top: -12px;
    right: -5px;
    padding: 0.6rem 0.9rem;
  }

  .stamp-logo {
    height: 36px;
  }

  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .chef-img-wrapper {
    height: 300px;
  }

  .ticket-group-card {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
  }

  .ticket-tier-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.15rem;
    gap: 1rem;
  }

  .counter-controls {
    align-self: flex-end;
  }

  .pos-cards-grid {
    grid-template-columns: 1fr;
  }

  .press-quotes-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .route-info-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }

  .route-nav-links {
    width: 100%;
  }

  .route-nav-links a {
    flex: 1;
    text-align: center;
  }

  .map-iframe-container {
    height: 340px;
  }

  .producers-cta-box {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 0.78rem;
    padding: 0.5rem 0.75rem;
  }

  .top-bar-info span {
    text-align: center;
  }

  .brand-logo-img {
    height: 44px;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .hero-art-board {
    max-width: 270px;
    height: 270px;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }

  .btn-wa-official {
    width: 50px;
    height: 50px;
  }

  .btn-wa-official svg {
    width: 26px;
    height: 26px;
  }

  .btn-back-to-top {
    width: 42px;
    height: 42px;
  }

  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
  }

  .about-main-photo {
    height: 320px;
  }

  .summary-total-val {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   PAYWAY CHECKOUT & MODAL ESTILOS DE PAGO ONLINE
   ========================================================================== */

.checkout-actions-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn-checkout-main {
  width: 100%;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.95rem 1.25rem;
  box-shadow: 0 8px 20px rgba(200, 90, 23, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-checkout-alt {
  width: 100%;
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  text-align: center;
  border-color: rgba(253, 237, 213, 0.4);
  color: var(--sg-cream);
}

.btn-checkout-alt:hover {
  background: rgba(253, 237, 213, 0.15);
  border-color: var(--sg-cream);
  color: var(--sg-white);
}

.payway-trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(253, 237, 213, 0.15);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  margin-top: 1.15rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(253, 237, 213, 0.88);
}

.payway-trust-badge .trust-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contenedor y Overlay del Modal */
.checkout-modal-container {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.checkout-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.checkout-modal-content {
  position: relative;
  z-index: 10;
  background: #ffffff;
  color: #1e293b;
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-modal-container.active .checkout-modal-content {
  transform: translateY(0) scale(1);
}

/* Cabecera del Modal */
.modal-header {
  background: linear-gradient(135deg, #1b3b6f 0%, #0d1b2a 100%);
  color: #fff;
  padding: 1.4rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2;
}

.modal-header-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.modal-logo-sg {
  height: 32px;
  width: auto;
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 0.78rem;
  color: #fdedd5;
  opacity: 0.85;
  display: block;
}

.modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Resumen del Pedido en Modal */
.modal-order-summary {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 1.75rem;
}

.modal-summary-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.modal-summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.modal-item-badge {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.82rem;
  color: #334155;
  display: flex;
  gap: 0.3rem;
}

.modal-total-badge {
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #c85a17;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-left: auto;
  display: flex;
  gap: 0.3rem;
}

/* Formulario */
.checkout-form {
  padding: 1.5rem 1.75rem;
}

.form-section-group {
  margin-bottom: 1.35rem;
}

.form-section-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 0.4rem;
}

.form-section-title.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.form-grid-3 {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr;
  gap: 0.85rem;
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.35rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.68rem 0.85rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: inherit;
  color: #0f172a;
  background: #fff;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #1b3b6f;
  box-shadow: 0 0 0 3px rgba(27, 59, 111, 0.14);
}

.input-card-wrap {
  position: relative;
}

.card-icons-inline {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.15rem;
  pointer-events: none;
}

.card-brand-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: #1b3b6f;
  color: #fff;
  letter-spacing: 0.3px;
}

/* Alertas */
.checkout-alert {
  padding: 0.85rem 1.25rem;
  margin: 1rem 1.75rem 0;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.checkout-alert.error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.checkout-alert.success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

.btn-submit-payment {
  width: 100%;
  padding: 0.95rem;
  font-size: 1.05rem;
  font-weight: 800;
  margin-top: 0.6rem;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.modal-footer-trust {
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.85rem;
  line-height: 1.35;
}

.checkout-loading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.2rem;
  background: #f8fafc;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: #1b3b6f;
  font-weight: 600;
}

.spinner-sg {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(27, 59, 111, 0.15);
  border-top-color: #1b3b6f;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

@media (max-width: 600px) {
  .form-grid-2,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Resumen Highlight en Modal / Ticket */
.summary-row.highlight {
  background: rgba(200, 90, 23, 0.15);
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  border-left: 3px solid #c85a17;
  margin: 0.3rem 0;
}

.summary-row.highlight strong {
  color: #fdedd5;
}

/* Kickers Tipográficos en Salón de Quesos */
.salon-vip-badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.salon-vip-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(253, 237, 213, 0.18);
  border-radius: 10px;
  padding: 1.35rem;
  position: relative;
}

.salon-vip-card.vip-gold {
  border-color: rgba(234, 179, 8, 0.35);
  background: rgba(234, 179, 8, 0.07);
}

.vip-meta-kicker {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sg-cheese-ochre);
  margin-bottom: 0.45rem;
}

.vip-meta-kicker.gold {
  color: #F8D588;
}

.salon-vip-card h4 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--sg-white);
  margin-bottom: 0.45rem;
}

.salon-vip-card p {
  font-size: 0.88rem;
  color: rgba(253, 237, 213, 0.85);
  line-height: 1.45;
  margin: 0;
}

/* ==========================================================================
   OPTIMIZACIONES DE ESCANABILIDAD & TEXTO COMPACTO EN MOBILE
   ========================================================================== */
@media (max-width: 768px) {
  .salon-vip-badges-grid {
    grid-template-columns: 1fr;
  }

  /* Chefs: Escanabilidad ágil sin scroll infinito */
  .chef-portrait-frame {
    height: 320px;
  }
  
  .chef-lead-primary .chef-editorial-info,
  .chef-lead-secondary .chef-editorial-info {
    padding: 1.5rem;
  }

  .chef-portrait-name {
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
  }

  .chef-portrait-bio {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .chef-quartet-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  /* Entradas: Visualización inmediata de Entrada + Precio + Contador */
  .accreditation-row {
    padding: 1.15rem 1.25rem;
  }

  .row-summary {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.82rem;
    margin: 0.2rem 0 0.4rem 0;
  }

  .price-main {
    font-size: 1.3rem;
  }

  /* Hero: Compactación editorial en smartphone */
  .hero-editorial-meta {
    gap: 1.25rem;
  }

  .meta-num {
    font-size: 1.45rem;
  }

  .sensorial-hero-img {
    height: 320px;
  }
}


