/* ========== VARIABLES Y RESET ========== */
:root {
  --gold: #ffd700;
  --dark-bg: #0a0a0a;
  --card-bg: #1a1a1a;
  --text-muted: #aaa;
}

body {
  background-color: var(--dark-bg);
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* ========== ANIMACIONES GLOBALES ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

/* ========== HERO SECTION (con brillo premium) ========== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url("/assets/images/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 180px;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.7));
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
  letter-spacing: 2px;
  animation: fadeInUp 1.2s ease;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #ccc;
  max-width: 600px;
  margin: 20px auto;
  animation: fadeInUp 1.4s ease;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.btn-gold:hover {
  background: #e6be00;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
  color: #000;
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  background: #fff;
  color: #000;
}

/* ========== SECCIONES ========== */
.section-title {
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
}

.feature-card,
.step-card,
.pricing-card {
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.feature-card:hover,
.step-card:hover,
.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: #000;
  font-weight: 900;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.07);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
}

.price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  margin: 20px 0;
}

.price small {
  font-size: 1rem;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: #ccc;
}

.plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid #2a2a2a;
}

.cta-section {
  background: linear-gradient(135deg, #1a1a1a, #000);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.whatsapp-float,
.telegram-float {
  position: fixed;
  right: 30px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
}

.whatsapp-float {
  bottom: 30px;
  background: #25d366;
}

.telegram-float {
  bottom: 110px;
  background: #0088cc;
}

.whatsapp-float:hover,
.telegram-float:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}

footer {
  background: #000;
  color: #666;
  padding: 30px 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-section {
    height: 80vh;
  }
}
