:root {
  --violet: #582b97;
  --bg-dark: #0a0a0f;
  --text-light: #f0f0f0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

.navbar {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(155, 92, 246, 0.2);
}
.navbar img{
  height: 60px;
}

.navbar-brand span {
  color: var(--violet);
}

.hero span {
  color: var(--violet);
}
.hero {
  height: 70vh;
  background: url('https://cloudfront-us-east-1.images.arcpublishing.com/infobae/HKGKD7JSC5HBDL7KYZD3TGSGGU.jpeg') center/cover fixed;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
}

.hero h1 span {
  color: var(--violet);
}

.card-body .price {
  color: var(--violet);
}

.card-body .sub-title {
  color: #0a0a0f;
  font-size: 1.2rem;
  font-weight: 600;
}
/* --- Sección de Planes de Suscripción --- */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #0a0a0f;
}

.card-text {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.15rem;
}

.form-input {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.8rem;
  font-family: var(--font-sans);
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  outline: none;
}

.social-link {
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--gold) !important;
}

.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  font-size: 1.8rem;
  padding: 4px 12px;
  border-radius: 50%;
  box-shadow: 0 0 10px #25D366;
  transition: 0.3s;
  z-index: 1000;
}

.whatsapp:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .card {
    margin-bottom: 30px;
  }
}
