/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.badge-pill {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gray-900);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray-600);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.development-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-100);
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.development-badge i {
  color: var(--primary);
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: var(--gray-50);
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  bottom: -1px;
}

/* Phone mockup */
.hero-image {
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 9/19;
  margin: 0 auto;
  background: var(--dark-surface);
  border-radius: 40px;
  padding: 0;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--gray-200);
  overflow: hidden;
}

.phone-screen-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: white;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  animation: float 3s ease-in-out infinite;
  white-space: nowrap;
  border: 1px solid var(--gray-200);
  z-index: 20;
}

.floating-card i {
  color: var(--primary);
  font-size: 1rem;
}

.card-1 {
  top: 15%;
  right: -30px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  left: -30px;
  animation-delay: 1s;
}

.card-3 {
  bottom: 5%;
  right: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ===== BOTÓN GOOGLE PLAY MEJORADO ===== */
.btn-primary i.fab.fa-google-play {
  font-size: 1.3rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.btn-primary:hover i.fab.fa-google-play {
  animation: none;
  transform: scale(1.1);
}
