/* CSS Variables & Theme Configuration (Sky Light Theme) */
:root {
  /* Color Palette - Fresh Sky & Cloud Theme */
  --bg-dark: #f0f7fd; /* Soft Alice Blue / Light Sky */
  --bg-card: #ffffff; /* Cloud White */
  --bg-card-hover: #f8fafc; /* Soft slate white */
  --primary: #0b1f3f; /* Deep Navy Blue */
  --primary-light: #2563eb; /* Bright Royal Blue */
  --accent: #f97316; /* Sunset Orange */
  --accent-glow: rgba(249, 115, 22, 0.25);
  --accent-light: #fb923c;
  --text-light: #1e293b; /* Dark Slate for high contrast readability */
  --text-dark: #ffffff; /* White for dark sections */
  --text-muted: #64748b; /* Cool Gray */
  --success: #10b981;
  --success-bg: #ecfdf5;
  --error: #ef4444;
  --error-bg: #fef2f2;
  
  /* Layout & Spacing */
  --header-height: 56px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow: 0 10px 35px rgba(37, 99, 235, 0.06); /* Soft blue-tinted shadow */
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

h1, h2, h3, h4, .logo-text {
  font-family: 'Outfit', sans-serif;
}

strong {
  color: var(--primary);
  font-weight: 700;
}

/* Reusable Components */
.section-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 55px 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-light);
  color: var(--primary-light);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.05);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn-block {
  width: 100%;
  padding: 14px;
}

/* Header & Navigation (Light Transparent) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(240, 247, 253, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
  height: 52px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  max-width: 1140px;
  height: 100%;
  margin: 0 auto;
  padding: 0 12px;
}

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

.logo-img {
  height: 34px;
  width: 34px;
  object-fit: contain;
  margin-right: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.logo-hide-mobile {
  display: none;
}

.logo-accent {
  color: var(--accent);
}

/* Botón hamburguesa — solo móvil */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  gap: 0;
  padding: 12px 16px 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  overflow-y: auto;
}

body.nav-open .nav-menu {
  display: flex;
}

.nav-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

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

.nav-link::after {
  display: none;
}

.header-actions {
  flex-shrink: 0;
}

.btn-header-cta {
  padding: 8px 10px;
  min-width: 40px;
}

.btn-header-label {
  display: none;
}

.icon-ws {
  width: 18px;
  height: 18px;
}

/* Hero Section (Video Background 100vh with soft gradient) */
.hero-section {
  position: relative;
  height: 100svh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: var(--header-height);
  padding-bottom: 16px;
  text-align: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.58) contrast(1.05) saturate(1.08);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(8, 12, 20, 0.82) 0%,
    rgba(8, 12, 20, 0.08) 42%,
    rgba(8, 12, 20, 0.22) 100%
  );
  z-index: 2;
}

.hero-content-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 850px;
  padding: 0 14px;
  margin-top: 0;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.accent-text {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(249, 115, 22, 0.3);
}

.hero-subtitle {
  font-size: 0.78rem;
  color: #ffffff;
  opacity: 0.92;
  max-width: 320px;
  margin: 0 auto 14px auto;
  line-height: 1.45;
}

.hero-subtitle strong {
  color: #fff;
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}

.hero-section .btn-lg {
  padding: 10px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.2px;
  flex: 1;
  max-width: 168px;
}

.hero-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  border-width: 1.5px;
}

.hero-section .btn-outline:hover {
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.1);
  color: #fff;
}

.icon-arrow {
  width: 13px;
  height: 13px;
  transition: var(--transition);
}

.btn-primary:hover .icon-arrow {
  transform: translateX(5px);
}

/* Quick Stats Bar (Light Floating Glass) */
.quick-stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
}

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

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1.1;
  margin-bottom: 1px;
}

.stat-label {
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: center;
}

.stat-divider {
  display: none;
  width: 1px;
  height: 25px;
  background: rgba(15, 23, 42, 0.08);
  margin: 0 10px;
}

/* Trust Banner */
.trust-banner {
  background: var(--bg-card);
  border-top: 1px solid rgba(37, 99, 235, 0.06);
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
  padding: 14px 0;
  text-align: center;
  position: relative;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.banner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 16px;
}

.trust-text {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

.zone-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.zone-badge {
  background: var(--bg-dark);
  border: 1px solid rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

/* La Experiencia - Editorial Light Layout */
.experience-section {
  background: var(--bg-dark);
}

.experience-section .section-container {
  padding: 36px 10px;
}

.experience-section .section-header {
  margin-bottom: 28px;
}

.experience-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  position: relative;
  padding-left: 28px;
}

/* Línea vertical conectora paso a paso */
.experience-timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--accent) 55%, var(--primary-light) 100%);
  border-radius: 3px;
  opacity: 0.35;
}

.timeline-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: var(--radius-md);
  overflow: visible;
  transition: var(--transition);
  box-shadow: var(--shadow);
  padding: 0;
  align-items: stretch;
  position: relative;
  margin-bottom: 14px;
}

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

/* Flecha conectora entre pasos */
.timeline-row:not(:last-child)::after {
  content: '';
  position: absolute;
  left: -22px;
  bottom: -12px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--primary-light);
  opacity: 0.5;
  z-index: 2;
}

.timeline-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.12);
}

/* Marcador en la línea de tiempo */
.timeline-rail {
  position: absolute;
  left: -28px;
  top: 14px;
  width: 20px;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 0 2px var(--primary-light);
  flex-shrink: 0;
}

.step-dot-accent {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), 0 0 12px var(--accent-glow);
}

.timeline-media {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-dark);
  aspect-ratio: 16 / 10;
}

/* Badge de paso visible sobre la foto */
.step-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  color: #fff;
  background: var(--primary-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  letter-spacing: -0.5px;
}

.step-badge-accent {
  background: var(--accent);
  box-shadow: 0 4px 12px var(--accent-glow);
}

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

.timeline-row:hover .timeline-img {
  transform: scale(1.03);
}

.timeline-content {
  padding: 12px 14px 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  flex: 1;
}

/* Outline oversized number in background (Sky Light outline) */
.step-number-bg {
  position: absolute;
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.8;
  opacity: 0.06;
  right: 8px;
  bottom: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary-light);
  pointer-events: none;
  z-index: 1;
}

.text-accent-bg {
  -webkit-text-stroke: 1.5px var(--accent) !important;
  opacity: 0.08 !important;
}

.step-label {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: 1px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.step-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.step-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  position: relative;
  z-index: 2;
}

/* Enfoque de rostros en Paso 1 */
.timeline-row:nth-child(1) .timeline-img {
  object-position: center top;
}

/* Highlight Action Step */
.highlight-row {
  border: 1.5px solid rgba(249, 115, 22, 0.35);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.08);
  background: linear-gradient(135deg, #ffffff 0%, rgba(249, 115, 22, 0.02) 100%);
}

.highlight-row:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.12);
}

/* Promo Ticket Box */
.promo-box {
  background: linear-gradient(90deg, #ffffff 0%, #f0f7fd 100%);
  border: 1.5px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 800px;
  margin: 40px auto 0 auto;
  box-shadow: var(--shadow);
}

.promo-icon-box {
  background: rgba(249, 115, 22, 0.1);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.promo-gift-icon {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.promo-text-box {
  flex: 1;
}

.promo-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.promo-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Reels Section — tira visual auto-scroll */
.reels-section {
  background: #040810;
  border-top: none;
  border-bottom: none;
  padding: 0;
  overflow: hidden;
}

.reels-marquee {
  width: 100%;
  overflow: hidden;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.reels-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: reels-marquee 52s linear infinite;
  will-change: transform;
}

.reels-track:hover {
  animation-play-state: paused;
}

@keyframes reels-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reel-card {
  width: 210px;
  height: 360px;
  flex-shrink: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.reel-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-video {
  filter: saturate(1.15) contrast(1.05);
}

.reel-photo {
  animation: reel-photo-pan 14s ease-in-out infinite alternate;
  filter: saturate(1.1) contrast(1.05);
}

@keyframes reel-photo-pan {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .reels-track {
    animation: none;
    overflow-x: auto;
    max-width: 100%;
    padding: 0 16px;
    scrollbar-width: none;
  }

  .reels-track::-webkit-scrollbar {
    display: none;
  }

  .reel-photo {
    animation: none;
  }
}

/* Video full-bleed — punta a punta en móvil */
.cinema-video-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #000;
  overflow: hidden;
  line-height: 0;
}

.cinema-video {
  width: 100%;
  height: 72vh;
  min-height: 420px;
  max-height: 820px;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(1.12) contrast(1.04);
}

@media (min-width: 768px) {
  .cinema-video {
    height: 56vh;
    min-height: 360px;
    max-height: 640px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinema-video-section {
    display: none;
  }
}

/* Extras Section */
.extras-section {
  background: var(--bg-dark);
}

.extras-container {
  padding: 36px 10px;
}

.extras-header {
  margin-bottom: 18px;
}

.extras-header .section-title {
  font-size: 1.65rem;
  margin-bottom: 6px;
}

.extras-header .section-description {
  font-size: 0.82rem;
}

.extras-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.extra-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.extra-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.12);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.1);
}

.extra-media {
  position: relative;
  width: 118px;
  flex-shrink: 0;
  background: var(--primary);
  overflow: hidden;
}

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

.extra-card:hover .extra-img {
  transform: scale(1.06);
}

.extra-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  display: inline-block;
  font-size: 0.52rem;
  font-weight: 800;
  color: var(--primary-light);
  background: rgba(255, 255, 255, 0.92);
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  border: none;
  backdrop-filter: blur(4px);
}

.extra-icon {
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 2;
  font-size: 1.1rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.extra-body {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.extra-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 3px;
  line-height: 1.2;
}

.extra-desc {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.highlight-extra {
  border-color: rgba(249, 115, 22, 0.35);
  background: linear-gradient(135deg, #ffffff 0%, rgba(249, 115, 22, 0.03) 100%);
}

.highlight-extra .extra-badge {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.95);
}

.price-disclaimer {
  text-align: center;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.payment-box {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.payment-title {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 0;
}

.payment-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
}

.price-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.4;
}

.price-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.ws-consult-btn {
  width: 100%;
  max-width: 100%;
}

/* Requisitos Section */
.requirements-section {
  background: var(--bg-card);
  border-top: 1px solid rgba(37, 99, 235, 0.05);
  border-bottom: 1px solid rgba(37, 99, 235, 0.05);
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  align-items: center;
}

.req-info-box {
  display: flex;
  flex-direction: column;
}

.req-list {
  list-style: none;
  margin-top: 22px;
}

.req-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-light);
}

.req-bullet {
  color: var(--accent);
  font-weight: 900;
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* Interactive Calculator Card */
.req-calc-card {
  background: var(--bg-dark);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}

.calc-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.calc-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.15);
  outline: none;
}

/* Calculator Result Box */
.calc-result-box {
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid #cbd5e1;
  text-align: center;
  margin-top: 15px;
  animation: slideIn 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.result-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

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

.result-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.result-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.result-cta-wrapper {
  margin-top: 10px;
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-dark);
  padding-bottom: 40px;
}

/* Compact Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--primary);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 30, 60, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-zoom-icon {
  font-size: 1.4rem;
  color: #fff;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item:hover .gallery-img,
.gallery-item:focus .gallery-img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-hover-overlay,
.gallery-item:focus .gallery-hover-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-zoom-icon,
.gallery-item:focus .gallery-zoom-icon {
  transform: scale(1);
}

/* Lightbox Styling */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 23, 47, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
  animation: fadeIn 0.25s ease-out;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2010;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 2rem;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

/* FAQs Section */
.faqs-section {
  background: var(--bg-card);
  border-top: 1px solid rgba(37, 99, 235, 0.06);
}

.faqs-accordion {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-dark);
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.15);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px;
  color: var(--primary);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  outline: none;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow);
}

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

.faq-content {
  padding: 0 20px 20px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid rgba(37, 99, 235, 0.05);
}

/* Final CTA Banner */
.final-cta-section {
  position: relative;
  padding: 75px 0;
  text-align: center;
  background: var(--primary);
  overflow: hidden;
}

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.22) 0%, rgba(8, 12, 20, 0.6) 100%);
  z-index: 1;
}

.final-cta-container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-dark);
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-section .btn-primary {
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Footer Section */
.footer-section {
  background: #070e1b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 0 0 0;
  color: #cbd5e1;
}

.footer-section .footer-title {
  color: #ffffff;
}

.footer-section .footer-logo {
  color: #ffffff;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 30px;
}

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

.footer-logo {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.footer-about {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 320px;
}

.social-links {
  display: flex;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
}

.social-link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.icon-social {
  width: 16px;
  height: 16px;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: #94a3b8;
}

.footer-contact-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: #94a3b8;
}

.footer-contact-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-item a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 22px 0;
  background: #040810;
}

.footer-bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 16px;
}

.copyright {
  font-size: 0.75rem;
  color: #64748b;
}

.accreditations {
  font-size: 0.72rem;
  color: #64748b;
}

.accreditations strong {
  color: #94a3b8;
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Floating animation for cloud feel */
.animate-float {
  animation: float 4s ease-in-out infinite;
}

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

.ripple {
  position: relative;
  overflow: hidden;
}

/* Responsive Breakpoints */
@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hero-subtitle {
    font-size: 0.85rem;
    max-width: 380px;
  }

  .hero-section .btn-lg {
    font-size: 0.82rem;
    max-width: 180px;
  }

  .reel-card {
    width: 240px;
    height: 400px;
  }

  .reels-track {
    gap: 12px;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section-container {
    padding: 70px 24px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }

  /* Header desktop */
  .logo-hide-mobile {
    display: inline;
  }

  .logo-img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
  }

  .logo-text {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 24px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    overflow: visible;
  }

  body.nav-open .nav-menu {
    display: flex;
  }

  .nav-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 0;
    border-bottom: none;
  }

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

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

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

  .btn-header-label {
    display: inline;
  }

  .btn-header-cta {
    padding: 8px 18px;
    min-width: auto;
  }

  .icon-ws {
    width: 16px;
    height: 16px;
  }

  .header.scrolled {
    height: 65px;
  }
  
  /* Hero */
  .hero-section {
    height: 100vh;
    align-items: center;
    padding-bottom: 0;
  }

  .hero-video {
    object-position: center center;
    filter: brightness(0.42) contrast(1);
  }

  .hero-overlay {
    background: linear-gradient(0deg, var(--bg-dark) 0%, rgba(8, 12, 20, 0.15) 50%, rgba(8, 12, 20, 0.5) 100%);
  }

  .hero-content-container {
    margin-top: -20px;
    padding: 0 16px;
  }

  .hero-tag {
    font-size: 0.8rem;
    padding: 5px 14px;
    margin-bottom: 20px;
    letter-spacing: 2.5px;
  }
  
  .hero-title {
    font-size: 4.2rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    max-width: 650px;
    margin-bottom: 35px;
    line-height: 1.6;
  }

  .hero-cta-group {
    gap: 14px;
    margin-bottom: 45px;
  }

  .hero-section .btn-lg {
    padding: 14px 30px;
    font-size: 1rem;
    flex: none;
    max-width: none;
  }

  .icon-arrow {
    width: 16px;
    height: 16px;
  }
  
  .quick-stats-bar {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    justify-content: space-around;
    padding: 18px 36px;
    margin-top: 10px;
    border-radius: var(--radius-md);
    max-width: 720px;
  }
  
  .stat-divider {
    display: block;
  }
  
  .stat-num {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.76rem;
  }
  
  /* Editorial Asymmetric Timeline */
  .experience-section .section-container {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .experience-section .section-header {
    margin-bottom: 45px;
  }

  .experience-timeline {
    gap: 40px;
    padding-left: 0;
  }

  .experience-timeline::before {
    display: none;
  }

  .timeline-rail {
    display: none;
  }

  .timeline-row:not(:last-child)::after {
    display: none;
  }
  
  .timeline-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    padding: 0;
    border-radius: var(--radius-lg);
    margin-bottom: 0;
    overflow: hidden;
  }
  
  .timeline-row:nth-child(even) {
    grid-template-columns: 1fr 1.15fr;
  }
  
  .timeline-row:nth-child(even) .timeline-media {
    order: 2;
  }
  
  .timeline-media {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0;
  }

  .step-badge {
    top: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  .timeline-content {
    padding: 36px 40px;
  }
  
  .step-number-bg {
    font-size: 11rem;
    right: 25px;
    bottom: -15px;
    -webkit-text-stroke: 2.5px var(--primary-light);
  }
  
  .step-label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }

  .step-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .step-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Extras */
  .extras-container {
    padding: 70px 24px;
  }

  .extras-header {
    margin-bottom: 28px;
  }

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

  .extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .extra-card {
    flex-direction: column;
  }

  .extra-media {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .extra-body {
    padding: 14px 16px 16px;
  }

  .extra-title {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .extra-desc {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .extra-badge {
    font-size: 0.58rem;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
  }

  .extra-icon {
    font-size: 1.35rem;
    bottom: 10px;
    right: 10px;
  }

  .ws-consult-btn {
    max-width: 360px;
  }
  
  /* Requirements */
  .requirements-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  
  .gallery-item {
    border-radius: var(--radius-sm);
  }
  
  /* Footer */
  .footer-container {
    grid-template-columns: 2fr 1.1fr 1.1fr;
    gap: 50px;
  }
  
  .footer-bottom-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .experience-timeline {
    gap: 50px;
  }
  
  .timeline-content {
    padding: 48px 56px;
  }
  
  .reel-card {
    height: 480px;
  }
}
