/* ===== Página Presupuesto ===== */
.header .logo {
  text-decoration: none;
  color: var(--gold);
}
.header .logo:hover {
  text-decoration: none;
  opacity: 0.9;
}

.main-presupuesto {
  max-width: 900px;
  padding-bottom: 4rem;
}

.presupuesto-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.25rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.presupuesto-subtitle {
  text-align: center;
  margin: 0 0 2.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.planes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
  .planes-grid {
    grid-template-columns: 1fr;
  }
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}

.plan-lite {
  border-top: 3px solid var(--gold);
}

.plan-premium {
  border-top: 3px solid var(--gold-light);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.05em;
}

.plan-list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.plan-list li {
  margin-bottom: 0.5rem;
}

.plan-list li:last-child {
  margin-bottom: 0;
}

.plan-price {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  text-align: center;
  letter-spacing: 0.02em;
}

/* Sitio web con ruleta */
.presupuesto-sitio {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.sitio-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.sitio-desc-intro {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.sitio-features {
  margin: 0 0 1.5rem;
  padding-left: 1.35rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.sitio-features li {
  margin-bottom: 0.6rem;
}

.sitio-features li:last-child {
  margin-bottom: 0;
}

.sitio-features strong {
  color: var(--gold);
  font-weight: 600;
}

.sitio-features em {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.85em;
}

.sitio-motive {
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.sitio-price {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.sitio-price .currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 0.15rem;
}

.sitio-price-extra {
  margin: 0.5rem 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.sitio-price-extra .currency {
  font-size: 0.9rem;
}

.presupuesto-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-link {
  color: var(--gold);
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}
