/*=============================================================================
  RUWEN — Estilos Principales (Rediseño 2026)
=============================================================================*/

:root {
  --bg-dark:      #1B3039;
  --text-dark:    #4A4C51;
  --bg-light:     #F8FAFC;
  --accent-color: #DB3029;
  --font-body:    'Inter', sans-serif;
  --font-title:   'Sora', sans-serif;
  --transition:   all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; }

/* ---- Tipografía ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-title); color: var(--bg-dark); font-weight: 700; line-height: 1.15; }
p { line-height: 1.7; }

/* ---- Layout ---- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 100px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark  { background-color: var(--bg-dark); }
.text-white  { color: #ffffff !important; }
.text-center { text-align: center; }

/* ---- Botones ---- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 14px rgba(219,48,41,0.3);
}
.btn-primary:hover {
  background-color: #c02822;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(219,48,41,0.45);
}
.btn-outline-dark {
  background-color: transparent;
  color: var(--bg-dark);
  border-color: var(--bg-dark);
}
.btn-outline-dark:hover {
  background-color: var(--bg-dark);
  color: #fff;
}
.btn-large { padding: 16px 36px; font-size: 1rem; }

/* CTA pulse animation */
.cta-pulse { animation: pulseCta 2.5s infinite; }
@keyframes pulseCta {
  0%, 100% { box-shadow: 0 4px 14px rgba(219,48,41,0.3); }
  50%       { box-shadow: 0 4px 28px rgba(219,48,41,0.6); }
}

/* ---- Eyebrow Labels ---- */
.eyebrow-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 12px;
  opacity: 0.6;
}
.eyebrow-label.accent { color: var(--accent-color); opacity: 1; }
.tech-eyebrow { color: var(--bg-dark); opacity: 0.35; font-size: 0.7rem; }

/* ---- Section header ---- */
.section-header { margin-bottom: 60px; }
.section-title   { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.section-subtitle { color: var(--text-dark); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-cta { margin-top: 60px; }

/*=========================================
  HEADER FLOTANTE
=========================================*/
.header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
  -webkit-transform: translateX(-50%) translateZ(0);
  width: 92%;
  max-width: 1200px;
  background: rgba(20, 30, 38, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1000;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.header.scrolled {
  background: rgba(27,48,57,0.85);
  border-color: rgba(255,255,255,0.04);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  padding: 0 24px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 38px; width: auto; }

.nav-links { display: flex; gap: 36px; }
.nav-link {
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.cta-contact { font-size: 0.88rem; padding: 10px 22px; }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav-drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100%;
  background: var(--bg-dark);
  z-index: 1200;
  padding: 32px 28px;
  transition: right 0.35s cubic-bezier(0.25,0.8,0.25,1);
  display: flex; flex-direction: column;
}
.mobile-nav-drawer.open { right: 0; }
.mobile-nav-close {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: #fff; }
.mobile-nav-drawer ul { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav-drawer ul li a {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav-drawer ul li a:hover { color: #fff; }

/*=========================================
  HERO SECTION — VIDEO SLIDER
=========================================*/
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-video-stack {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* Capas de video apiladas */
.hero-video-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 1;
}
.hero-video-layer.active {
  opacity: 1;
  z-index: 2;
}
.hero-video-layer.fade-out {
  opacity: 0;
  z-index: 3;
  transition: opacity 0.9s ease;
}
.hero-video-layer.fade-in {
  opacity: 1;
  z-index: 2;
}
.hero-video-layer video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay oscuro gradiente */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,20,25,0.88) 0%,
    rgba(10,20,25,0.5)  50%,
    rgba(10,20,25,0.15) 100%
  );
  z-index: 4;
}

/* Contenido de texto sobre el video */
.hero-text-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  /* Sin flex — cada slide se posiciona absoluto individualmente */
}

/* === TODOS LOS SLIDES: siempre position:absolute, nunca hay salto === */
.hero-slide-text {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 640px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  /* sin transición de transform para evitar micro-saltos de layout */
}

/* Slide visible */
.hero-slide-text.visible {
  opacity: 1;
  pointer-events: auto;
}

/* hidden: solo garantiza opacity 0 y sin interacción — position NO cambia */
.hero-slide-text.hidden {
  opacity: 0;
  pointer-events: none;
}

/* === SLIDES ALINEADOS A LA DERECHA (Tech=1, Growth=3) === */
#hero-slide-1,
#hero-slide-3 {
  left: auto;
  right: 8%;
  text-align: right;
}
#hero-slide-1 .hero-body,
#hero-slide-3 .hero-body {
  margin-left: auto;
}

/* Growth (3): texto más arriba, más separación antes del botón */
#hero-slide-3 {
  top: 44%;
}
#hero-slide-3 .btn {
  margin-top: 28px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 480px;
}

/* Dots de navegación inferiores */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 24px;
  align-items: flex-end;
}
.hero-dot {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  transition: var(--transition);
}
.dot-indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all 0.4s ease;
  display: block;
}
.dot-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.4s ease;
}
.hero-dot.active .dot-indicator {
  background: var(--accent-color);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(219,48,41,0.6);
}
.hero-dot.active .dot-label { color: #fff; }
.hero-dot:hover .dot-indicator { background: rgba(255,255,255,0.6); }
.hero-dot:hover .dot-label { color: rgba(255,255,255,0.7); }

/* Barra de progreso del dot activo */
.dot-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent-color);
  border-radius: 4px;
  transition: width linear;
}

/*=========================================
  SECCIÓN AGENCY — 4 TARJETAS
=========================================*/
.agency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 12px;
}
.agency-card {
  background: #fff;
  padding: 44px 36px;
  border-radius: 20px;
  border: 1px solid rgba(27,48,57,0.06);
  box-shadow: 0 8px 30px rgba(27,48,57,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.agency-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.agency-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(27,48,57,0.1);
}
.agency-card:hover::before { transform: scaleX(1); }

.agency-card-icon {
  width: 56px; height: 56px;
  background: rgba(219,48,41,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-color);
}
.agency-card-icon svg { width: 26px; height: 26px; }
.agency-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--bg-dark);
}
.agency-card > p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-feature-list { display: flex; flex-direction: column; gap: 8px; }
.card-feature-list li {
  color: var(--text-dark);
  font-size: 0.88rem;
  padding-left: 18px;
  position: relative;
  opacity: 0.85;
}
.card-feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 0.8rem;
}

/*=========================================
  SECCIÓN HOSPITALITY
=========================================*/
.hospitality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hosp-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  transition: var(--transition);
}
.hosp-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.hosp-card.highlight {
  background: rgba(219,48,41,0.12);
  border-color: rgba(219,48,41,0.4);
}
.hosp-card-icon {
  width: 48px; height: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.hosp-card-icon svg { width: 100%; height: 100%; }
.hosp-card h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 12px;
}
.hosp-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

/* Host CTA Block */
.host-cta-container {
  text-align: center;
  max-width: 800px;
  margin: 80px auto 0;
  padding: 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.host-cta-location {
  color: #DB3029;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.host-cta-title {
  font-family: var(--font-title);
  font-weight: 800;
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.host-cta-body {
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

/*=========================================
  SECCIÓN PARTNERS — MELIQUINA NATURAL
=========================================*/
.partners-section { background: #f0f4f7; }
.partners-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.partners-col-a p {
  color: var(--text-dark);
  font-size: 0.98rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.partners-highlight {
  font-family: var(--font-title);
  font-size: 1.1rem !important;
  color: var(--bg-dark) !important;
  font-weight: 600;
  margin: 24px 0 !important;
  border-left: 3px solid var(--accent-color);
  padding-left: 16px;
}
.partners-col-a .section-title { margin-bottom: 24px; }

/* Meliquina card */
.meliquina-card {
  background: var(--bg-dark);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(27,48,57,0.2);
}
.meliquina-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219,48,41,0.15) 0%, transparent 70%);
}
.meliquina-badge {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.meliquina-icon-row {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.mel-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
}
.mel-icon-item svg, .meliquina-custom-icon { width: 56px; height: 56px; object-fit: contain; }
.mel-icon-item span { font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }
.meliquina-title {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 12px;
}
.meliquina-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 24px;
}
.meliquina-tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.mel-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}

/*=========================================
  SECCIÓN EVENTOS
=========================================*/
.eventos-section { background: var(--bg-dark); }
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.evento-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 44px 32px;
  transition: var(--transition);
  position: relative;
}
.evento-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-6px);
  border-color: rgba(219,48,41,0.3);
}
.evento-card-num {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(219,48,41,0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.evento-card-icon {
  width: 44px; height: 44px;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.evento-card-icon svg { width: 100%; height: 100%; }
.evento-card h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 14px;
}
.evento-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin-bottom: 12px;
}
.evento-detail {
  font-size: 0.82rem !important;
  color: rgba(219,48,41,0.7) !important;
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
  margin-top: 4px;
}

/*=========================================
  SECCIÓN ALIANZAS
=========================================*/
.alianzas-section { background: var(--bg-light); }
.alianzas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.alianzas-text .section-title { margin-bottom: 20px; }
.alianzas-text p {
  color: var(--text-dark);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.alianzas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}
.alianza-tag {
  background: rgba(27,48,57,0.07);
  color: var(--bg-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(27,48,57,0.12);
}
.alianzas-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Network Visual */
.alianzas-visual { display: flex; justify-content: center; align-items: center; width: 100%; }
.alianzas-networking-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  object-fit: cover;
}

/*=========================================
  SECCIÓN NOSOTROS
=========================================*/
.nosotros-section { background: var(--bg-dark); }
.nosotros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.nosotros-col-b p {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.nosotros-col-b p strong { color: rgba(255,255,255,0.9); }
.nosotros-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/*=========================================
  SECCIÓN TECH STACK
=========================================*/
.tech-stack-section { background: var(--bg-light); overflow: hidden; }
.tech-stack-section .section-header { padding: 0 5%; }

.tech-ticker-wrapper {
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
  padding: 32px 0;
  background: var(--bg-dark);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.tech-ticker-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: techScroll 30s linear infinite;
}
@keyframes techScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tech-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 80px;
  flex-shrink: 0;
}
.tech-logo-item img {
  width: 44px; height: 44px;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.3s ease;
}
.tech-logo-item:hover img { transform: scale(1.1); }
.tech-logo-item span {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.tech-text-logo {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
}

/*=========================================
  SECCIÓN INSTAGRAM
=========================================*/
.ig-section { background: var(--bg-dark); }
.ig-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ig-body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 16px;
}
.ig-handle {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s;
}
.ig-handle:hover { opacity: 0.8; }
.ig-cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
}
.ig-embed-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.ig-embed-wrap .instagram-media {
  border-radius: 12px !important;
  max-width: 100% !important;
}

/*=========================================
  FOOTER
=========================================*/
.footer {
  background: var(--bg-dark);
  padding-top: 0;
}
.footer-cta {
  text-align: center;
  padding: 100px 20px 70px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-img {
  height: 44px;
  width: auto;
  margin: 0 auto 36px;
  opacity: 0.9;
}
.footer-cta-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
}
.footer-cta-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  gap: 20px;
}
.footer-copyright {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.footer-location {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}
.footer-seal {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 8px 18px;
}
.footer-seal span {
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  color: #fff;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/*=========================================
  RESPONSIVE — TABLET (≤992px)
=========================================*/
@media (max-width: 992px) {
  .agency-grid { grid-template-columns: repeat(2, 1fr); }
  .hospitality-grid { grid-template-columns: repeat(2, 1fr); }
  .eventos-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .partners-split { grid-template-columns: 1fr; gap: 48px; }
  .alianzas-inner { grid-template-columns: 1fr; gap: 48px; }
  .nosotros-inner { grid-template-columns: 1fr; gap: 40px; }
  .alianzas-visual { display: none; }
}

/*=========================================
  RESPONSIVE — MOBILE (≤768px)
=========================================*/
@media (max-width: 768px) {
  /* Header */
  .navbar, .cta-contact { display: none; }
  .menu-toggle { display: flex; }
  .header { top: 12px; border-radius: 14px; }

  /* Hero mobile: recortado desde abajo para ocultar sello VEO */
  .hero-section { height: 78vh; }

  /* Anclar el video desde arriba → el recorte cae en el extremo inferior */
  .hero-video-layer video {
    object-position: center top;
  }

  /* En mobile todos los slides: centrados horizontalmente */
  .hero-slide-text {
    left: 6%;
    right: 6%;
    max-width: 100%;
    text-align: center;
  }
  .hero-body {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* Slides de derecha — en mobile se recentran */
  #hero-slide-1,
  #hero-slide-3 {
    left: 6%;
    right: 6%;
    text-align: center;
  }
  #hero-slide-1 .hero-body,
  #hero-slide-3 .hero-body { margin-left: auto; }

  /* Experience (slide 2) en mobile: textos centrados, solo botón a la derecha */
  #hero-slide-2 {
    text-align: center;
  }
  #hero-slide-2 .hero-body {
    margin-left: auto;
    margin-right: auto;
  }
  #hero-slide-2 .btn {
    float: right;
    clear: both;
  }

  /* Growth mobile: textos juntos arriba, botón centrado abajo */
  #hero-slide-3 {
    top: 0;
    bottom: 0;
    left: 6%;
    right: 6%;
    transform: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;   /* textos agrupados desde arriba */
    padding-top: 100px;            /* espacio bajo el header */
    padding-bottom: 100px;         /* espacio sobre los dots */
  }
  #hero-slide-3 .btn {
    margin-top: auto;              /* empuja el botón al fondo */
    align-self: center;            /* centra horizontalmente */
    display: inline-block;
  }

  /* Dots dentro del área visible (< 90vh) */
  .hero-dots { bottom: 24px; gap: 16px; }

  .hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .dot-label { font-size: 0.58rem; }

  /* Sections */
  .section { padding: 70px 0; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Agency Grid */
  .agency-grid { grid-template-columns: 1fr; gap: 20px; }
  .agency-card { padding: 32px 24px; }

  /* Hospitality */
  .hospitality-grid { grid-template-columns: 1fr; }
  
  .host-cta-container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 20px;
  }
  .host-cta-container .btn {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }

  /* Eventos */
  .eventos-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Stats */
  .nosotros-stats { flex-direction: column; gap: 24px; }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 24px 0;
  }

  /* WhatsApp */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }

  /* Instagram */
  .ig-inner { grid-template-columns: 1fr; gap: 40px; }
  .ig-embed-wrap { width: 100%; }
}