:root {
  --gold-light: #f3e0ab;
  --gold-mid: #d7a558;
  --gold-deep: #a5641c;
  --black: #050403;
  --black-2: #0a0806;
  --ivory: #efe3c8;
  --gray: #b7a274;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--black);
  color: var(--ivory);
}

.topbar {
  text-align: center;
  padding: 60px 20px 40px;
  background: radial-gradient(ellipse 900px 500px at 50% -10%, #1c1408 0%, transparent 60%), var(--black-2);
  border-bottom: 1px solid rgba(201,151,28,0.25);
}
.topbar-logo { height: 90px; margin-bottom: 10px; }
.topbar h1 {
  font-size: 42px;
  margin: 0;
  letter-spacing: 3px;
  background: linear-gradient(115deg, var(--gold-light), var(--gold-mid), var(--gold-deep), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.topbar-sub {
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 10px;
}

.included {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
  padding: 0 20px;
}
.included h2 {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 18px;
}
.included-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
  padding: 0;
  margin: 0;
}
.included-list li {
  font-size: 15px;
  color: var(--ivory);
}

.catalog {
  max-width: 1100px;
  margin: 20px auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.loading { text-align: center; color: var(--gray); }

.card {
  background: linear-gradient(160deg, #0d0a07 0%, #060504 100%);
  border: 1px solid rgba(201,151,28,0.25);
  border-radius: 10px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.card .badge {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(115deg, var(--gold-light), var(--gold-mid));
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.card h3 {
  margin: 0;
  font-size: 22px;
  color: var(--gold-light);
  font-style: italic;
}

.card .price {
  font-size: 30px;
  font-weight: 700;
  color: var(--ivory);
}
.card .price span { font-size: 16px; color: var(--gray); font-weight: 400; }

.card ul.items {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  flex-grow: 1;
}
.card ul.items li::before {
  content: "✓ ";
  color: var(--gold-mid);
}

.card label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-top: 6px;
}

.card select {
  width: 100%;
  padding: 10px;
  background: var(--black-2);
  color: var(--ivory);
  border: 1px solid rgba(201,151,28,0.35);
  border-radius: 6px;
  font-size: 14px;
}

.card button {
  margin-top: 8px;
  padding: 13px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(115deg, var(--gold-light), var(--gold-mid), var(--gold-deep));
  color: #1a1206;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: filter 0.15s ease;
}
.card button:hover { filter: brightness(1.08); }
.card button:disabled { opacity: 0.6; cursor: wait; }

.card .error {
  color: #e07a5f;
  font-size: 13px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 6px;
  margin-top: 20px;
}
.main-nav a {
  color: var(--ivory);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border: 1px solid rgba(201,151,28,0.3);
  border-radius: 20px;
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a:hover {
  background: linear-gradient(115deg, var(--gold-light), var(--gold-mid));
  color: #1a1206;
  border-color: transparent;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2fce6c, #1a9e4d);
  padding: 14px 20px 14px 14px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  z-index: 999;
}
.whatsapp-icon { font-size: 24px; line-height: 1; }
.whatsapp-label { color: #ffffff; font-size: 14px; font-weight: 600; white-space: nowrap; }

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  aspect-ratio: 1600 / 500;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-cta {
  position: absolute;
  left: 5%;
  bottom: 15%;
  background: linear-gradient(115deg, var(--gold-light), var(--gold-mid), var(--gold-deep));
  color: #1a1206;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 30px;
  text-decoration: none;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(243,224,171,0.35); cursor: pointer;
}
.hero-dots span.active { background: var(--gold-mid); }

.how-it-works {
  max-width: 1000px;
  margin: 50px auto 10px;
  padding: 0 20px;
  text-align: center;
}
.how-it-works h2 { font-size: 24px; font-style: italic; color: var(--gold-light); margin-bottom: 30px; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.step { position: relative; padding: 10px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(115deg, var(--gold-light), var(--gold-mid));
  color: #1a1206;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}
.step h3 { font-size: 15px; color: var(--gold-light); margin: 6px 0; }
.step p { font-size: 13px; color: var(--gray); line-height: 1.5; margin: 0; }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 500px;
  margin: 40px auto;
  padding: 0 20px;
  color: var(--gold-mid);
}
.divider span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,151,28,0.4), transparent); }
.divider i { font-style: normal; font-size: 14px; }

.card { position: relative; }
.popular-tag {
  position: absolute;
  top: -12px;
  right: 18px;
  background: linear-gradient(115deg, var(--gold-light), var(--gold-mid));
  color: #1a1206;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

html { scroll-behavior: smooth; }

.contact {
  max-width: 500px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  scroll-margin-top: 20px;
}
.contact h2 { font-size: 24px; font-style: italic; color: var(--gold-light); margin-bottom: 8px; }
.contact-sub { color: var(--gray); font-size: 14px; margin-bottom: 22px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(160deg, #0d0a07, #060504);
  border: 1px solid rgba(201,151,28,0.25);
  border-radius: 12px;
  padding: 24px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background: #0a0806;
  color: var(--ivory);
  border: 1px solid rgba(201,151,28,0.3);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
}
.contact-form button {
  padding: 13px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(115deg, var(--gold-light), var(--gold-mid), var(--gold-deep));
  color: #1a1206;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.contact-status { font-size: 13px; margin: 0; }

#basico-1, #basico-2, #silver, #platino { scroll-margin-top: 20px; }

footer {
  text-align: center;
  padding: 30px 20px;
  color: var(--gray);
  font-size: 12px;
  border-top: 1px solid rgba(201,151,28,0.15);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}
.footer-social a {
  color: var(--gold-mid);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(201,151,28,0.35);
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.15s ease;
}
.footer-social a:hover { background: rgba(201,151,28,0.12); }

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-legal a {
  color: var(--gray);
  font-size: 11px;
  text-decoration: underline;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #1c1408, #2a1e0c, #1c1408);
  border-top: 1px solid rgba(201,151,28,0.3);
  border-bottom: 1px solid rgba(201,151,28,0.3);
  padding: 14px 20px;
  text-align: center;
}
.cta-banner span { color: var(--ivory); font-size: 14px; }
.cta-banner a {
  color: #1a1206;
  background: linear-gradient(115deg, var(--gold-light), var(--gold-mid));
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.cta-banner-alt { background: linear-gradient(90deg, #0d0a07, #16110a, #0d0a07); }

.promotions {
  max-width: 1000px;
  margin: 50px auto 10px;
  padding: 0 20px;
  text-align: center;
}
.promotions h2 {
  font-size: 26px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.promo-card {
  position: relative;
  background: linear-gradient(160deg, #1c1408 0%, #0a0806 100%);
  border: 1px solid rgba(201,151,28,0.45);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  overflow: hidden;
}
.promo-card::before {
  content: "OFERTA";
  position: absolute;
  top: 16px;
  right: -34px;
  transform: rotate(45deg);
  background: linear-gradient(115deg, #f3e0ab, #a5641c);
  color: #1a1206;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 40px;
}
.promo-card h3 { margin: 0 0 6px; font-size: 22px; font-style: italic; color: var(--gold-light); }
.promo-card .price-row { display: flex; align-items: baseline; gap: 10px; margin: 10px 0; }
.promo-card .price-old { color: var(--gray); text-decoration: line-through; font-size: 16px; }
.promo-card .price-new { color: var(--ivory); font-size: 32px; font-weight: 700; }
.promo-card ul { list-style: none; padding: 0; margin: 10px 0 16px; font-size: 13px; color: var(--gray); line-height: 1.7; }
.promo-card ul li::before { content: "✓ "; color: var(--gold-mid); }
.promo-card select {
  width: 100%; padding: 10px; margin-bottom: 10px;
  background: #0a0806; color: var(--ivory);
  border: 1px solid rgba(201,151,28,0.35); border-radius: 6px; font-size: 14px;
}
.promo-card button {
  width: 100%; padding: 13px; border: none; border-radius: 6px;
  background: linear-gradient(115deg, var(--gold-light), var(--gold-mid), var(--gold-deep));
  color: #1a1206; font-weight: 700; font-size: 15px; cursor: pointer;
}

.trust {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}
.trust-item { padding: 10px; }
.trust-icon { font-size: 30px; }
.trust-item h3 { font-size: 15px; color: var(--gold-light); margin: 10px 0 6px; }
.trust-item p { font-size: 13px; color: var(--gray); margin: 0; line-height: 1.5; }

.testimonials {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}
.testimonials h2 { font-size: 24px; font-style: italic; color: var(--gold-light); margin-bottom: 28px; }
.testimonial-carousel {
  min-height: 130px;
  background: linear-gradient(160deg, #0d0a07, #060504);
  border: 1px solid rgba(201,151,28,0.25);
  border-radius: 12px;
  padding: 28px 30px;
  transition: opacity 0.4s ease;
}
.testimonial-quote { font-size: 16px; color: var(--ivory); line-height: 1.6; font-style: italic; margin: 0 0 14px; }
.testimonial-name { font-size: 13px; color: var(--gold-mid); letter-spacing: 0.5px; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.testimonial-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201,151,28,0.3); cursor: pointer;
}
.testimonial-dots span.active { background: var(--gold-mid); }
