/* ========================================
   CONNECTINC — Landing Page Styles
   Dark Navy / Teal Theme
   Premium Disruptive Animations
   ======================================== */

/* ===== RESET & VARIABLES ===== */
:root {
  /* Dark Theme Colors */
  --bg-primary: #080c18;
  --bg-secondary: #0b1022;
  --bg-card: rgba(14, 20, 42, 0.85);
  --bg-card-hover: rgba(20, 28, 56, 0.9);

  /* Section Accent Colors */
  --teal: #00D4AA;
  --teal-light: rgba(0, 212, 170, 0.08);
  --teal-lighter: rgba(0, 212, 170, 0.14);
  --teal-soft: rgba(0, 212, 170, 0.06);
  --teal-border: rgba(0, 212, 170, 0.2);
  --teal-glow: rgba(0, 212, 170, 0.3);

  --cyan: #06B6D4;
  --cyan-light: rgba(6, 182, 212, 0.08);
  --cyan-lighter: rgba(6, 182, 212, 0.14);
  --cyan-soft: rgba(6, 182, 212, 0.06);
  --cyan-border: rgba(6, 182, 212, 0.2);

  --blue: #3B82F6;
  --blue-light: rgba(59, 130, 246, 0.08);
  --blue-lighter: rgba(59, 130, 246, 0.14);
  --blue-soft: rgba(59, 130, 246, 0.06);
  --blue-border: rgba(59, 130, 246, 0.2);

  --red: #F87171;
  --red-light: rgba(248, 113, 113, 0.08);
  --red-lighter: rgba(248, 113, 113, 0.14);
  --red-soft: rgba(248, 113, 113, 0.06);
  --red-border: rgba(248, 113, 113, 0.2);

  --green: #34D399;
  --green-light: rgba(52, 211, 153, 0.08);
  --green-lighter: rgba(52, 211, 153, 0.14);
  --green-soft: rgba(52, 211, 153, 0.06);
  --green-border: rgba(52, 211, 153, 0.2);

  --purple: #A78BFA;
  --purple-light: rgba(167, 139, 250, 0.08);
  --purple-lighter: rgba(167, 139, 250, 0.14);
  --purple-soft: rgba(167, 139, 250, 0.06);
  --purple-border: rgba(167, 139, 250, 0.2);

  /* Legacy orange (used sparingly) */
  --orange: #FB923C;
  --orange-light: rgba(251, 146, 60, 0.08);
  --orange-lighter: rgba(251, 146, 60, 0.14);
  --orange-soft: rgba(251, 146, 60, 0.06);
  --orange-border: rgba(251, 146, 60, 0.2);
  --orange-glow: rgba(251, 146, 60, 0.3);

  /* KPI Colors */
  --positive: #34D399;
  --negative: #F87171;
  --positive-bg: rgba(52, 211, 153, 0.1);
  --negative-bg: rgba(248, 113, 113, 0.1);
  --positive-border: rgba(52, 211, 153, 0.25);
  --negative-border: rgba(248, 113, 113, 0.25);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00D4AA, #06B6D4);
  --gradient-blue: linear-gradient(135deg, #3B82F6, #06B6D4);
  --gradient-red: linear-gradient(135deg, #F87171, #FB923C);
  --gradient-green: linear-gradient(135deg, #34D399, #06B6D4);
  --gradient-purple: linear-gradient(135deg, #A78BFA, #06B6D4);
  --gradient-orange: linear-gradient(135deg, #FB923C, #F59E0B);

  /* Text */
  --text-primary: #F1F5F9;
  --text-secondary: rgba(203, 213, 225, 0.8);
  --text-muted: rgba(148, 163, 184, 0.6);
  --text-white: #ffffff;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

.cursor-glow.active {
  opacity: 1;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 10000;
  width: 0%;
  transition: width 0.05s linear;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-medium);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(8, 12, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 2px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta-btn {
  color: var(--text-white) !important;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--teal-glow);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  overflow: hidden;
  z-index: 1;
  gap: 60px;
}

/* Video Background — dark overlay */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg,
      rgba(8, 12, 24, 0.82) 0%,
      rgba(8, 12, 24, 0.78) 40%,
      rgba(8, 12, 24, 0.82) 70%,
      rgba(8, 12, 24, 0.95) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  text-align: left;
  flex-shrink: 0;
}

.hero-tag-wrapper {
  margin-bottom: 20px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--teal);
  padding: 8px 20px;
  border: 2px solid var(--teal-border);
  border-radius: 50px;
  background: var(--teal-soft);
  text-transform: uppercase;
  animation: tag-pulse 3s ease-in-out infinite;
}

@keyframes tag-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(0, 212, 170, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.hero-title-accent {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shimmer text effect */
.text-shimmer {
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(0.72rem, 1.1vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== THANIA VISUAL ECOSYSTEM ===== */
.thania-visual-ecosystem {
  position: relative;
  width: 340px;
  height: 340px;
  z-index: 3;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.thania-core {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.core-inner {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 2px solid var(--teal-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--teal-glow), inset 0 0 20px rgba(0, 212, 170, 0.2);
  backdrop-filter: blur(10px);
  z-index: 2;
  animation: core-pulse 4s ease-in-out infinite;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s;
}

.core-inner:active {
  transform: scale(0.95);
}

.core-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 1px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.core-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--teal-border);
  z-index: 1;
}

.core-ring-1 { width: 170px; height: 170px; border-style: dashed; animation: spin-slow 20s linear infinite; }
.core-ring-2 { width: 240px; height: 240px; opacity: 0.4; border-color: var(--blue-border); }
.core-ring-3 { width: 330px; height: 330px; opacity: 0.15; border-color: var(--purple-border); border-style: dotted; animation: spin-slow-reverse 30s linear infinite; }

.thania-gem {
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 1.4rem;
  backdrop-filter: blur(10px);
  z-index: 3;
  animation: float-gem 5s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.3s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.gem-label {
  font-family: var(--font-heading);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.gem-icon-svg {
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gem-icon-svg svg {
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.thania-gem:hover {
  transform: scale(1.15) !important;
  z-index: 10;
}

.thania-gem:active {
  transform: scale(0.95) !important;
}

.thania-gem.gem-clicked .gem-glow {
  animation: click-pulse 0.4s ease-out;
}

@keyframes click-pulse {
  0% { transform: scale(1); opacity: 0.8; filter: brightness(1); }
  50% { transform: scale(1.8); opacity: 1; filter: brightness(1.5); }
  100% { transform: scale(1); opacity: 0.7; filter: brightness(1); }
}

.gem-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0; left: 0;
  z-index: -1;
  filter: blur(12px);
  opacity: 0.7;
  animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 0.9; transform: scale(1.1); }
}

/* Pentagon layout for 5 gems */
.gem-fb { top: -10px; left: 50%; transform: translateX(-50%); animation-delay: 0s; border-color: var(--blue-border); }
.gem-fb .gem-glow { background: var(--blue); }

.gem-insta { top: 30%; right: -15px; animation-delay: 0.9s; border-color: var(--purple-border); }
.gem-insta .gem-glow { background: var(--purple); }

.gem-web { bottom: 5%; right: 15%; animation-delay: 1.8s; border-color: var(--green-border); }
.gem-web .gem-glow { background: var(--green); }

.gem-sistema { bottom: 5%; left: 15%; animation-delay: 2.7s; border-color: var(--cyan-border); }
.gem-sistema .gem-glow { background: var(--cyan); }

.gem-contenido { top: 30%; left: -15px; animation-delay: 3.6s; border-color: var(--orange-border); }
.gem-contenido .gem-glow { background: var(--orange); }

@keyframes core-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px var(--teal-glow), inset 0 0 20px rgba(0, 212, 170, 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 0 60px var(--teal-glow), inset 0 0 35px rgba(0, 212, 170, 0.4); }
}

@keyframes spin-slow { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spin-slow-reverse { 100% { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes float-gem { 
  0%, 100% { margin-top: 0; }
  50% { margin-top: -10px; }
}

/* ===== CTA BUTTON ===== */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 60px;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.cta-hero {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  box-shadow: 0 8px 40px rgba(0, 212, 170, 0.25);
}

.cta-hero:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 212, 170, 0.35);
}

.cta-hero:active {
  transform: translateY(-1px) scale(0.99);
}

/* CTA Shine Animation */
.cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: cta-shine-sweep 3s ease-in-out infinite;
}

@keyframes cta-shine-sweep {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

.cta-icon {
  font-size: 1.3rem;
}

.cta-arrow {
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.cta-button:hover .cta-arrow {
  transform: translateX(6px);
}

.cta-price-original {
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 500;
  font-size: 0.9em;
}

.cta-large {
  padding: 22px 52px;
  font-size: 1.15rem;
}

/* ===== HERO BADGES ===== */
.hero-badges {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: rgba(14, 20, 42, 0.7);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.badge-glow:hover {
  background: var(--teal-soft);
  border-color: var(--teal-border);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.15);
}

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

/* ===== FLOATING ANIMATION ===== */
.floating {
  animation: float 6s ease-in-out infinite;
}

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

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
  z-index: 3;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--teal);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

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

/* ===== WAVE DIVIDERS ===== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.wave-hero-to-negocios { color: #0a1220; }
.wave-negocios-to-kpis { color: #0c1228; }
.wave-kpis-to-diagnostico { color: #100c16; }
.wave-diagnostico-to-arbitraje { color: #081218; }
.wave-arbitraje-to-nodos { color: #0c0e1e; }
.wave-nodos-to-cierre { color: #0e1020; }

/* ===== SECTIONS COMMON ===== */
.section {
  position: relative;
  padding: var(--section-padding);
  z-index: 1;
}

.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.section-layout-reverse {
  grid-template-columns: 1.2fr 0.8fr;
}

.section-layout-reverse .section-visual {
  order: -1;
}

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

.section-layout .section-header {
  text-align: left;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Section tag color variants */
.section-tag-teal {
  color: var(--teal);
  border: 1px solid var(--teal-border);
  background: var(--teal-soft);
}

.section-tag-orange {
  color: var(--orange);
  border: 1px solid var(--orange-border);
  background: var(--orange-soft);
}

.section-tag-blue {
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
  background: var(--cyan-soft);
}

.section-tag-red {
  color: var(--red);
  border: 1px solid var(--red-border);
  background: var(--red-soft);
}

.section-tag-green {
  color: var(--green);
  border: 1px solid var(--green-border);
  background: var(--green-soft);
}

.section-tag-purple {
  color: var(--purple);
  border: 1px solid var(--purple-border);
  background: var(--purple-soft);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

/* Title accent color variants */
.title-accent-teal {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent-orange {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent-blue {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent-red {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent-green {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent-purple {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Mockups */
.section-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-mockup {
  max-width: 100%;
  width: 420px;
  height: auto;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}

.section-visual-center {
  margin-top: 60px;
  text-align: center;
}

.section-mockup-wide {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}

/* ===== Mockups de plataformas (web / Facebook / Instagram) ===== */
.section-visual-stack {
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.platform-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 440px;
}

.platform-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* Web ocupa toda la fila superior */
.platform-web { grid-column: 1 / -1; }

.pf-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.pf-tag-fb { color: var(--blue); background: var(--blue-soft); border-color: var(--blue-border); }
.pf-tag-ig { color: var(--purple); background: var(--purple-soft); border-color: var(--purple-border); }

/* Browser frame */
.pf-browser {
  border-radius: 12px;
  overflow: hidden;
  background: #0e1428;
  border: 1px solid var(--border-subtle);
}
.pf-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: #131a30;
}
.pf-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.pf-dot-r { background: #ff5f57; }
.pf-dot-y { background: #febc2e; }
.pf-dot-g { background: #28c840; }
.pf-url {
  margin-left: 8px;
  font-size: 0.62rem;
  color: var(--text-secondary);
  background: #0a0f20;
  border-radius: 6px;
  padding: 3px 10px;
  flex: 1;
}
.pf-web-body { padding: 12px; }
.pf-web-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.pf-web-logo {
  width: 44px; height: 12px; border-radius: 4px;
  background: var(--gradient-primary);
}
.pf-web-links { display: flex; gap: 6px; }
.pf-web-links i { width: 20px; height: 6px; border-radius: 3px; background: rgba(203,213,225,0.25); }
.pf-web-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 12px 20px;
  border-radius: 10px;
  background: radial-gradient(120% 120% at 100% 0%, rgba(0,212,170,0.18), transparent 60%), #0a1020;
}
.pf-web-h1 { width: 70%; height: 12px; border-radius: 4px; background: rgba(241,245,249,0.85); }
.pf-web-h2 { width: 50%; height: 8px; border-radius: 4px; background: rgba(203,213,225,0.4); }
.pf-web-btn {
  margin-top: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--bg-primary);
  background: var(--gradient-primary);
  border-radius: 999px;
  padding: 5px 14px;
}

/* Cards FB / IG */
.pf-card {
  border-radius: 12px;
  overflow: hidden;
  background: #0e1428;
  border: 1px solid var(--border-subtle);
}

/* Facebook */
.pf-fb-cover { height: 44px; background: linear-gradient(135deg, #1877F2, #4293ff); }
.pf-fb-head { display: flex; align-items: center; gap: 8px; padding: 0 10px; margin-top: -16px; }
.pf-fb-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gradient-primary);
  border: 2px solid #0e1428;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; color: var(--bg-primary);
}
.pf-fb-meta { display: flex; flex-direction: column; margin-top: 14px; }
.pf-fb-name { font-size: 0.72rem; font-weight: 700; color: var(--text-primary); }
.pf-fb-sub { font-size: 0.56rem; color: var(--text-secondary); }
.pf-fb-actions { display: flex; gap: 5px; padding: 10px; }
.pf-fb-btn {
  font-size: 0.55rem; font-weight: 600; color: var(--text-secondary);
  background: rgba(203,213,225,0.1); border-radius: 6px; padding: 4px 8px;
}
.pf-fb-btn-primary { color: #fff; background: #1877F2; }
.pf-fb-post { display: flex; flex-direction: column; gap: 5px; padding: 0 10px 12px; }
.pf-fb-post span { height: 6px; border-radius: 3px; background: rgba(203,213,225,0.18); }
.pf-fb-post span:last-child { width: 65%; }

/* Instagram */
.pf-ig-head { display: flex; align-items: center; gap: 12px; padding: 12px 10px 8px; }
.pf-ig-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: conic-gradient(from 40deg, #fdf497, #fd5949, #d6249f, #285AEB, #fdf497);
  flex-shrink: 0;
}
.pf-ig-stats { display: flex; gap: 10px; }
.pf-ig-stats span { display: flex; flex-direction: column; font-size: 0.52rem; color: var(--text-secondary); }
.pf-ig-stats b { font-size: 0.72rem; color: var(--text-primary); }
.pf-ig-bio { display: flex; flex-direction: column; padding: 0 10px 10px; }
.pf-ig-name { font-size: 0.66rem; font-weight: 700; color: var(--text-primary); }
.pf-ig-desc { font-size: 0.56rem; color: var(--text-secondary); }
.pf-ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.pf-ig-grid span { padding-top: 100%; }
.pf-ig-grid span:nth-child(1) { background: linear-gradient(135deg, #00D4AA, #06B6D4); }
.pf-ig-grid span:nth-child(2) { background: linear-gradient(135deg, #A78BFA, #d6249f); }
.pf-ig-grid span:nth-child(3) { background: linear-gradient(135deg, #FB923C, #fd5949); }
.pf-ig-grid span:nth-child(4) { background: linear-gradient(135deg, #3B82F6, #285AEB); }
.pf-ig-grid span:nth-child(5) { background: linear-gradient(135deg, #34D399, #00D4AA); }
.pf-ig-grid span:nth-child(6) { background: linear-gradient(135deg, #f472b6, #A78BFA); }

@media (max-width: 640px) {
  .platform-showcase { max-width: 340px; margin: 0 auto; }
}

/* ===== SECCIÓN: NEGOCIOS IDEALES (TEAL) ===== */
.section-negocios {
  background: #0a1220;
  padding-bottom: 80px;
  overflow: hidden;
}

.section-negocios .section-header {
  margin-bottom: 48px;
}

/* Marquee */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-track-right {
  animation: marquee-scroll-right 30s linear infinite;
}

.marquee-track-left {
  animation: marquee-scroll-left 30s linear infinite;
}

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

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

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

.marquee-content {
  display: flex;
  gap: 20px;
  padding: 0 10px;
  flex-shrink: 0;
}

.negocio-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 60px;
  white-space: nowrap;
  transition: var(--transition-spring);
  cursor: pointer; /* Updated for modal */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.negocio-card:hover {
  border-color: var(--teal-border);
  background: var(--teal-soft);
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 212, 170, 0.15);
}

.negocio-icon {
  font-size: 1.5rem;
  animation: icon-bounce 3s ease-in-out infinite;
}

.negocio-card:hover .negocio-icon {
  animation: icon-bounce-fast 0.5s ease-in-out;
}

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

@keyframes icon-bounce-fast {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.2); }
}

.negocio-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.negocio-card:hover .negocio-name {
  color: var(--teal);
}

/* ===== SECCIÓN 2: KPIs (CYAN) ===== */
.section-kpis {
  background: #0c1228;
}

.kpis-legend {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.kpi-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.kpi-legend-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
}

.kpi-legend-positive .kpi-legend-icon {
  background: var(--positive-bg);
  color: var(--positive);
  border: 1px solid var(--positive-border);
}

.kpi-legend-negative .kpi-legend-icon {
  background: var(--negative-bg);
  color: var(--negative);
  border: 1px solid var(--negative-border);
}

.kpis-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.kpi-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.kpi-positive {
  border-left: 4px solid var(--positive);
}

.kpi-positive:hover {
  border-color: var(--positive);
  box-shadow: 0 12px 40px rgba(52, 211, 153, 0.1);
}

.kpi-negative {
  border-left: 4px solid var(--negative);
}

.kpi-negative:hover {
  border-color: var(--negative);
  box-shadow: 0 12px 40px rgba(248, 113, 113, 0.1);
}

.kpi-indicator {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 900;
  font-size: 1.2rem;
}

.kpi-indicator-up {
  background: var(--positive-bg);
  color: var(--positive);
  border: 1px solid var(--positive-border);
}

.kpi-indicator-down {
  background: var(--negative-bg);
  color: var(--negative);
  border: 1px solid var(--negative-border);
}

.kpi-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

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

.kpi-card p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== SECCIÓN 3: DIAGNÓSTICO (ROJO) ===== */
.section-diagnostico {
  background: #100c16;
}

.diagnostico-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.diagnostico-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.diagnostico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-red);
  opacity: 0;
  transition: var(--transition-medium);
}

.diagnostico-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(248, 113, 113, 0.08);
}

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

.card-icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.card-icon-red {
  background: var(--red-soft);
  border: 1px solid var(--red-border);
}

.card-icon {
  font-size: 1.4rem;
}

.diagnostico-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.diagnostico-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.diagnostico-card p strong {
  color: var(--red);
  font-weight: 600;
}

/* Stat card */
.diagnostico-card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--red-light);
  border-color: var(--red-border);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.stat-label strong {
  color: var(--red);
}

/* ===== SECCIÓN 4: ARBITRAJE (VERDE/TEAL) ===== */
.section-arbitraje {
  background: #081218;
}

.section-arbitraje .section-header {
  text-align: center;
}

.arbitraje-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.arbitraje-intro strong {
  color: var(--green);
  font-weight: 600;
}

.pricing-comparison {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.pricing-comparison::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-green);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  position: relative;
}

.price-old {
  opacity: 0.55;
}

.price-old .price-label,
.price-old .price-value {
  position: relative;
}

.strikethrough-animated {
  position: relative;
  display: inline-block;
}

.strikethrough-animated::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.strikethrough-animated.struck::after {
  width: 100%;
}

.price-label {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.price-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.price-struck {
  color: var(--text-muted);
}

.price-x {
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 700;
  width: 28px;
  text-align: center;
}

.price-check {
  color: var(--green);
  font-size: 1.3rem;
  font-weight: 700;
  width: 28px;
  text-align: center;
}

.price-divider {
  height: 1px;
  background: var(--border-light);
  margin: 12px 0;
}

.price-new {
  opacity: 1;
}

.price-new .price-label {
  color: var(--text-primary);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-new-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--green);
  text-transform: uppercase;
}

.price-highlight {
  font-size: 1.6rem;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price-currency {
  font-size: 0.8rem;
  -webkit-text-fill-color: var(--text-secondary);
}

.price-iva {
  font-size: 0.7rem;
  font-weight: 400;
  -webkit-text-fill-color: var(--text-muted);
}

.price-original-strike {
  text-decoration: line-through;
  -webkit-text-fill-color: var(--red);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.7;
}

.savings-banner {
  margin-top: 24px;
  padding: 16px 24px;
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.savings-banner strong {
  color: var(--green);
}

.savings-icon {
  margin-right: 8px;
}

/* ===== SECCIÓN 5: NODOS DE PODER (PURPLE/TEAL) ===== */
.section-nodos {
  background: #0c0e1e;
}

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

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

.nodo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px 36px 40px;
  text-align: center;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.nodo-card-purple:hover {
  background: var(--purple-lighter);
  border-color: var(--purple-border);
  box-shadow: 0 20px 60px rgba(167, 139, 250, 0.12);
  transform: translateY(-8px);
}

.nodo-card.dimmed-focus {
  opacity: 0.3;
  transform: scale(0.95);
  filter: grayscale(80%);
  pointer-events: none;
}

.nodo-card.active-focus {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 20px 60px rgba(167, 139, 250, 0.4);
  border-color: var(--purple);
  z-index: 10;
}

.nodo-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(167, 139, 250, 0.08);
  line-height: 1;
}

.nodo-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nodo-icon {
  font-size: 2.2rem;
  position: relative;
  z-index: 1;
}

.nodo-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: rotate-ring 8s linear infinite;
}

.nodo-ring-purple {
  border: 2px solid rgba(167, 139, 250, 0.25);
}

.nodo-ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.nodo-ring-purple::before {
  background: var(--purple);
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nodo-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.nodo-subtitle {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.nodo-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.nodo-description strong {
  color: var(--text-primary);
  font-weight: 600;
}

.nodo-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.nodo-feature {
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 50px;
}

.nodo-feature-purple {
  background: var(--purple-soft);
  border: 1px solid var(--purple-border);
  color: var(--purple);
}

/* ===== SECCIÓN 6: CIERRE (TEAL) ===== */
.section-cierre {
  background: #0e1020;
  text-align: center;
  padding: 140px 0;
}

.cierre-content {
  max-width: 700px;
  margin: 0 auto;
}

.cierre-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
  color: var(--text-primary);
}

.cierre-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Persuasive Banner */
.persuasive-banner {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.06), rgba(0, 212, 170, 0.06));
  border: 1px solid rgba(251, 146, 60, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.persuasive-banner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-orange);
}

.persuasive-question {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.persuasive-offer {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.discount-counter-wrapper {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 6px;
  position: relative;
}

.discount-counter-wrapper::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: 2px;
  opacity: 0.5;
}

.persuasive-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.persuasive-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(0, 212, 170, 0.06);
  border: 1px solid var(--teal-border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  transition: var(--transition-fast);
  animation: badge-shine 4s ease-in-out infinite;
}

.persuasive-badge:nth-child(2) {
  animation-delay: 2s;
}

@keyframes badge-shine {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.1); }
  50% { box-shadow: 0 0 20px 4px rgba(0, 212, 170, 0.12); }
}

.persuasive-badge-icon {
  font-size: 1.1rem;
}

.cierre-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.cierre-price-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.cierre-price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cierre-price-amount small {
  font-size: 1.2rem;
  -webkit-text-fill-color: var(--text-secondary);
}

.cierre-price-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cierre-price-original {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: line-through;
  opacity: 0.6;
}

.cierre-guarantee {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

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

/* ===== FOOTER ===== */
.footer {
  background: #060a14;
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

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

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

.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links-group h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

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

.footer-links-group a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.footer-social-icon {
  display: flex;
  align-items: center;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== PREMIUM REVEAL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }
.stagger-6 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section-layout,
  .section-layout-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-layout-reverse .section-visual {
    order: 0;
  }

  .section-layout .section-header {
    text-align: center;
  }

  .diagnostico-grid {
    max-width: 600px;
    margin: 0 auto;
  }

  .nodos-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
    max-width: 700px;
  }

  .hero-badges {
    justify-content: center;
  }

  .thania-visual-ecosystem {
    order: -1;
    transform: scale(0.9);
    margin-bottom: 10px;
  }

  .kpis-legend {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  /* Mobile Navbar */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: rgba(8, 12, 24, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: var(--transition-medium);
    border-left: 1px solid var(--border-subtle);
    z-index: 1001;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 18px 20px;
    font-size: 1.15rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-cta-btn {
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero mobile */
  .hero {
    padding: 100px 20px 80px;
    min-height: 100vh;
    min-height: 100dvh;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

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

  .hero-video-overlay {
    background:
      linear-gradient(180deg,
        rgba(8, 12, 24, 0.80) 0%,
        rgba(8, 12, 24, 0.75) 30%,
        rgba(8, 12, 24, 0.80) 60%,
        rgba(8, 12, 24, 0.92) 100%
      );
  }

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

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }

  .thania-visual-ecosystem {
    transform: scale(0.85);
    margin-top: 10px;
    margin-bottom: 20px;
  }

  /* Negocios section mobile */
  .section-negocios {
    padding-bottom: 60px;
  }

  .negocio-card {
    padding: 16px 24px;
  }

  .negocio-icon {
    font-size: 1.3rem;
  }

  .negocio-name {
    font-size: 0.85rem;
  }

  .marquee-track-right {
    animation-duration: 22s;
  }

  .marquee-track-left {
    animation-duration: 22s;
  }

  /* Persuasive banner mobile */
  .persuasive-banner {
    padding: 28px 20px;
    margin-bottom: 32px;
  }

  .persuasive-question {
    font-size: 1.15rem;
  }

  .persuasive-offer {
    font-size: 1rem;
  }

  .discount-counter-wrapper {
    font-size: 1.8rem;
  }

  .persuasive-badges {
    flex-direction: column;
    align-items: center;
  }

  .persuasive-badge {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  .cta-button {
    padding: 16px 28px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .cta-large {
    padding: 18px 32px;
    font-size: 1rem;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .badge {
    width: 100%;
    justify-content: center;
  }

  .scroll-indicator {
    display: none;
  }

  /* Sections mobile */
  .section-container {
    padding: 0 20px;
  }

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

  .section-tag {
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 5px 12px;
  }

  /* Pricing mobile */
  .pricing-comparison {
    padding: 28px 18px;
    border-radius: var(--radius-lg);
  }

  .price-row {
    flex-wrap: wrap;
    gap: 4px;
    padding: 14px 0;
  }

  .price-label {
    flex-basis: 100%;
    font-size: 0.82rem;
  }

  .price-value {
    font-size: 0.85rem;
  }

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

  .price-x, .price-check {
    width: 24px;
    font-size: 1rem;
  }

  .savings-banner {
    font-size: 0.85rem;
    padding: 14px 16px;
  }

  /* Nodos mobile */
  .nodo-card {
    padding: 36px 24px 32px;
  }

  .nodo-number {
    font-size: 2.5rem;
  }

  .nodo-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .nodo-features {
    gap: 6px;
  }


  /* KPIs mobile */
  .kpis-legend {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .kpi-card {
    padding: 20px 16px;
    gap: 12px;
  }

  .kpi-indicator {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .kpi-title {
    font-size: 1rem;
  }

  .kpi-card p {
    font-size: 0.85rem;
  }

  /* Cierre mobile */
  .cierre-price-amount {
    font-size: 2.5rem;
  }

  .section-cierre {
    padding: 100px 0;
  }

  .cierre-text {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .cierre-guarantee {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.8rem;
  }

  /* Footer mobile */
  .footer-top {
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links-group ul {
    align-items: center;
  }

  /* Mockups mobile */
  .section-mockup {
    width: 300px;
  }

  .section-mockup-wide {
    max-width: 100%;
  }

  /* ===== INFINITE CANVAS: Hide wave dividers on mobile ===== */
  .wave-divider {
    display: none;
  }

  /* ===== INFINITE CANVAS: Seamless section backgrounds ===== */
  .section-kpis {
    background: linear-gradient(
      to bottom,
      #0c1228 0%,
      #0d1230 100%
    );
    box-shadow: inset 4px 0 60px -20px rgba(6, 182, 212, 0.08);
  }

  .section-diagnostico {
    background: linear-gradient(
      to bottom,
      #100c16 0%,
      #130c14 100%
    );
    box-shadow: inset 4px 0 60px -20px rgba(248, 113, 113, 0.08);
  }

  .section-arbitraje {
    background: linear-gradient(
      to bottom,
      #081a14 0%,
      #091c18 100%
    );
    box-shadow: inset 4px 0 60px -20px rgba(52, 211, 153, 0.08);
  }

  .section-nodos {
    background: linear-gradient(
      to bottom,
      #0c0e20 0%,
      #0e0c24 100%
    );
    box-shadow: inset 4px 0 60px -20px rgba(167, 139, 250, 0.1);
  }

  .section-cierre {
    background: linear-gradient(
      to bottom,
      #0e1020 0%,
      #0a1020 100%
    );
    box-shadow: inset 4px 0 60px -20px rgba(0, 212, 170, 0.1);
  }

  /* ===== INFINITE CANVAS: Sticky section titles ===== */
  .section-title {
    position: sticky;
    top: 68px;
    z-index: 10;
    padding: 12px 0 8px;
    background: inherit;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    margin-bottom: 8px;
  }

  /* ===== INFINITE CANVAS: Section tag mobile boost ===== */
  .section-tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    padding: 7px 16px;
    animation: tag-pulse 3s ease-in-out infinite;
  }

  /* ===== INFINITE CANVAS: Potenciar animaciones de entrada ===== */
  .reveal-up {
    transform: translateY(50px);
    transition:
      opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
      transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .reveal-left,
  .reveal-right {
    transition:
      opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
      transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  /* ===== INFINITE CANVAS: Cards más expresivas ===== */
  .kpi-card,
  .diagnostico-card,
  .nodo-card {
    border-left-width: 2px;
    border-left-style: solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .kpi-positive { border-left-color: var(--positive); }
  .kpi-negative { border-left-color: var(--negative); }
  .diagnostico-card { border-left-color: var(--red); }
  .nodo-card-purple { border-left-color: var(--purple); }

  /* Hide cursor glow on mobile */
  .cursor-glow {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

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

  .stat-number {
    font-size: 3.5rem;
  }

  .diagnostico-card {
    padding: 24px 18px;
  }

  .diagnostico-card h3 {
    font-size: 1.1rem;
  }

  .diagnostico-card p {
    font-size: 0.88rem;
  }

  .cta-button {
    padding: 14px 20px;
    font-size: 0.88rem;
    gap: 8px;
  }

  .cta-large {
    padding: 16px 24px;
    font-size: 0.92rem;
  }

  .nav-logo-text {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
  }

  .nav-logo-img {
    height: 34px;
    width: auto;
  }

  .pricing-comparison {
    padding: 22px 14px;
  }

  .price-label {
    font-size: 0.78rem;
  }

  .price-new-tag {
    font-size: 0.6rem;
  }

  .thania-visual-ecosystem {
    transform: scale(0.75);
  }

  .section-mockup {
    width: 250px;
  }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: var(--transition-spring);
  text-decoration: none;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ===== MODAL DE NEGOCIOS ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 12, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #0d1428;
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 170, 0.1);
  transform: scale(0.95) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  color: var(--red);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 50%;
  border: 1px solid var(--teal-border);
}

.modal-icon {
  font-size: 2rem;
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.modal-icon-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--teal);
  filter: blur(15px);
  opacity: 0.3;
  z-index: 1;
  animation: pulse-glow 3s ease-in-out infinite alternate;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.modal-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
}

.modal-benefits-divider {
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.modal-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-benefits-list li {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.modal-benefits-list li::before {
  content: '✦';
  color: var(--teal);
  font-size: 1.1rem;
  line-height: 1.2;
}

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

.modal-cta {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1rem;
}

@media (max-width: 480px) {
  .modal-container {
    padding: 32px 24px;
  }
  
  .modal-title {
    font-size: 1.4rem;
  }
  
  .modal-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  
  .modal-icon {
    font-size: 1.6rem;
  }
  
  .modal-description {
    font-size: 0.95rem;
  }
  
  .modal-benefits-list li {
    font-size: 0.9rem;
  }
}
