/* ============================================
   MELPA VIAJES — Design System v2
   Premium dark theme + glassmorphism + parallax
   CRO-optimized + Antigravity Design
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand */
  --primary: #16829F;
  --primary-dark: #0F5F75;
  --primary-light: #1A9DBF;
  --orange: #F39C2A;
  --orange-light: #FFB249;
  --orange-dark: #D4850E;

  /* Backgrounds */
  --bg-base: #060E14;
  --bg-card: #0C1E2B;
  --bg-surface: #112A3A;
  --bg-glass: rgba(12, 30, 43, 0.65);
  --bg-glass-border: rgba(255, 255, 255, 0.08);

  /* Text */
  --text-primary: #E8F1F5;
  --text-secondary: #A3BCC8;
  --text-muted: #5E7782;

  /* Accents */
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --error: #E74C3C;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-glow-primary: 0 0 30px rgba(22, 130, 159, 0.3);
  --shadow-glow-orange: 0 0 30px rgba(243, 156, 42, 0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.35s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-base);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: var(--space-lg);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle.centered {
  margin: 0 auto;
}

/* --- Glass Card --- */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(243, 156, 42, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(243, 156, 42, 0.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--bg-glass-border);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(22, 130, 159, 0.1);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

/* Pulse animation for CTA */
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

.btn-pulse {
  position: relative;
}

.btn-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: inherit;
  opacity: 0;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

/* Shimmer effect for navbar CTA */
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

/* ============================================
   URGENCY TICKER
   ============================================ */
.urgency-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-dark));
  color: white;
  padding: 8px 0;
  overflow: hidden;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
}

.urgency-ticker.visible {
  transform: translateY(0);
}

.urgency-ticker-inner {
  display: flex;
  align-items: center;
  width: max-content;
  gap: var(--space-xl);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
}

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

.urgency-ticker .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0 var(--space-xl);
}

.urgency-ticker .ticker-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  opacity: 0.6;
}

body.ticker-active .navbar {
  top: 34px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-glass-border);
  padding: var(--space-sm) 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-logo img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
}

.navbar.scrolled .navbar-logo img {
  height: 40px;
}

/* Antigravity: Brand wordmark in navbar */
.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.navbar-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.navbar-brand-tagline {
  font-size: 0.6875rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

.navbar.scrolled .navbar-brand-tagline {
  display: none;
}

/* Mobile menu brand header */
.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-brand span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.navbar-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.navbar-links a:hover {
  color: var(--text-primary);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  align-items: center;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--orange);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* CRO FIX: Lighter overlay so beach image is visible — the image IS the product */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(6, 14, 20, 0.88) 0%,
    rgba(6, 14, 20, 0.65) 50%,
    rgba(6, 14, 20, 0.35) 100%
  );
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-base) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding-top: 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(243, 156, 42, 0.15);
  border: 1px solid rgba(243, 156, 42, 0.3);
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.5px;
}

.hero h1 {
  margin-bottom: var(--space-lg);
  font-weight: 800;
}

.hero h1 .highlight {
  color: var(--orange);
}

/* Word-by-word reveal setup */
.hero h1 .word {
  display: inline-block;
  overflow: hidden;
}

.hero h1 .word-inner {
  display: inline-block;
}

.hero-description {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

/* CTA subtext for micro-commitment */
.hero-cta-subtext {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

.hero-cta-subtext svg {
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border: none;
}

.hero-stat h3 {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-light);
}

.hero-stat p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.15;
  animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) { width: 6px; height: 6px; top: 20%; left: 70%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { width: 4px; height: 4px; top: 60%; left: 80%; animation-delay: 3s; animation-duration: 22s; }
.particle:nth-child(3) { width: 8px; height: 8px; top: 40%; left: 90%; animation-delay: 6s; animation-duration: 16s; }
.particle:nth-child(4) { width: 3px; height: 3px; top: 80%; left: 60%; animation-delay: 9s; animation-duration: 20s; }
.particle:nth-child(5) { width: 5px; height: 5px; top: 15%; left: 85%; animation-delay: 12s; animation-duration: 14s; }

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -20px); }
  50% { transform: translate(-20px, 30px); }
  75% { transform: translate(15px, 15px); }
}

/* ============================================
   TRUST BAR (Logo Ribbon)
   ============================================ */
.trust-bar {
  padding: var(--space-2xl) 0;
  border: none;
  position: relative;
  overflow: hidden;
}

.trust-bar-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.trust-logo:hover {
  opacity: 1;
}

.trust-logo svg {
  width: 24px;
  height: 24px;
  fill: var(--text-muted);
}

/* ============================================
   SINDICATOS BANNER
   ============================================ */
.sindicatos {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-card) 50%, var(--bg-base) 100%);
  position: relative;
}

.sindicatos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(243, 156, 42, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sindicatos-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.sindicatos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

/* Antigravity: Glassmorphism floating cards */
.sindicato-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: rgba(17, 42, 58, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.sindicato-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--primary));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.sindicato-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-float);
  border-color: rgba(243, 156, 42, 0.25);
  background: rgba(17, 42, 58, 0.7);
}

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

.sindicato-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(243, 156, 42, 0.1);
  border: 1px solid rgba(243, 156, 42, 0.2);
}

.sindicato-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.sindicato-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.sindicato-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(243, 156, 42, 0.2), rgba(243, 156, 42, 0.08));
  border: 1px solid rgba(243, 156, 42, 0.35);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: var(--space-md);
  box-shadow: 0 0 12px rgba(243, 156, 42, 0.12);
}

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

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations {
  position: relative;
}

/* Parallax glow orb */
.destinations::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(22, 130, 159, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.destination-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  transition: all var(--transition-base);
  perspective: 800px;
  position: relative;
}

.destination-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: var(--shadow-lg);
}

/* Animated gradient border for featured card */
.destination-card.featured {
  border: 2px solid var(--accent-orange);
  box-shadow: 0 0 20px rgba(243, 156, 42, 0.2);
}

.destination-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  z-index: -1;
}

@keyframes gradient-rotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.destination-card-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

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

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

.destination-card-img .destination-tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  border: 1px solid var(--bg-glass-border);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pulse animation for hot tag */
.destination-tag.tag-hot {
  animation: tag-pulse 2s ease-in-out infinite;
}

@keyframes tag-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(243, 156, 42, 0.4); }
  50% { box-shadow: 0 0 12px 4px rgba(243, 156, 42, 0.2); }
}

/* Price chip on destination card */
.destination-price {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: rgba(6, 14, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  z-index: 2;
}

.destination-price .price-from {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.destination-price .price-amount {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-body);
}

.destination-card-body {
  padding: var(--space-xl);
}

.destination-card-body h3 {
  font-family: var(--font-heading);
  margin-bottom: var(--space-xs);
}

.destination-card-body .destination-country {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.destination-card-body p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS (Process Steps)
   ============================================ */
.process {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-card) 50%, var(--bg-base) 100%);
  position: relative;
  overflow: hidden;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  position: relative;
}

/* Connecting line between steps */
.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--orange), var(--whatsapp));
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--bg-surface);
  border: 2px solid var(--bg-glass-border);
  transition: all var(--transition-base);
}

.process-step:nth-child(1) .process-step-number {
  border-color: rgba(22, 130, 159, 0.4);
  color: var(--primary-light);
}

.process-step:nth-child(2) .process-step-number {
  border-color: rgba(243, 156, 42, 0.4);
  color: var(--orange);
}

.process-step:nth-child(3) .process-step-number {
  border-color: rgba(37, 211, 102, 0.4);
  color: var(--whatsapp);
}

.process-step-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.process-step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   WHY MELPA
   ============================================ */
.why-melpa {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-card) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.why-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--bg-glass-border);
  transition: all var(--transition-base);
}

.why-card:hover {
  border-color: rgba(22, 130, 159, 0.3);
  transform: translateX(4px);
}

.why-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(22, 130, 159, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22, 130, 159, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.testimonial-card {
  padding: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  right: var(--space-xl);
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(22, 130, 159, 0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-sm);
  color: var(--orange);
  font-size: 1rem;
}

/* Destination tag on testimonial */
.testimonial-dest {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-light);
  background: rgba(22, 130, 159, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9375rem;
}

.testimonial-author-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--bg-card);
}

.faq-list {
  max-width: 800px;
  margin: var(--space-3xl) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(22, 130, 159, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-xl);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  background: var(--bg-surface);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(17, 42, 58, 0.8);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-xl);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  text-align: center;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 130, 159, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: var(--space-lg);
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--bg-glass-border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-top: var(--space-lg);
  line-height: 1.7;
  max-width: 320px;
}

.footer-brand img {
  height: 56px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer-brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.footer-brand-location {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: 1px solid var(--bg-glass-border);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
}

.footer-social a:hover svg {
  fill: white;
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--bg-glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================
   WHATSAPP FLOATING BUTTON + TOOLTIP
   ============================================ */
.wa-float-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
}

.wa-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: wa-bounce 3s infinite ease-in-out;
  position: relative;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.wa-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: white;
  color: #1a1a1a;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 20px;
  border: 6px solid transparent;
  border-top-color: white;
}

.wa-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================
   SCROLL REVEAL (IntersectionObserver)
   ============================================ */
.js-enabled .reveal,
.js-enabled .sindicato-card,
.js-enabled .destination-card,
.js-enabled .process-step,
.js-enabled .why-card,
.js-enabled .testimonial-card,
.js-enabled .faq-item,
.js-enabled .trust-logo {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.8s;
  will-change: transform, opacity;
}

.js-enabled .reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.js-enabled .reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.js-enabled .is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(0, 0) !important;
}

/* Stagger delays for better UX */
.js-enabled .sindicato-card:nth-child(2),
.js-enabled .destination-card:nth-child(2),
.js-enabled .process-step:nth-child(2),
.js-enabled .why-card:nth-child(2) { transition-delay: 0.15s; }

.js-enabled .sindicato-card:nth-child(3),
.js-enabled .destination-card:nth-child(3),
.js-enabled .process-step:nth-child(3),
.js-enabled .why-card:nth-child(3) { transition-delay: 0.3s; }

.js-enabled .why-card:nth-child(4) { transition-delay: 0.45s; }

.js-enabled .trust-logo:nth-child(2) { transition-delay: 0.1s; }
.js-enabled .trust-logo:nth-child(3) { transition-delay: 0.2s; }
.js-enabled .trust-logo:nth-child(4) { transition-delay: 0.3s; }
.js-enabled .trust-logo:nth-child(5) { transition-delay: 0.4s; }

/* ============================================
   MOBILE STICKY CTA (Pro Max Sales)
   ============================================ */
.mobile-sticky-cta {
  display: none; /* Hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 39, 53, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 99;
  align-items: center;
  justify-content: space-between;
}

.sticky-price-info {
  display: flex;
  flex-direction: column;
}

.sticky-price-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sticky-price-info strong {
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
}

.mobile-sticky-cta .btn {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 50px;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .sindicatos-grid,
  .destinations-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid::before {
    left: 10%;
    right: 10%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .hero-stats {
    gap: var(--space-2xl);
  }

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

  .trust-logos {
    gap: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 28, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-xl) var(--space-lg);
    border-bottom: 1px solid var(--bg-glass-border);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .navbar-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sindicatos-grid,
  .destinations-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .process-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .destination-card-img {
    height: 220px;
  }

  .trust-logos {
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
  }

  .urgency-ticker-inner {
    font-size: 0.75rem;
  }

  h1 { font-size: clamp(2rem, 7vw, 2.75rem); }
  h2 { font-size: clamp(1.75rem, 5vw, 2.25rem); }
}

/* Small mobile */
@media (max-width: 380px) {
  .container {
    padding: 0 var(--space-md);
  }

  .btn-lg {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

  .particle {
    display: none;
  }

  .wa-float {
    animation: none;
  }

  .urgency-ticker-inner {
    animation: none;
  }

  .btn-shimmer::after {
    animation: none;
  }
}
