/* EMEC 2026 - Identity & Design System Stylesheet */

/* --- Custom Properties & Tokens --- */
:root {
  /* Colors */
  --dorado-premium: #C8892A;    /* Primary Emotional Gold */
  --dorado-luminoso: #E8B84B;   /* Secondary Brilliant Gold */
  --naranja-sunset: #D4622A;    /* Warm Accent Orange */
  --azul-noche: #0A1628;        /* Main Background Dark Blue */
  --negro-cine: #080808;        /* Cinematographic Deep Black */
  --blanco-roto: #F5F0E8;       /* Primary Light Text */
  --gris-muted: #A6A19A;        /* Secondary Muted Text */
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* --- Base & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--azul-noche);
  color: var(--blanco-roto);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  background-color: var(--azul-noche);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--azul-noche);
}
::-webkit-scrollbar-thumb {
  background: var(--dorado-premium);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--dorado-luminoso);
}

::selection {
  background-color: var(--naranja-sunset);
  color: var(--blanco-roto);
}

/* --- Global Backgrounds & Noise Texture --- */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
}

.atmo-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -2;
}

.atmo-1 {
  background: radial-gradient(circle at 10% 20%, rgba(10, 22, 40, 0.8) 0%, rgba(8, 8, 8, 0.95) 100%);
}

.atmo-2 {
  background: radial-gradient(circle at 80% 80%, rgba(212, 98, 42, 0.12) 0%, transparent 60%);
  filter: blur(80px);
  animation: floatGlow 15s infinite alternate ease-in-out;
}

.atmo-3 {
  background: radial-gradient(circle at 30% -10%, rgba(200, 137, 42, 0.08) 0%, transparent 50%);
  filter: blur(80px);
  animation: floatGlow 12s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(5%, 5%) scale(1.1);
  }
}

/* --- Layout Containers & Typography Utilities --- */
.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.max-width-md {
  max-width: 800px;
}

.max-width-sm {
  max-width: 600px;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.text-gold {
  color: var(--dorado-premium);
}

.text-script {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: var(--dorado-luminoso);
  font-weight: normal;
}

.margin-top-md {
  margin-top: 24px;
}

.section-header {
  margin-bottom: 60px;
}

.section-kicker {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--dorado-luminoso);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gris-muted);
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.section-subtitle strong {
  color: var(--blanco-roto);
}

.title-underline {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--dorado-premium), var(--naranja-sunset));
  margin: 16px auto 0;
}

/* --- Button Styles --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--dorado-premium) 0%, var(--naranja-sunset) 100%);
  color: var(--negro-cine);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dorado-luminoso) 0%, var(--dorado-premium) 100%);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(245, 240, 232, 0.05);
  color: var(--blanco-roto);
  border: 1px solid rgba(245, 240, 232, 0.15);
}

.btn-secondary:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: var(--blanco-roto);
}

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

.btn-outline:hover {
  background: var(--dorado-premium);
  color: var(--negro-cine);
  box-shadow: 0 0 20px rgba(200, 137, 42, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--blanco-roto);
  border: 1px solid rgba(245, 240, 232, 0.2);
}

.btn-ghost:hover {
  background: rgba(245, 240, 232, 0.05);
  border-color: var(--blanco-roto);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.shadow-glow {
  box-shadow: 0 4px 20px rgba(212, 98, 42, 0.25);
  animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 4px 20px rgba(212, 98, 42, 0.25);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 30px rgba(212, 98, 42, 0.65), 0 0 15px rgba(232, 184, 75, 0.25);
    transform: scale(1.015);
  }
  100% {
    box-shadow: 0 4px 20px rgba(212, 98, 42, 0.25);
    transform: scale(1);
  }
}

.shadow-glow:hover {
  box-shadow: 0 4px 25px rgba(232, 184, 75, 0.4);
  animation: none;
  transform: scale(1.02);
}

/* --- Header & Navigation --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 137, 42, 0.15);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--blanco-roto);
}

.logo-crear {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.4em;
  color: var(--blanco-roto);
  line-height: 1;
}

.logo-presents {
  font-family: 'Great Vibes', cursive;
  font-size: 0.8rem;
  color: var(--dorado-luminoso);
  line-height: 1;
  margin: -2px 0 -4px;
  padding-left: 2px;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--dorado-premium);
}

.logo-year {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--blanco-roto);
  letter-spacing: 0.1em;
}

.nav-desktop .nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris-muted);
  transition: var(--transition-fast);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--blanco-roto);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--dorado-premium);
  transition: var(--transition-fast);
}

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

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.hamburger-menu .bar {
  width: 24px;
  height: 2px;
  background-color: var(--blanco-roto);
  transition: var(--transition-fast);
}

/* Open Mobile Menu State */
.hamburger-menu.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--dorado-premium);
}
.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--dorado-premium);
}

.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 137, 42, 0.15);
  padding: 30px 24px;
  display: none;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 999;
}

.nav-mobile.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.mobile-link-item {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blanco-roto);
  padding: 10px 0;
}

.mobile-links .btn {
  margin-top: 10px;
  width: 80%;
  text-align: center;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column; /* Align map container and stats bar vertically */
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  background-color: var(--azul-noche);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Very light vignette for cinematic depth without darkening the main slideshow */
  background: radial-gradient(circle, rgba(7, 21, 38, 0.05) 50%, rgba(7, 21, 38, 0.5) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-section::after {
  display: none !important;
}

.hero-territory-mark {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 820px;
  margin: 0 auto 35px;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 20px 50px rgba(4, 10, 20, 0.75));
  animation: mapReveal 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes mapReveal {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1.0);
  }
}

.territory-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.terr-path {
  fill: rgba(6, 17, 32, 0.44); /* Dark petroleum blue overlay (35-45% opacity) */
  stroke: rgba(200, 137, 42, 0.75); /* Glowing gold contour line */
  stroke-width: 1.8px;
  filter: url(#terrGlow);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawOutline 4.5s forwards ease-out;
  transition: all 0.5s ease;
}

@keyframes drawOutline {
  to {
    stroke-dashoffset: 0;
  }
}

.pulse-ring {
  transform-origin: 210px 195px;
  animation: nodePulse 3s infinite ease-out;
}

@keyframes nodePulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-map-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 620px;
  padding: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: auto;
}

.hero-content {
  width: 100%;
  max-width: 960px;
  padding: 60px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 4;
}

.hero-crear-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-sans);
}

.crear-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dorado-premium);
}

.crear-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dorado-premium);
  margin-top: 4px;
}

.hero-kicker-badge {
  background: rgba(200, 137, 42, 0.1);
  border: 1px solid rgba(200, 137, 42, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--dorado-luminoso);
  margin-bottom: 40px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.kicker-dot {
  color: var(--naranja-sunset);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.title-emec {
  font-family: var(--font-serif);
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 0.85;
  color: var(--dorado-premium);
  letter-spacing: 0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: linear-gradient(180deg, var(--dorado-luminoso) 0%, var(--dorado-premium) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-year {
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.6em;
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 20px;
  text-indent: 0.6em;
  color: var(--blanco-roto);
}

.title-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  color: var(--blanco-roto);
  margin-bottom: 4px;
  max-width: 600px;
  text-transform: uppercase;
}

.title-script {
  font-family: 'Great Vibes', cursive;
  font-size: 3.5rem;
  color: var(--dorado-luminoso);
  line-height: 0.9;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--dorado-luminoso);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-indent: 0.35em;
}

.tagline-dot {
  color: var(--dorado-premium);
  margin: 0 6px;
}

.hero-concept {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  color: var(--blanco-roto);
  margin-bottom: 12px;
}

.hero-subconcept {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gris-muted);
  max-width: 650px;
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  margin-bottom: 40px;
}

.btn-hero {
  font-size: 0.9rem;
  padding: 18px 42px;
}

.hero-stats {
  display: flex;
  width: 100%;
  max-width: 800px;
  justify-content: space-between;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--dorado-premium);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris-muted);
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(245, 240, 232, 0.1);
  align-self: center;
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--azul-noche), transparent);
  pointer-events: none;
  z-index: 5;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gris-muted);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--dorado-premium), transparent);
  animation: scrollLineAnimation 2s infinite ease-in-out;
  transform-origin: top;
}

@keyframes scrollLineAnimation {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform: translateY(20px);
    opacity: 0;
  }
}

/* --- Infinite Marquee --- */
.marquee-container {
  width: 100%;
  background-color: var(--negro-cine);
  border-top: 1px solid rgba(200, 137, 42, 0.15);
  border-bottom: 1px solid rgba(200, 137, 42, 0.15);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeLoop 30s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 40px;
  padding-right: 40px;
}

.marquee-content span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--dorado-luminoso);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.mb {
  color: var(--naranja-sunset);
  margin-left: 10px;
}

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

/* --- Nuestra Historia Section --- */
.historia-section {
  background-color: var(--azul-noche);
  position: relative;
}

.historia-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.historia-steps {
  margin-top: 40px;
  position: relative;
}

.historia-step {
  display: flex;
  gap: 24px;
  position: relative;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20px;
  min-width: 20px;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dorado-premium);
  border: 2px solid var(--azul-noche);
  z-index: 2;
  margin-top: 6px;
  transition: var(--transition-fast);
}

.step-dot-gold {
  background: var(--dorado-luminoso);
  box-shadow: 0 0 10px var(--dorado-luminoso);
}

.step-line {
  width: 2px;
  flex-grow: 1;
  background: rgba(200, 137, 42, 0.15);
  margin-top: 4px;
  margin-bottom: 4px;
  min-height: 80px;
}

.step-body {
  padding-bottom: 40px;
}

.historia-step:last-child .step-body {
  padding-bottom: 0;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--blanco-roto);
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

.step-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gris-muted);
  line-height: 1.7;
}

.step-desc strong {
  color: var(--blanco-roto);
}

.historia-step:hover .step-dot {
  background: var(--dorado-luminoso);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--dorado-luminoso);
}

.historia-step:hover .step-title {
  color: var(--dorado-luminoso);
}

.historia-pillars {
  background: rgba(8, 8, 8, 0.4);
  border: 1px solid rgba(200, 137, 42, 0.15);
  border-radius: 4px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.pillars-intro {
  margin-bottom: 30px;
}

.pillars-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 8px;
}

.pillars-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dorado-premium);
  opacity: 0.8;
  line-height: 1;
  margin-top: 2px;
}

.pillar-name {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blanco-roto);
  margin-bottom: 6px;
}

.pillar-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gris-muted);
  line-height: 1.5;
}

.territorial-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 80px;
  width: 100%;
}

.tq-map-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 137, 42, 0.3), transparent);
}

.tq-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.65rem; /* slightly smaller for premium breathing room */
  color: var(--dorado-luminoso);
  white-space: normal;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  text-align: center;
  line-height: 1.5;
  max-width: 680px; /* center and restrict width to prevent edge-touching */
  margin: 0 auto;
  padding: 0 30px; /* horizontal breathing room */
}

/* --- Speakers Section & Journey Rail --- */
.speakers-section {
  background-color: var(--azul-noche);
}

.journey-rail {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 60px;
  padding: 10px 0;
}

.journey-rail::-webkit-scrollbar {
  display: none;
}

.journey-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 800px;
  position: relative;
  padding: 0 20px;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  height: 1px;
  background: rgba(200, 137, 42, 0.15);
  z-index: 1;
  transform: translateY(-50%);
}

.journey-node {
  background: var(--azul-noche);
  border: 1px solid rgba(200, 137, 42, 0.25);
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
  min-width: 110px;
  transition: var(--transition-smooth);
}

.journey-node:hover {
  border-color: var(--dorado-premium);
  box-shadow: 0 0 15px rgba(200, 137, 42, 0.25);
  transform: translateY(-2px);
}

.journey-node.active {
  border-color: var(--dorado-luminoso);
  background: rgba(200, 137, 42, 0.1);
  box-shadow: 0 0 20px rgba(232, 184, 75, 0.25);
}

.jn-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dorado-premium);
}

.journey-node.active .jn-num {
  color: var(--dorado-luminoso);
}

.jn-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gris-muted);
  text-transform: uppercase;
}

.journey-node.active .jn-label {
  color: var(--blanco-roto);
}

.journey-connector {
  flex-grow: 1;
  height: 1px;
  background: rgba(200, 137, 42, 0.15);
}

.speakers-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 45px;
}

/* Carousel Navigation Arrows */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 8, 8, 0.65);
  border: 1px solid rgba(200, 137, 42, 0.25);
  color: var(--dorado-premium);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(5px);
}

.carousel-nav-btn:hover {
  background: var(--dorado-premium);
  color: var(--negro-cine);
  border-color: var(--dorado-luminoso);
  box-shadow: 0 0 15px rgba(200, 137, 42, 0.4);
}

.carousel-nav-btn.prev {
  left: 10px;
}

.carousel-nav-btn.next {
  right: 10px;
}

@media (max-width: 768px) {
  .carousel-nav-btn {
    display: none; /* Rely on touch swipe on mobile */
  }
}

.speakers-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  cursor: grab;
}

.speakers-carousel-track:active {
  cursor: grabbing;
}

.speaker-card {
  position: relative;
  background: var(--negro-cine);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition-smooth);
  flex: 0 0 310px; /* Compact width to fit 4 in a screen */
  height: 440px; /* Compact height to fit in viewport */
  display: flex;
  flex-direction: column;
}

.speaker-card:hover {
  border-color: var(--dorado-premium);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}

.speaker-stage-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  background: var(--naranja-sunset);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  color: #080808;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sst-gold {
  background: var(--dorado-premium);
  color: #080808;
}

.sst-duo {
  background: var(--naranja-sunset);
  color: #080808;
}

.sst-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dorado-luminoso);
}

.sst-label {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gris-muted);
  text-transform: uppercase;
}

.speaker-img-area {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: var(--negro-cine);
}

.speaker-img-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #111;
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(105%) brightness(0.85);
  transition: var(--transition-smooth);
}

.speaker-card:hover .speaker-img,
.speaker-card.focused .speaker-img {
  filter: grayscale(0%) contrast(100%) brightness(0.95);
  transform: scale(1.04);
}

.speaker-initials {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(200, 137, 42, 0.35);
  z-index: 1;
  display: none;
}

.no-img .speaker-img {
  display: none;
}

.no-img .speaker-initials {
  display: block;
}

.speaker-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, 0.95) 25%, rgba(8, 8, 8, 0.45) 65%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.speaker-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  z-index: 3;
  transition: var(--transition-smooth);
}

.speaker-time-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--naranja-sunset);
  background: rgba(212, 98, 42, 0.12);
  border: 1px solid rgba(212, 98, 42, 0.25);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.speaker-meta {
  margin-bottom: 8px;
}

.speaker-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--blanco-roto);
  line-height: 1.15;
}

.speaker-role {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--dorado-premium);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.speaker-talk-desc-block {
  margin-bottom: 8px;
}

.talk-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--dorado-luminoso);
  line-height: 1.35;
  margin-bottom: 4px;
}

.speaker-bio-short {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gris-muted);
  line-height: 1.4;
}

.speaker-value-prop {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: left;
  opacity: 1 !important;
  max-height: none !important;
  overflow: visible !important;
}

.svp-label {
  color: var(--naranja-sunset);
  font-weight: 700;
  display: inline;
  margin-right: 4px;
}

.svp-text {
  color: var(--gris-muted);
  font-weight: 300;
  display: inline;
}

/* Speaker Duo Layout */
.speaker-card-duo .speaker-duo-imgs {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.speaker-card-duo .speaker-img-area {
  width: 50%;
  height: 100%;
  position: relative;
  border-right: 1px solid rgba(8, 8, 8, 0.5);
  aspect-ratio: auto;
}

.speaker-card-duo .speaker-img-area:last-child {
  border-right: none;
}

.speaker-duo-name-tag {
  position: absolute;
  bottom: 150px; /* Positioned above overlay content in compact card */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid rgba(245, 240, 232, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--blanco-roto);
  white-space: nowrap;
  z-index: 5;
  backdrop-filter: blur(4px);
}

.duo-plus {
  color: var(--naranja-sunset);
  font-weight: 700;
}

.speaker-card-cierre {
  border-color: rgba(232, 184, 75, 0.3);
  box-shadow: 0 0 20px rgba(232, 184, 75, 0.05);
}

.speaker-card-cierre:hover {
  border-color: var(--dorado-luminoso);
  box-shadow: 0 10px 40px rgba(232, 184, 75, 0.2);
}

.speaker-cierre-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--dorado-luminoso), var(--dorado-premium));
  color: var(--negro-cine);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 10;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.7);
  border: 1px solid rgba(200, 137, 42, 0.3);
  color: var(--blanco-roto);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: var(--transition-fast);
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: var(--dorado-premium);
  color: var(--negro-cine);
  border-color: var(--dorado-luminoso);
  box-shadow: 0 0 15px rgba(200, 137, 42, 0.4);
}

.carousel-btn.btn-prev {
  left: 10px;
}

.carousel-btn.btn-next {
  right: 10px;
}

.btn-arrow {
  line-height: 1;
  margin-top: -4px;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--naranja-sunset);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--naranja-sunset);
}

/* --- Caso Ceci Special Activation Block --- */
.transformation-block {
  background: radial-gradient(circle at 10% 20%, rgba(212, 98, 42, 0.08) 0%, rgba(8, 8, 8, 0.6) 80%);
  border: 1px solid rgba(212, 98, 42, 0.25);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 60px;
  position: relative;
  width: 100%;
}

.transformation-block::before {
  content: '✦ ACTIVACIÓN ESPECIAL ✦';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--naranja-sunset);
  opacity: 0.6;
}

.transformation-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding: 50px;
  gap: 50px;
  align-items: center;
}

.transformation-left {
  display: flex;
  flex-direction: column;
}

.transformation-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  margin: 10px 0 20px;
  line-height: 1.2;
}

.transformation-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gris-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.transformation-highlight {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dorado-luminoso);
  border-left: 2px solid var(--naranja-sunset);
  padding-left: 20px;
  margin: 15px 0;
}

.transformation-note {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--dorado-premium);
}

.transformation-right {
  display: flex;
  justify-content: center;
}

.transformation-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 250px;
}

.ts-item {
  width: 100%;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(245, 240, 232, 0.1);
  padding: 10px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blanco-roto);
  transition: var(--transition-fast);
}

.ts-item:hover {
  border-color: rgba(200, 137, 42, 0.3);
  transform: scale(1.02);
}

.ts-arrow {
  font-size: 0.8rem;
  color: var(--naranja-sunset);
  margin: 6px 0;
  opacity: 0.7;
}

.ts-item-gold {
  border-color: var(--dorado-premium);
  background: rgba(200, 137, 42, 0.08);
  box-shadow: 0 0 15px rgba(200, 137, 42, 0.15);
}

.ts-icon {
  font-size: 1rem;
}

/* Conductora block */
.conductora-block {
  background: rgba(8, 8, 8, 0.4);
  border: 1px solid rgba(200, 137, 42, 0.12);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 40px;
  width: 100%;
}

.conductora-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}

.conductora-img-area {
  height: 100%;
  min-height: 250px;
  overflow: hidden;
  background: var(--negro-cine);
}

.conductora-img-area .speaker-img-bg {
  height: 100%;
}

.conductora-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.conductora-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--dorado-luminoso);
  margin: 4px 0 6px;
}

.conductora-role {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dorado-premium);
  margin-bottom: 15px;
}

.conductora-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gris-muted);
  line-height: 1.7;
}

/* --- Agenda Section --- */
.agenda-section {
  background-color: var(--negro-cine);
  border-top: 1px solid rgba(200, 137, 42, 0.15);
  border-bottom: 1px solid rgba(200, 137, 42, 0.15);
}

.agenda-timeline {
  max-width: 800px;
  margin: 50px auto 0;
  position: relative;
}

.agenda-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 120px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(200, 137, 42, 0.4) 0%, rgba(200, 137, 42, 0.05) 100%);
}

.timeline-block {
  display: flex;
  margin-bottom: 20px;
  position: relative;
}

.timeline-block:last-child {
  margin-bottom: 0;
}

.tl-time {
  width: 100px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  padding-top: 22px;
  align-items: flex-end;
  padding-right: 20px;
}

.tl-h {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--dorado-premium);
  line-height: 1;
}

.tl-ampm {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gris-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.tl-dot-area {
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dorado-premium);
  border: 3px solid var(--negro-cine);
  margin-top: 28px;
  box-shadow: 0 0 8px rgba(200, 137, 42, 0.4);
  transition: var(--transition-smooth);
}

.tl-dot-gold {
  background: var(--dorado-luminoso);
  box-shadow: 0 0 12px var(--dorado-luminoso);
}

.tl-line {
  width: 1px;
  flex-grow: 1;
  background: rgba(200, 137, 42, 0.15);
  margin-top: 6px;
  margin-bottom: 6px;
}

.timeline-block:last-child .tl-line {
  display: none;
}

.tl-card {
  flex-grow: 1;
  background: rgba(10, 22, 40, 0.45);
  border: 1px solid rgba(200, 137, 42, 0.12);
  border-radius: 4px;
  padding: 24px 30px;
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
  transition: var(--transition-smooth);
}

.timeline-block:last-child .tl-card {
  margin-bottom: 0;
}

.timeline-block:hover .tl-card {
  border-color: rgba(200, 137, 42, 0.3);
  background: rgba(10, 22, 40, 0.6);
  transform: translateX(4px);
}

.timeline-block:hover .tl-dot {
  background: var(--dorado-luminoso);
  transform: scale(1.2);
}

.tl-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(245, 240, 232, 0.08);
  color: var(--blanco-roto);
  margin-bottom: 12px;
}

.tl-tag-gold {
  background: rgba(200, 137, 42, 0.15);
  color: var(--dorado-luminoso);
  border: 1px solid rgba(200, 137, 42, 0.2);
}

.tl-tag-orange {
  background: rgba(212, 98, 42, 0.15);
  color: var(--naranja-sunset);
  border: 1px solid rgba(212, 98, 42, 0.2);
}

.tl-tag-lime {
  background: rgba(232, 184, 75, 0.1);
  color: var(--dorado-luminoso);
  border: 1px solid rgba(232, 184, 75, 0.15);
}

.tl-tag-sunset {
  background: linear-gradient(135deg, rgba(212, 98, 42, 0.2) 0%, rgba(200, 137, 42, 0.2) 100%);
  color: var(--dorado-luminoso);
  border: 1px solid rgba(212, 98, 42, 0.3);
}

.tl-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--blanco-roto);
  margin-bottom: 6px;
}

.tl-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gris-muted);
  line-height: 1.5;
}

.tl-desc strong {
  color: var(--blanco-roto);
}

.tl-card-cierre {
  border-color: rgba(212, 98, 42, 0.3);
  box-shadow: 0 0 20px rgba(212, 98, 42, 0.1);
}

/* --- Red Federal de Embajadoras Section --- */
.red-federal-embajadoras-section {
  background: var(--azul-noche);
  position: relative;
  overflow: hidden;
  padding: 55px 0 45px;
}

.red-federal-embajadoras-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/corrientes_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.035;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}

.red-federal-embajadoras-section .section-container {
  position: relative;
  z-index: 2;
}

.embajadoras-map-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 35px;
  margin-top: 65px;
  align-items: center;
}

.map-column {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container-wrapper {
  width: 100%;
  max-width: 270px;
  max-height: 350px; /* Restrict vertical size on desktop */
  position: relative;
  background: rgba(8, 8, 8, 0.45);
  border: 1px solid rgba(200, 137, 42, 0.15);
  border-radius: 8px;
  padding: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.map-svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  aspect-ratio: 1100 / 2050; /* Match exact padding viewBox aspect ratio */
  overflow: visible;
}

/* Province borders & fills (Argentina Map) */
.map-province {
  fill: rgba(14, 30, 54, 0.45);
  stroke: rgba(200, 137, 42, 0.12);
  stroke-width: 0.8px;
  transition: fill 0.3s ease, stroke 0.3s ease, stroke-width 0.3s ease;
  cursor: pointer;
}

@media (hover: hover) {
  .map-province:hover {
    fill: rgba(200, 137, 42, 0.15);
    stroke: var(--dorado-premium);
    stroke-width: 1.2px;
  }
}

/* Hero Background Watermark Map of Corrientes */
.hero-map-department {
  fill: rgba(200, 137, 42, 0.005);
  stroke: rgba(200, 137, 42, 0.04);
  stroke-width: 0.8px;
  pointer-events: none;
}

.dashed-connection {
  stroke-linecap: round;
  animation: strokeOffset 30s infinite linear;
}

@keyframes strokeOffset {
  to {
    stroke-dashoffset: -100;
  }
}

.map-marker {
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.map-marker.active {
  transform: scale(1.3);
}

@media (hover: hover) {
  .map-marker:hover {
    transform: scale(1.3);
  }
}

.marker-dot {
  transition: fill 0.3s ease, r 0.3s ease;
}

.map-marker.active .marker-dot {
  fill: var(--dorado-luminoso);
  r: 7.5px;
}

@media (hover: hover) {
  .map-marker:hover .marker-dot {
    fill: var(--dorado-luminoso);
    r: 7.5px;
  }
}

.marker-pulse {
  transform-origin: center;
  animation: markerPulseAnimation 2.2s infinite ease-out;
}

@keyframes markerPulseAnimation {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Federal Marker Specifics */
.federal-marker .marker-dot {
  fill: var(--naranja-sunset);
}

.federal-marker.active .marker-dot {
  fill: #ff8547;
  r: 7.5px;
}

@media (hover: hover) {
  .federal-marker:hover .marker-dot {
    fill: #ff8547;
    r: 7.5px;
  }
}

.federal-marker .marker-pulse {
  stroke: var(--naranja-sunset);
}

.marker-label {
  opacity: 0.55;
  transition: opacity 0.3s ease, fill 0.3s ease;
  pointer-events: none;
  font-weight: 500;
}

.map-marker.active .marker-label {
  opacity: 1;
  fill: var(--dorado-luminoso);
  font-weight: 700;
}

@media (hover: hover) {
  .map-marker:hover .marker-label {
    opacity: 1;
    fill: var(--dorado-luminoso);
    font-weight: 700;
  }
}

/* Sidebar Profile Card details (Fallback / Default view) */
.profile-column {
  width: 100%;
}

.profile-card {
  background: rgba(8, 8, 8, 0.65);
  border: 1px solid rgba(200, 137, 42, 0.16);
  border-radius: 8px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(15px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.profile-card.active {
  border-color: var(--dorado-premium);
  box-shadow: 0 15px 35px rgba(200, 137, 42, 0.08);
}

.profile-card-loader {
  text-align: center;
  font-family: var(--font-sans);
  color: var(--gris-muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.profile-default-state {
  text-align: center;
  color: var(--gris-muted);
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.profile-default-icon {
  font-size: 2.8rem;
  color: var(--dorado-premium);
  opacity: 0.45;
  animation: floatIcon 3.5s infinite ease-in-out;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.profile-default-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.5;
  max-width: 280px;
}

/* Dynamic Profiles Layouts */
.profile-single {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: profileCardFadeIn 0.45s ease forwards;
}

.profile-dual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: profileCardFadeIn 0.45s ease forwards;
}

.profile-dual-header {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--dorado-premium);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(200, 137, 42, 0.15);
  padding-bottom: 8px;
  margin-bottom: -5px;
}

.profile-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.profile-dual .profile-item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

.profile-dual .profile-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.profile-img-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 6px;
  border: 1px solid rgba(200, 137, 42, 0.25);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--negro-cine);
}

.profile-dual .profile-img-wrapper {
  width: 80px;
  height: 80px;
}

.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(105%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.profile-item:hover .profile-pic {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.03);
}

.profile-info-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blanco-roto);
  line-height: 1.2;
}

.profile-dual .profile-name {
  font-size: 1.3rem;
}

.profile-city-tag {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--naranja-sunset);
  text-transform: uppercase;
  margin-top: 4px;
}

.profile-role {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dorado-premium);
  margin-top: 6px;
}

.profile-dual .profile-role {
  font-size: 0.72rem;
  margin-top: 4px;
}

.profile-bio {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gris-muted);
  line-height: 1.5;
  margin-top: 6px;
}

.profile-dual .profile-bio {
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 4px;
}

.profile-conocer-mas-wrapper {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.btn-conocer-mas-trigger {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dorado-premium);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(200, 137, 42, 0.25);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-conocer-mas-trigger:hover {
  background: rgba(200, 137, 42, 0.1);
  border-color: var(--dorado-luminoso);
  color: var(--blanco-roto);
  transform: translateX(3px);
}

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

/* Quick selector grid */
.embajadoras-selector-wrapper {
  margin-top: 25px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.selector-title {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gris-muted);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.embajadoras-buttons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.emb-selector-btn {
  background: rgba(8, 8, 8, 0.55);
  border: 1px solid rgba(200, 137, 42, 0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gris-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.emb-selector-btn:hover {
  border-color: var(--dorado-premium);
  color: var(--blanco-roto);
}

.emb-selector-btn.active {
  background: var(--dorado-premium);
  color: var(--negro-cine);
  border-color: var(--dorado-luminoso);
  font-weight: 600;
  box-shadow: 0 0 12px rgba(200, 137, 42, 0.35);
}

/* Floating Hover Card */
.emb-hover-card {
  position: absolute;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 137, 42, 0.35);
  border-radius: 8px;
  padding: 14px;
  width: 280px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -115%) scale(0.95);
  transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  gap: 12px;
  align-items: center;
}

.emb-hover-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -108%) scale(1);
}

.emb-hover-img-wrapper {
  width: 65px;
  height: 65px;
  border-radius: 4px;
  border: 1px solid rgba(200, 137, 42, 0.2);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--negro-cine);
}

.emb-hover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emb-hover-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.emb-hover-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--blanco-roto);
  margin: 0;
  line-height: 1.2;
}

.emb-hover-city {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--naranja-sunset);
  text-transform: uppercase;
  margin-top: 2px;
}

.emb-hover-role {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--dorado-premium);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.emb-hover-hint {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  color: var(--gris-muted);
  margin-top: 6px;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Modal de Ficha Expandida */
.embajadora-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 8, 15, 0.75);
  backdrop-filter: blur(12px);
  z-index: 1;
}

.modal-content-wrapper {
  position: relative;
  background: rgba(8, 8, 8, 0.95);
  border: 1px solid rgba(200, 137, 42, 0.25);
  border-radius: 12px;
  width: 90%;
  max-width: 850px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  z-index: 2;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 45px;
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: var(--gris-muted);
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
  z-index: 10;
}

.modal-close-btn:hover {
  color: var(--naranja-sunset);
}

.modal-body-content {
  animation: modalBodyFadeIn 0.5s ease 0.15s forwards;
  opacity: 0;
}

@keyframes modalBodyFadeIn {
  to {
    opacity: 1;
  }
}

/* Modal Detailed Layout */
.modal-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

.modal-image-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-img-wrapper {
  width: 100%;
  height: 310px;
  border-radius: 8px;
  border: 1px solid rgba(200, 137, 42, 0.3);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  background: #ffffff; /* Matching white background of official cards */
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Display card in full without clipping */
}

.modal-meta-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--naranja-sunset);
  text-transform: uppercase;
  text-align: center;
  border: 1px solid rgba(212, 98, 42, 0.2);
  background: rgba(212, 98, 42, 0.04);
  border-radius: 4px;
  padding: 6px 12px;
}

.modal-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
}

.modal-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--blanco-roto);
  margin: 0;
  line-height: 1.1;
}

.modal-role {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dorado-premium);
  margin-top: 6px;
}

.modal-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-sec-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gris-muted);
  text-transform: uppercase;
}

.modal-sec-text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: #dfdedd;
  margin: 0;
}

.modal-quote-block {
  border-left: 2px solid var(--dorado-premium);
  padding-left: 20px;
  margin: 10px 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--blanco-roto);
}

/* --- Interactive Ticket Maker --- */
.ticket-section {
  background-color: var(--azul-noche);
  position: relative;
}

.ticket-maker-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 50px;
  align-items: center;
}

.ticket-form-card {
  background: rgba(8, 8, 8, 0.5);
  border: 1px solid rgba(200, 137, 42, 0.12);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dorado-premium);
  margin-bottom: 25px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(200, 137, 42, 0.2);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--blanco-roto);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--dorado-luminoso);
  box-shadow: 0 0 10px rgba(232, 184, 75, 0.25);
  background: rgba(10, 22, 40, 0.85);
}

.ticket-cta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 24px 0 16px;
  position: relative;
}

.ticket-cta-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(245, 240, 232, 0.1);
  z-index: 1;
}

.ticket-cta-divider span {
  background: rgba(8, 8, 8, 0.95);
  padding: 0 15px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gris-muted);
  text-transform: uppercase;
  z-index: 2;
}

/* 3D Ticket Preview Card */
.ticket-preview-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  padding: 30px;
}

.ticket-badge-card {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1.625;
  background: linear-gradient(135deg, #0A1628 0%, #080808 100%);
  border: 1px solid var(--dorado-premium);
  border-radius: 4px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.ticket-badge-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gris-muted);
  border-bottom: 1px solid rgba(200, 137, 42, 0.15);
  padding-bottom: 12px;
}

.ticket-badge-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  transform: translateZ(30px);
}

.ticket-logo {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--dorado-premium);
  line-height: 1;
}

.ticket-logo-sub {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--blanco-roto);
  margin-top: 4px;
  text-indent: 0.5em;
}

.ticket-logo-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 1.6rem;
  color: var(--dorado-luminoso);
  line-height: 1;
  margin-top: -2px;
}

.ticket-badge-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 15px 0;
}

.badge-dot {
  width: 4px;
  height: 4px;
  background-color: var(--dorado-premium);
  border-radius: 50%;
}

.badge-line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(200, 137, 42, 0.2);
}

.ticket-badge-type {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--naranja-sunset);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ticket-user-avatar {
  font-size: 2.2rem;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(200, 137, 42, 0.25);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.ticket-user-info {
  text-align: center;
}

.ticket-user-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--blanco-roto);
}

.ticket-user-company {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gris-muted);
  margin-top: 4px;
}

.ticket-badge-footer {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(200, 137, 42, 0.15);
  padding-top: 15px;
  transform: translateZ(20px);
}

.footer-data {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.data-title {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gris-muted);
}

.data-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dorado-luminoso);
  margin-top: 4px;
}

.footer-divider {
  width: 1px;
  background-color: rgba(200, 137, 42, 0.15);
  align-self: stretch;
}

.badge-glow-layer {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.15s ease-out;
}

/* --- Sponsors & Audiencia Section --- */
.sponsors-section {
  background-color: var(--azul-noche);
  border-top: 1px solid rgba(200, 137, 42, 0.15);
}

.audience-block {
  background: rgba(8, 8, 8, 0.35);
  border: 1px solid rgba(200, 137, 42, 0.12);
  border-radius: 4px;
  padding: 50px;
  margin-bottom: 60px;
}

.audience-header {
  text-align: center;
  margin-bottom: 40px;
}

.audience-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--blanco-roto);
  margin-top: 8px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.aud-card {
  background: rgba(10, 22, 40, 0.5);
  border: 1px solid rgba(200, 137, 42, 0.1);
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.aud-card:hover {
  border-color: rgba(200, 137, 42, 0.25);
  transform: translateY(-3px);
}

.aud-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.aud-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--blanco-roto);
  margin-bottom: 10px;
}

.aud-card p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gris-muted);
  line-height: 1.5;
}

.audience-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(200, 137, 42, 0.15);
  padding-top: 30px;
}

.aud-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.aud-stat-n {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--dorado-premium);
  line-height: 1;
}

.aud-stat-l {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gris-muted);
  text-transform: uppercase;
}

.sponsor-tiers {
  margin-bottom: 40px;
}

.tiers-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  color: var(--dorado-premium);
  margin-bottom: 30px;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tier-card {
  background: rgba(8, 8, 8, 0.5);
  border: 1px solid rgba(200, 137, 42, 0.12);
  border-radius: 4px;
  padding: 22px 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.tier-card:hover {
  transform: translateY(-5px);
}

.tier-comunidad:hover {
  border-color: rgba(200, 137, 42, 0.3);
}

.tier-crecimiento:hover {
  border-color: var(--dorado-premium);
  box-shadow: 0 10px 25px rgba(200, 137, 42, 0.1);
}

.tier-impacto {
  border-color: rgba(212, 98, 42, 0.3);
  box-shadow: 0 0 20px rgba(212, 98, 42, 0.05);
}

.tier-impacto:hover {
  border-color: var(--naranja-sunset);
  box-shadow: 0 10px 30px rgba(212, 98, 42, 0.2);
}

.tier-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(245, 240, 232, 0.05);
  color: var(--blanco-roto);
  margin-bottom: 20px;
}

.tier-comunidad .tier-badge {
  background: rgba(166, 161, 154, 0.12);
  color: var(--gris-muted);
}

.tier-crecimiento .tier-badge {
  background: rgba(200, 137, 42, 0.15);
  color: var(--dorado-luminoso);
  border: 1px solid rgba(200, 137, 42, 0.2);
}

.tier-impacto .tier-badge {
  background: linear-gradient(135deg, rgba(212, 98, 42, 0.2) 0%, rgba(200, 137, 42, 0.2) 100%);
  color: var(--dorado-luminoso);
  border: 1px solid rgba(212, 98, 42, 0.3);
}

.tier-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gris-muted);
  line-height: 1.6;
}
.current-sponsors {
  margin-bottom: 45px;
}

.sponsors-logos {
  display: grid;
  grid-template-columns: repeat(2, 140px); /* 2 columns since they fit next to the photo card */
  gap: 25px 35px;
  margin-top: 25px;
  justify-content: center;
}

.sponsor-logo-card {
  background: transparent;
  border: none;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px; /* Scale up significantly for high visibility */
  height: 140px; /* Scale up significantly for high visibility */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: visible;
  margin: 0 auto;
}

.sponsor-logo-card:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 15px 35px rgba(212, 98, 42, 0.35), 0 0 20px rgba(232, 184, 75, 0.2);
}

.sponsor-placeholder-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f192d;
  letter-spacing: 0.02em;
  text-align: center;
  z-index: 2;
}

.sponsor-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(8, 8, 8, 0.3);
  border: 1px solid rgba(200, 137, 42, 0.12);
  border-radius: 4px;
  padding: 40px;
}

.sponsor-cta-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--blanco-roto);
  margin-bottom: 20px;
}

/* --- FAQ Accordion Section --- */
.faq-section {
  background-color: var(--negro-cine);
  border-top: 1px solid rgba(200, 137, 42, 0.15);
  border-bottom: 1px solid rgba(200, 137, 42, 0.15);
}

.faq-accordion-group {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: rgba(10, 22, 40, 0.35);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(200, 137, 42, 0.25);
}

.faq-item.active {
  border-color: var(--dorado-premium);
  background: rgba(10, 22, 40, 0.55);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 30px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--blanco-roto);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--dorado-luminoso);
}

.faq-icon {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--dorado-premium);
  transition: transform 0.3s ease;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-content p {
  padding: 0 30px 24px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--gris-muted);
}

/* --- Adquirir Pase / Register Section --- */
.register-section {
  position: relative;
  background: var(--negro-cine);
  border-top: 1px solid rgba(200, 137, 42, 0.15);
  overflow: hidden;
}

.register-bg-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 98, 42, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.register-section .section-container {
  position: relative;
  z-index: 1;
}

.pass-selector {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin: 40px 0;
}

.pass-btn {
  background: rgba(10, 22, 40, 0.45);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 4px;
  padding: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.pass-btn:hover {
  border-color: rgba(200, 137, 42, 0.3);
  transform: translateY(-2px);
}

.pass-btn.active {
  border-color: var(--dorado-premium);
  background: rgba(200, 137, 42, 0.08);
  box-shadow: 0 0 20px rgba(200, 137, 42, 0.15);
}

.pass-btn-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--blanco-roto);
}

.pass-btn.active .pass-btn-name {
  color: var(--dorado-luminoso);
}

.pass-btn-desc {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--gris-muted);
  line-height: 1.4;
}

.pass-btn.active .pass-btn-desc {
  color: var(--blanco-roto);
}

.register-form {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(8, 8, 8, 0.5);
  border: 1px solid rgba(245, 240, 232, 0.1);
  padding: 40px;
  border-radius: 4px;
  backdrop-filter: blur(10px);
}

.register-success-msg {
  display: none;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid var(--dorado-premium);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 0 25px rgba(200, 137, 42, 0.15);
}

.success-icon {
  font-size: 3rem;
  color: var(--dorado-luminoso);
  display: block;
  margin-bottom: 20px;
}

.register-success-msg h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--blanco-roto);
  margin-bottom: 15px;
}

.register-success-msg p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--gris-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.success-crear-note {
  font-weight: 600;
  color: var(--dorado-luminoso) !important;
}

/* --- Footer Section --- */
.main-footer {
  background: var(--negro-cine);
  border-top: 1px solid rgba(200, 137, 42, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

.footer-crear-hierarchy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-crear {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--blanco-roto);
  line-height: 1;
}

.footer-arrow {
  font-size: 0.8rem;
  color: var(--naranja-sunset);
  margin: 4px 0;
  padding-left: 20px;
}

.footer-emec-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.footer-emec {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dorado-premium);
  line-height: 1;
}

.footer-emec-year {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--blanco-roto);
}

.footer-emec-script {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--dorado-luminoso);
  line-height: 1;
  margin-top: -4px;
}

.brand-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gris-muted);
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 400px;
}

.brand-values {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dorado-premium);
  margin-bottom: 8px;
}

.brand-territory {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--naranja-sunset);
  margin-top: 10px;
}

.footer-links-group h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dorado-premium);
  margin-bottom: 20px;
}

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

.footer-links-group a {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gris-muted);
  transition: var(--transition-fast);
}

.footer-links-group a:hover {
  color: var(--blanco-roto);
}

.footer-links-group li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gris-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gris-muted);
}

.footer-bottom p:last-child {
  font-style: italic;
}

/* --- Scroll Reveal Effects CSS Helper --- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* --- Media Queries (Mobile & Tablet Responsiveness) --- */
@media (max-width: 1024px) {
  .historia-layout {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-container {
    padding: 80px 20px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .nav-desktop, .header-cta {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .title-emec {
    font-size: 5rem;
  }

  .title-script {
    font-size: 2.8rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 15px;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    min-width: 40%;
  }

  .stat-divider {
    display: none;
  }

  .historia-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .historia-steps::before {
    left: 25px;
  }

  .step-connector {
    width: 16px;
    min-width: 16px;
  }

  .step-line {
    min-height: 60px;
  }

  .territorial-quote {
    gap: 15px;
    margin-top: 50px;
  }

  .territorial-quote {
    flex-direction: column;
    gap: 12px;
    margin-top: 50px;
    padding: 0 15px;
  }
  
  .tq-map-line {
    display: none; /* Hide lines on mobile so text is fully centered with air */
  }

  .tq-text {
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: center;
    padding: 0 15px;
    max-width: 92%;
  }

  .transformation-inner {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 40px;
  }

  .conductora-inner {
    grid-template-columns: 1fr;
  }

  .conductora-img-area {
    min-height: 350px;
  }

  .conductora-info {
    padding: 30px;
  }

  .agenda-timeline::before {
    left: 80px;
  }

  .tl-time {
    width: 70px;
    min-width: 70px;
    padding-right: 10px;
  }

  .tl-h {
    font-size: 1.5rem;
  }

  .tl-ampm {
    font-size: 0.55rem;
  }

  .tl-dot-area {
    width: 20px;
  }

  .tl-dot {
    width: 10px;
    height: 10px;
    margin-top: 24px;
  }

  .tl-card {
    padding: 20px;
  }

  .ticket-maker-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ticket-form-card {
    padding: 30px 20px;
  }

  .audience-block {
    padding: 30px 20px;
  }

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

  .audience-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .aud-stat {
    min-width: 40%;
  }

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

  .pass-selector {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .register-form {
    padding: 30px 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

    .embajadoras-map-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .profile-card {
    min-height: auto;
    padding: 24px;
  }

  .map-container-wrapper {
    max-width: 230px;
    max-height: 290px;
    padding: 10px;
    margin: 0 auto;
  }

  /* Modal responsive adjustments */
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .modal-image-col {
    align-items: center;
  }

  .modal-img-wrapper {
    width: 200px;
    height: 250px;
  }

  .modal-content-wrapper {
    padding: 30px 20px;
    width: 95%;
  }

  .modal-name {
    font-size: 1.8rem;
    text-align: center;
  }

  .modal-role {
    text-align: center;
    font-size: 0.95rem;
  }

  .modal-header {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .title-emec {
    font-size: 4rem;
  }
  
  .title-script {
    font-size: 2.2rem;
  }

  .hero-subconcept {
    font-size: 0.8rem;
  }

  .tq-text {
    font-size: 1.3rem;
  }

  .transformation-title {
    font-size: 1.8rem;
  }
}

/* Space Optimization for Speakers and Sponsors */
.speakers-section .section-container,
.sponsors-section .section-container {
  padding: 45px 24px 60px;
}

.speakers-section .section-header,
.sponsors-section .section-header {
  margin-bottom: 18px;
}

/* Sponsors Dashboard 4-Column Grid */
.sponsors-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0 50px;
}

.dashboard-col {
  background: rgba(10, 22, 40, 0.45);
  border: 1px solid rgba(200, 137, 42, 0.12);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

.dash-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dorado-premium);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(200, 137, 42, 0.15);
  padding-bottom: 10px;
  text-align: left;
}

.dash-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.dash-icon {
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 2px;
}

.dash-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dash-text strong {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--blanco-roto);
  font-weight: 600;
}

.dash-text span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gris-muted);
  font-weight: 300;
  line-height: 1.4;
}

/* Columna Datos Clave */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  flex-grow: 1;
}

.dash-stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(8, 8, 8, 0.3);
  border: 1px solid rgba(200, 137, 42, 0.08);
  border-radius: 4px;
  padding: 12px 6px;
}

.dash-stat-val {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dorado-premium);
  line-height: 1;
  margin-bottom: 6px;
}

.dash-stat-lbl {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--gris-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.3;
}

/* Columna Radial Chart (Poder de Decisión) */
.radial-chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  gap: 15px;
}

.radial-chart {
  width: 100px;
  height: 100px;
}

.circular-chart {
  display: block;
  width: 100%;
  height: 100%;
}

.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 2.8;
}

.circle-progress {
  fill: none;
  stroke: url(#radialGradSunset);
  stroke-width: 2.8;
  stroke-linecap: round;
  transition: stroke-dasharray 0.3s ease;
}

.percentage {
  fill: var(--blanco-roto);
  font-family: var(--font-serif);
  font-size: 0.55rem;
  font-weight: 700;
  text-anchor: middle;
}

.chart-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gris-muted);
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
  max-width: 180px;
}

@media (max-width: 1024px) {
  .sponsors-dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sponsors-dashboard-grid {
    grid-template-columns: 1fr;
  }
}



/* Puna Tech overlay and hover expandable styles */
.speaker-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease;
}

.speaker-meta-top {
  margin-bottom: 4px;
}

.speaker-time-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--naranja-sunset);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 2px 0 4px 0;
  line-height: 1.15;
  text-align: left;
}

.speaker-role {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gris-muted);
  margin-bottom: 4px;
  display: block;
  text-align: left;
}

.speaker-talk {
  margin-top: 2px;
}

.talk-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
  margin: 0;
  text-align: left;
}

/* Hover expandable container (Puna Tech style content recovery) */
.speaker-hover-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, margin-top 0.4s ease;
}

.speaker-bio {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
  margin: 8px 0;
  text-align: left;
}

.speaker-value-prop {
  margin-top: 8px !important;
  padding-top: 8px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.72rem !important;
  line-height: 1.3 !important;
  text-align: left !important;
  opacity: 1 !important;
  max-height: none !important;
  overflow: visible !important;
}

.svp-label {
  color: var(--naranja-sunset) !important;
  font-weight: 700 !important;
}

.svp-text {
  color: var(--gris-muted) !important;
  font-weight: 300 !important;
}

/* Activate expansion on card hover */
.speaker-card:hover .speaker-hover-content,
.speaker-card.focused .speaker-hover-content {
  max-height: 160px;
  opacity: 1;
  margin-top: 10px;
}

/* Adjust carousel wrapper for compact cards */
.speakers-carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

/* Carousel Controls (Puna Tech style) */
.carousel-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 15;
  backdrop-filter: blur(4px);
}

.carousel-control-btn:hover {
  background: rgba(8, 8, 8, 0.9);
  border-color: var(--naranja-sunset);
  color: #fff;
  box-shadow: 0 0 15px rgba(212, 98, 42, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.carousel-control-btn.prev {
  left: -20px; /* Floating outside of track bounds like Puna Tech */
}

.carousel-control-btn.next {
  right: -20px; /* Floating outside of track bounds like Puna Tech */
}

@media (max-width: 1100px) {
  .carousel-control-btn.prev {
    left: 10px; /* Inside boundaries on narrower screens */
  }
  .carousel-control-btn.next {
    right: 10px; /* Inside boundaries on narrower screens */
  }
}

@media (max-width: 768px) {
  .carousel-control-btn {
    width: 38px;
    height: 38px;
    background: rgba(8, 8, 8, 0.75);
    border-color: rgba(200, 137, 42, 0.3);
    display: flex; /* Ensure always visible! */
  }
  .carousel-control-btn.prev {
    left: 5px;
  }
  .carousel-control-btn.next {
    right: 5px;
  }
  
  .speaker-card {
    flex: 0 0 calc(100% - 60px) !important;
  }

  .speakers-carousel-container {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}

/* Institutional portfolio quote and intro styles */
.historia-intro-copy {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--blanco-roto);
  opacity: 0.85;
  margin: 15px 0 25px 0;
  max-width: 90%;
  text-align: left;
}

.sponsors-quote-box {
  margin-top: 45px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--dorado-premium);
  padding: 24px 30px;
  border-radius: 0 8px 8px 0;
  position: relative;
  overflow: hidden;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sponsors-quote-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 12px;
}

.sponsors-quote-author {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--naranja-sunset);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

/* Premium showcase image inside Historia */
.historia-image-showcase {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 50px auto 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.showcase-img {
  width: 100%;
  height: auto; /* let height scale naturally to show the complete image */
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}

.historia-image-showcase:hover .showcase-img {
  transform: scale(1.02);
  filter: brightness(0.95);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
}

.showcase-caption {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  text-align: center;
}

/* Sponsors Split Column Layout */
.sponsors-showcase-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  margin: 30px 0 50px;
  align-items: stretch;
}

.sponsors-logos-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sponsors-photo-col {
  display: flex;
}

.sponsors-image-card {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.12); /* Gold border for premium contrast */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.06), transparent 60%), linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(8, 8, 8, 0.98) 100%);
  min-height: 280px;
}

.sponsors-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.05);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.sponsors-image-card:hover .sponsors-card-img {
  transform: scale(1.03);
  filter: brightness(0.85) contrast(1);
}

.sponsors-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.8) 0%, rgba(8, 8, 8, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  text-align: left;
}

.sponsors-card-badge {
  background: var(--naranja-sunset);
  color: #080808;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  align-self: flex-start;
  margin-bottom: 8px;
}

.sponsors-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
  letter-spacing: 0.02em;
}

.sponsors-card-text {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--gris-muted);
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 900px) {
  .sponsors-showcase-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .sponsors-logos {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* responsive grid on mobile */
  }

  .sponsor-logo-card {
    width: 120px;
    height: 120px;
  }
  
  .sponsors-image-card {
    height: 240px;
  }
  
  .historia-image-showcase {
    height: auto;
    aspect-ratio: 1.5; /* Keep it responsive and complete on mobile */
  }
}

/* Sponsor logo image layout and padding scale */
.sponsor-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Team Section --- */
.team-section {
  position: relative;
  padding: 85px 0 75px;
  background: var(--negro-cine);
}

.team-composition-grid {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.team-photo-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 1.5; /* standard aspect ratio to show the image complete */
  background: var(--negro-cine);
}

.team-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(0.85) contrast(1.02);
}

.team-photo-frame:hover .team-photo-img {
  transform: scale(1.02);
  filter: brightness(0.95) contrast(1);
}

@media (max-width: 768px) {
  .team-composition-grid {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 15px;
  }
  .team-photo-frame {
    height: auto;
    aspect-ratio: 1.5; /* Keep it responsive and complete on mobile */
  }
}


/* Speakers Carousel Clipper wrapper to prevent card leaks without clipping navigation buttons */
.speakers-carousel-clipper {
  overflow: hidden;
  width: 100%;
  padding: 15px 0;
}

/* Duo card alignment for combined photo */
.speaker-card-duo .speaker-img-area:first-child .speaker-img {
  object-position: 25% center; /* Daiana Yael Alcaráz */
}

.speaker-card-duo .speaker-img-area:last-child .speaker-img {
  object-position: 75% center; /* Liliana Elizabet Reguera */
}

/* Footer team photo frame */
.footer-team-photo-frame {
  margin-top: 22px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 100%;
  aspect-ratio: 16 / 9;
}

.footer-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(105%) brightness(0.85);
  transition: var(--transition-smooth);
}

.footer-team-photo-frame:hover .footer-team-img {
  filter: grayscale(0%) contrast(100%) brightness(1);
}

/* Hero Collage Background */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  padding: 12px;
  opacity: 0.95; /* Vibrant and highly visible regional pictures */
  pointer-events: none;
}

.collage-panel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.0);
  filter: blur(2px) brightness(0.92) contrast(100%); /* Sutil blur only for texture and legibility */
  transition: opacity 1.0s ease-in-out, transform 8s cubic-bezier(0.1, 0.8, 0.25, 1);
}

.collage-panel.active {
  opacity: 0.9;
  transform: scale(1.04) translate(0.3%, 0.3%); /* Ken Burns zoom and slide */
}

@media (max-width: 768px) {
  .hero-slideshow {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    padding: 8px;
  }
}

/* Hero Text Legibility Enhancement */
.hero-crear-brand,
.hero-title,
.hero-subtitle,
.hero-stats-container,
.hero-stat-value,
.hero-stat-label {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

.hero-crear-brand span,
.hero-crear-brand strong {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85) !important;
}

/* Specific text border stroke to make top elements stand out over bright landscapes */
.hero-crear-brand .crear-label,
.hero-crear-brand .crear-name,
.hero-kicker-badge span {
  -webkit-text-stroke: 0.5px rgba(6, 15, 28, 0.95);
  text-shadow: 0 2px 8px rgba(6, 15, 28, 0.98), 0 0 3px rgba(6, 15, 28, 0.9) !important;
}

@media (max-width: 768px) {
  .section-subtitle {
    font-size: 0.92rem !important;
    padding: 0 10px;
    line-height: 1.45;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 30px 12px 10px;
  }
  
  .hero-territory-mark {
    width: 95vw;
    height: 95vw;
    max-width: 440px;
    max-height: 440px;
    margin: 0 auto 30px;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  .hero-map-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .hero-crear-brand {
    margin-bottom: 4px;
  }

  .hero-crear-brand .crear-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .hero-crear-brand .crear-name {
    font-size: 0.75rem;
  }

  .hero-kicker-badge {
    margin-bottom: 15px; /* Spacing before relative map */
    padding: 3px 8px;
    font-size: 0.58rem;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero-title .title-emec {
    font-size: 2.2rem;
  }

  .hero-title .title-year {
    font-size: 1.2rem;
    margin-top: 4px;
    margin-bottom: 10px;
    letter-spacing: 0.4em;
    text-indent: 0.4em;
  }

  .hero-title .title-desc {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    margin-bottom: 2px;
  }

  .hero-title .title-script {
    font-size: 1.4rem;
  }

  .hero-tagline {
    margin: 8px 0 16px;
    font-size: 0.52rem;
    letter-spacing: 0.22em;
    text-indent: 0.22em;
    color: var(--dorado-luminoso);
  }

  .hero-concept {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }

  .hero-subconcept {
    font-size: 0.65rem;
    margin-bottom: 0;
    line-height: 1.35;
    max-width: 280px;
    padding: 0 5px;
  }

  .hero-actions {
    margin-top: 30px; /* Centered, breathing spacing below relative map */
    margin-bottom: 0;
    display: flex;
    flex-direction: row; /* Side-by-side alignment */
    justify-content: space-between;
    width: 100%;
    max-width: 320px;
    gap: 10px;
  }

  .btn-hero {
    padding: 10px 4px; /* Compact padding to fit side by side */
    font-size: 0.65rem; /* Small font size to prevent wrapping */
    width: 48%;
    text-align: center;
    white-space: nowrap;
  }
}

/* Floating Stats Bar at the bottom of the Hero */
.hero-stats-bar {
  width: 90%;
  max-width: 820px;
  margin: 35px auto 0;
  padding: 18px 30px;
  background: rgba(7, 21, 38, 0.65); /* Matches map glass style */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  z-index: 4;
  position: relative;
  animation: statsReveal 1.8s ease-out forwards;
}

@keyframes statsReveal {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stats-bar .hero-stats {
  border-top: none;
  padding-top: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-stats-bar {
    width: 92%;
    padding: 15px;
    margin-top: 25px;
  }
}

/* Centered Single Team Photo Styles */
.team-single-showcase {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}

.team-single-showcase .team-photo-frame {
  max-width: 960px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.team-photo-img-single {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-single-showcase .team-photo-frame:hover .team-photo-img-single {
  transform: scale(1.03);
}

/* --- Footer Legal Disclaimer --- */
.footer-legal-disclaimer {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: justify;
  font-family: var(--font-sans);
  font-size: 0.61rem;
  line-height: 1.5;
  color: rgba(166, 161, 154, 0.4); /* Low contrast matching secondary footer text */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer-legal-disclaimer p {
  margin-bottom: 12px;
}

.footer-legal-disclaimer p:last-child {
  margin-bottom: 0;
}

/* --- Conducción de la Experiencia --- */
.conduccion-section {
  padding: 100px 0;
  background: var(--azul-profundo); /* Match main background */
  position: relative;
}

.conduccion-layout {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.conduccion-image-col {
  flex: 0 0 380px;
}

.conduccion-image-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200, 137, 42, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.conduccion-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

.conduccion-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.conduccion-image-frame:hover .conduccion-img {
  transform: scale(1.03);
}

.conduccion-info-col {
  flex: 1;
  text-align: left;
}

.conduccion-name {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--blanco-roto);
  margin-bottom: 8px;
  line-height: 1.2;
}

.conduccion-role {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dorado-premium);
  display: block;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.conduccion-divider {
  width: 60px;
  height: 2px;
  background: var(--dorado-luminoso);
  margin-bottom: 20px;
}

.conduccion-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gris-muted);
}

/* Responsive Conducción */
@media (max-width: 992px) {
  .conduccion-layout {
    gap: 40px;
    max-width: 800px;
  }
  .conduccion-image-col {
    flex: 0 0 320px;
  }
  .conduccion-name {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .conduccion-section {
    padding: 70px 0;
  }
  .conduccion-layout {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .conduccion-image-col {
    flex: 0 0 auto;
    width: 280px;
    margin: 0 auto;
  }
  .conduccion-info-col {
    text-align: center;
  }
  .conduccion-divider {
    margin: 0 auto 20px;
  }
  .conduccion-desc {
    font-size: 1rem;
    line-height: 1.6;
  }
}


