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

body {
  font-family: 'Poppins', sans-serif;
  background: #1a1a1a;
  min-height: 100vh;
  color: #eee;
  overflow-x: hidden;
}

/* Contenido Principal */
.main-content {
  margin-top: 70px;
  padding: 40px 20px;
}

.header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 1s ease-out;
}

.header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #7b61ff, #6da7cc, #a3f7bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 3s ease-in-out infinite;
}

.header p {
  color: #f9f9f9;
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.9;
}

.header h1 .vi {
  background: none;
  -webkit-text-fill-color: #a3f7bf;
}

.header h1 .studio {
  background: none;
  -webkit-text-fill-color: #6da7cc;
}

/* Sección de Paquetes Principales */
.packages-section {
  margin-bottom: 100px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f9f9f9;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #a3f7bf;
  margin-bottom: 50px;
  opacity: 0.9;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(145deg, rgba(249, 249, 249, 0.08), rgba(249, 249, 249, 0.03));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(123, 97, 255, 0.3);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: fadeInUp 0.8s ease-out;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.3s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.5s;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7b61ff, #6da7cc, #a3f7bf);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(123, 97, 255, 0.5);
  box-shadow: 0 25px 50px rgba(123, 97, 255, 0.2);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7b61ff, #6da7cc);
  color: white;
  padding: 5px 24px;
  border-radius: 0 0 16px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(123, 97, 255, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  transition: transform 0.3s ease;
}



.pricing-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.package-name {
  color: #f9f9f9;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.package-description {
  color: #a3f7bf;
  text-align: center;
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.5;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1.5rem;
  margin-left: 10px;
}

.discount-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #e53935;
  color: #fff;
  padding: 5px 12px;
  border-radius: 0 0 12px 0;
  font-weight: 600;
  font-size: 0.85rem;
}

.price {
  text-align: center;
  margin-bottom: 30px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.currency {
  font-size: 1.2rem;
  color: #6da7cc;
  margin-top: -10px;
}

.ideal-for {
  background: rgba(123, 97, 255, 0.15);
  border: 1px solid rgba(123, 97, 255, 0.3);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
}

.ideal-for-title {
  color: #7b61ff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ideal-for-text {
  color: #f9f9f9;
  font-size: 0.95rem;
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
}

.features-list li {
  color: #f9f9f9;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.4;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #a3f7bf;
  font-weight: bold;
  font-size: 1.1rem;
}

.cta-button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-start {
  background: linear-gradient(135deg, #a3f7bf, #6da7cc);
  color: white;
}

.btn-boost {
  background: linear-gradient(135deg, #6da7cc, #7b61ff);
  color: white;
}

.btn-elite {
  background: linear-gradient(135deg, #7b61ff, #a3f7bf);
  color: white;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(123, 97, 255, 0.4);
}

.demo-link {
  text-align: center;
  margin-top: 15px;
}

.demo-link a {
  color: #6da7cc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.demo-link a:hover {
  color: #a3f7bf;
}

/* Separador Visual */
.section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7b61ff, #6da7cc, #a3f7bf, transparent);
  margin: 80px 0;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #7b61ff, #a3f7bf);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(123, 97, 255, 0.5);
}

/* Sección de Mantenimiento Mejorada */
.maintenance-section {
  background: linear-gradient(145deg, rgba(123, 97, 255, 0.05), rgba(163, 247, 191, 0.05));
  border: 1px solid rgba(123, 97, 255, 0.2);
  border-radius: 30px;
  padding: 60px 40px;
  margin: 80px auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.maintenance-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7b61ff, #6da7cc, #a3f7bf);
}

.maintenance-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #7b61ff, #a3f7bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.maintenance-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #f9f9f9;
  margin-bottom: 20px;
  opacity: 0.9;
}

.maintenance-note {
  text-align: center;
  background: rgba(163, 247, 191, 0.1);
  border: 1px solid rgba(163, 247, 191, 0.3);
  border-radius: 15px;
  padding: 15px 25px;
  margin-bottom: 40px;
  color: #a3f7bf;
  font-weight: 500;
}

.extras-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.extra-card {
  background: linear-gradient(145deg, rgba(249, 249, 249, 0.08), rgba(249, 249, 249, 0.03));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(123, 97, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.extra-card:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 97, 255, 0.5);
  box-shadow: 0 15px 35px rgba(123, 97, 255, 0.2);
}

.extra-card h3 {
  font-size: 1.5rem;
  color: #f9f9f9;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.extra-card .price {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #a3f7bf;
  text-align: center;
  padding: 10px;
  background: rgba(163, 247, 191, 0.1);
  border-radius: 10px;
}

.extra-card ul {
  list-style: none;
  padding: 0;
}

.extra-card ul li {
  margin-bottom: 12px;
  color: #f9f9f9;
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.extra-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #6da7cc;
  font-weight: bold;
}

.disclaimer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin-top: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(123, 97, 255, 0.2);
}

/* Animaciones */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradient-flow {

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

  50% {
    background-position: 100% 50%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2.5rem;
  }

  .pricing-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .maintenance-section {
    padding: 40px 20px;
  }

  .maintenance-title {
    font-size: 2.3rem;
  }

  .extras-container {
    grid-template-columns: 1fr;
  }
}