/* ========================================
   INDEX STYLES - CreaYVendelo (Moderno + Animaciones)
======================================== */

:root {
  --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #ff5e94 50%, #a855f7 100%);
  --primary-gradient-alt: linear-gradient(135deg, #a855f7 0%, #ff5e94 50%, #ff6b35 100%);
  --primary-color: #ff6b35;
  --secondary-color: #a855f7;
  --accent-color: #ff5e94;
  --text-dark: #1a1a2e;
  --text-muted: #5a5a7a;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-section: #f8f9ff;
  --card-bg: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-sm: 0 2px 10px rgba(26, 26, 46, 0.05);
  --shadow-md: 0 12px 30px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 25px 70px rgba(26, 26, 46, 0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9ff 100%);
  isolation: isolate;
}

/* Fondo con orbes animados */
.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  will-change: transform;
}

.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #ff6b35, transparent 70%);
  top: -220px; right: -120px;
  animation: orbFloat1 18s ease-in-out infinite alternate;
}

.orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
  bottom: -180px; left: -120px;
  animation: orbFloat2 22s ease-in-out infinite alternate;
}

.orb-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #ff5e94, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 16s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 60px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, -40px) scale(1.08); }
}
@keyframes orbFloat3 {
  0%   { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-45%, -55%) scale(1.12); }
}

/* Grid decorativo */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 26, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 46, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  opacity: 0.6;
}

/* Partículas */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-gradient);
  opacity: 0.5;
  animation: particleFloat 14s linear infinite;
}
.hero-particles span:nth-child(1)  { left: 10%; top: 80%; animation-delay: 0s;  animation-duration: 13s; }
.hero-particles span:nth-child(2)  { left: 25%; top: 90%; animation-delay: 2s;  animation-duration: 16s; width: 4px; height: 4px; }
.hero-particles span:nth-child(3)  { left: 40%; top: 85%; animation-delay: 4s;  animation-duration: 15s; width: 8px; height: 8px; }
.hero-particles span:nth-child(4)  { left: 55%; top: 95%; animation-delay: 1s;  animation-duration: 17s; }
.hero-particles span:nth-child(5)  { left: 70%; top: 80%; animation-delay: 3s;  animation-duration: 14s; width: 5px; height: 5px; }
.hero-particles span:nth-child(6)  { left: 85%; top: 90%; animation-delay: 5s;  animation-duration: 18s; width: 6px; height: 6px; }
.hero-particles span:nth-child(7)  { left: 15%; top: 60%; animation-delay: 6s;  animation-duration: 15s; width: 4px; height: 4px; }
.hero-particles span:nth-child(8)  { left: 45%; top: 70%; animation-delay: 2.5s; animation-duration: 16s; }
.hero-particles span:nth-child(9)  { left: 65%; top: 55%; animation-delay: 3.5s; animation-duration: 14s; width: 7px; height: 7px; }
.hero-particles span:nth-child(10) { left: 90%; top: 70%; animation-delay: 4.5s; animation-duration: 17s; width: 5px; height: 5px; }

@keyframes particleFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-110vh) scale(0.4); opacity: 0; }
}

/* Container */
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

/* Hero content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  width: fit-content;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-color);
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.6);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.6); transform: scale(1); }
  50%      { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); transform: scale(1.15); }
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -1.5px;
}

.gradient-text {
  background: var(--primary-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding-top: 1rem;
}

.stat-item { display: flex; flex-direction: column; gap: 0.2rem; }

.stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.stat-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(26, 26, 46, 0.15), transparent);
}

/* ===== Hero Image / Mockup ===== */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 18;
  transform-style: preserve-3d;
}

.mockup-glow {
  position: absolute;
  inset: -30px;
  background: var(--primary-gradient);
  filter: blur(60px);
  opacity: 0.4;
  border-radius: 50%;
  animation: glowPulse 5s ease-in-out infinite;
  z-index: 0;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(1.08); }
}

/* Anillo orbital decorativo */
.mockup-ring {
  position: absolute;
  inset: -10%;
  border: 2px dashed rgba(168, 85, 247, 0.25);
  border-radius: 50%;
  animation: ringSpin 28s linear infinite;
  z-index: 0;
}

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

.mockup-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 44px;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 30px 80px rgba(26, 26, 46, 0.28),
    0 10px 30px rgba(168, 85, 247, 0.15),
    inset 0 0 0 10px #141428,
    inset 0 0 0 12px rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateY(0deg);
  transition: transform 0.4s var(--ease-smooth);
  animation: mockupFloat 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes mockupFloat {
  0%, 100% { transform: translateY(0) perspective(1200px) rotateX(0) rotateY(-3deg); }
  50%      { transform: translateY(-12px) perspective(1200px) rotateX(2deg) rotateY(3deg); }
}

.mockup-screen,
.mockup-overlay {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  border-radius: 34px;
}

.mockup-overlay { opacity: 0; }

/* Shine effect */
.mockup-shine {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  pointer-events: none;
  z-index: 3;
  animation: mockupShine 6s ease-in-out infinite;
}

@keyframes mockupShine {
  0%, 70%, 100% { transform: translateX(-100%) translateY(-100%); }
  85%           { transform: translateX(60%) translateY(60%); }
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: var(--card-bg);
  padding: 0.75rem 1.1rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(26, 26, 46, 0.15);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  z-index: 3;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.4s var(--ease-smooth);
}

.floating-card i {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--primary-gradient);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.card-1 {
  top: 8%; left: -18%;
  animation: cardFloat1 5s ease-in-out infinite;
}
.card-2 {
  top: 42%; right: -22%;
  animation: cardFloat2 6s ease-in-out infinite;
}
.card-3 {
  bottom: 8%; left: -14%;
  animation: cardFloat3 7s ease-in-out infinite;
}

@keyframes cardFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(-3deg); }
  50%      { transform: translate(4px, -10px) rotate(-1deg); }
}
@keyframes cardFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(2deg); }
  50%      { transform: translate(-4px, -12px) rotate(4deg); }
}
@keyframes cardFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50%      { transform: translate(5px, -8px) rotate(0deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 2;
  animation: scrollBounce 2.2s ease-in-out infinite;
  transition: color 0.3s ease;
}

.scroll-indicator:hover { color: var(--primary-color); }

.scroll-indicator i { font-size: 0.8rem; }

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

/* ========================================
   REVEAL ANIMATIONS
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal[data-reveal="zoom"] { transform: scale(0.92); }
.reveal[data-reveal="left"] { transform: translateX(-40px); }
.reveal[data-reveal="right"] { transform: translateX(40px); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ========================================
   SECTIONS COMMON
======================================== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: var(--primary-color);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}

.section-description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ========================================
   FEATURES SECTION
======================================== */
.features {
  padding: 6rem 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(26, 26, 46, 0.06);
  padding: 2.25rem 1.75rem;
  border-radius: 24px;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  isolation: isolate;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: var(--primary-gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: -40%; right: -40%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.12), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover {
  box-shadow: 0 25px 60px rgba(26, 26, 46, 0.1);
  border-color: transparent;
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after  { opacity: 1; }

.feature-icon {
  width: 60px; height: 60px;
  background: var(--primary-gradient);
  background-size: 200% 200%;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.28);
  transition: transform 0.4s var(--ease-out), background-position 0.5s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-6deg);
  background-position: 100% 50%;
}

.feature-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ========================================
   SCREENSHOTS SECTION
======================================== */
.screenshots {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.screenshots::before {
  content: "";
  position: absolute;
  top: 15%; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Audience switch */
.audience-switch {
  display: inline-flex;
  background: #f0f0fa;
  padding: 5px;
  border-radius: 999px;
  margin-top: 1.5rem;
  position: relative;
  border: 1px solid rgba(26, 26, 46, 0.05);
}

.audience-btn {
  padding: 0.6rem 1.4rem;
  border: none;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.35s ease;
  position: relative;
  z-index: 1;
}

.audience-btn.active {
  color: #fff;
  background: var(--primary-gradient);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Tabs */
.screenshots-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.85rem 1.5rem;
  background: #f6f6fc;
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.tab-btn:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--primary-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.32);
}

.tab-btn i { font-size: 0.95rem; }

/* Tab content */
.tab-content { display: none; }

.tab-content.active {
  display: block;
  animation: tabFadeIn 0.55s var(--ease-out);
}

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

/* Screenshots slider */
.screenshots-slider { width: 100%; }

.screenshots-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: itemUp 0.6s var(--ease-out) both;
}
.screenshot-item:nth-child(1) { animation-delay: 0.08s; }
.screenshot-item:nth-child(2) { animation-delay: 0.22s; }
.screenshot-item:nth-child(3) { animation-delay: 0.36s; }

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

.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 230px;
  aspect-ratio: 9 / 18;
  border-radius: 34px;
  background: #111;
  padding: 8px;
  box-shadow:
    0 25px 60px rgba(26, 26, 46, 0.18),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}

.phone-mockup:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 35px 80px rgba(168, 85, 247, 0.2),
    0 15px 40px rgba(255, 107, 53, 0.18),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #f0f0fa;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.phone-mockup:hover .phone-screen img { transform: scale(1.04); }

.screenshot-caption {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing {
  padding: 6rem 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  bottom: -200px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid rgba(26, 26, 46, 0.06);
  padding: 2.25rem 1.75rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
  overflow: hidden;
  isolation: isolate;
}

.pricing-card:hover {
  box-shadow: 0 25px 60px rgba(26, 26, 46, 0.1);
}

.pricing-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
    var(--primary-gradient) border-box;
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(255, 107, 53, 0.18);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--primary-gradient);
  filter: blur(30px);
  opacity: 0.2;
  z-index: -1;
  border-radius: 24px;
  animation: featuredPulse 4s ease-in-out infinite;
}

@keyframes featuredPulse {
  0%, 100% { opacity: 0.2; }
  50%      { opacity: 0.35; }
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-gradient);
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

.pricing-header { display: flex; flex-direction: column; gap: 0.5rem; }

.pricing-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
}

.pricing-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.pricing-features li i {
  color: var(--primary-color);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.pricing-btn {
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.btn-gradient {
  background: var(--primary-gradient);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 18px 40px rgba(255, 107, 53, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid rgba(26, 26, 46, 0.1);
}

.btn-outline:hover {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
  font-style: italic;
}

/* ========================================
   CTA SECTION
======================================== */
.cta {
  padding: 7rem 0;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #241a3a 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.cta-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.orb-cta-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #ff6b35, transparent 70%);
  top: -300px; right: -200px;
  opacity: 0.25;
  filter: blur(80px);
  animation: orbFloat1 18s ease-in-out infinite alternate;
  position: absolute;
  border-radius: 50%;
}

.orb-cta-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
  bottom: -250px; left: -150px;
  opacity: 0.25;
  filter: blur(80px);
  animation: orbFloat2 22s ease-in-out infinite alternate;
  position: absolute;
  border-radius: 50%;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
}

.cta-title .gradient-text {
  background: linear-gradient(135deg, #ff9a5c 0%, #ffb6d1 50%, #c78ef9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 5s ease-in-out infinite;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.cta-actions { margin-top: 0.5rem; }

.cta-trust p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-trust i { color: #66ff99; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3.5rem; }
  .hero-content { align-items: center; }
  .hero-description { margin: 0 auto; }
  .hero-stats { justify-content: center; }
  .mockup-container { max-width: 320px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .card-1 { left: -10%; }
  .card-2 { right: -12%; }
  .card-3 { left: -8%; }
}

@media (max-width: 768px) {
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-container, .section-container, .cta-container { padding: 0 1.5rem; }

  .hero-title { font-size: 2rem; letter-spacing: -1px; }
  .hero-description { font-size: 0.98rem; }

  .hero-stats { gap: 0.9rem; }
  .stat-number { font-size: 1.25rem; }
  .stat-label { font-size: 0.75rem; }

  .mockup-container { max-width: 260px; }
  .floating-card { font-size: 0.78rem; padding: 0.55rem 0.85rem; }
  .floating-card i { width: 26px; height: 26px; font-size: 0.78rem; }
  .card-1 { top: 4%; left: -8%; }
  .card-2 { right: -10%; top: 45%; }
  .card-3 { bottom: 4%; left: -6%; }

  .features, .screenshots, .pricing { padding: 4rem 0; }
  .features-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .screenshots-tabs { gap: 0.4rem; }
  .tab-btn { padding: 0.7rem 1.1rem; font-size: 0.82rem; }
  .tab-btn span { display: inline; }

  .screenshots-track { grid-template-columns: 1fr; gap: 2.5rem; }
  .phone-mockup { max-width: 240px; }

  .audience-switch { width: 100%; max-width: 340px; }
  .audience-btn { flex: 1; padding: 0.6rem 0.85rem; font-size: 0.82rem; }

  .cta { padding: 5rem 0; }
  .cta-description { font-size: 0.98rem; }

  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero-container, .section-container, .cta-container { padding: 0 1.25rem; }
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.7rem; }
  .hero-actions .btn-hero-primary,
  .cta-actions .btn-hero-primary { width: 100%; justify-content: center; padding: 0.95rem 1.5rem; }
  .pricing-card { padding: 1.75rem 1.25rem; }
  .feature-card { padding: 1.75rem 1.25rem; }
  .hero-stats { gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
  .stat-divider { height: 24px; }
}

/* ===== Accesibilidad: reducir movimiento ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .gradient-orb, .hero-particles, .mockup-shine, .mockup-ring { display: none; }
}
