* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #0a0a0a; color: #f0ede6; font-family: 'Outfit', sans-serif; }

.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1200 50%, #0a0a0a 100%);
  min-height: 580px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 2rem 3rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(234,163,0,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.badge {
  background: #1c1400; border: 1px solid #c49000; color: #f5c518;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 20px; margin-bottom: 1.8rem; display: inline-block;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.12;
  color: #fff; max-width: 760px; margin-bottom: 1.2rem; letter-spacing: -1px;
}
.hero h1 span { color: #f5c518; }
.hero p { font-size: 1.1rem; color: #a09880; max-width: 560px; line-height: 1.8; margin-bottom: 2.2rem; }
.btn-cta {
  background: #f5c518; color: #0a0a0a; font-size: 1.05rem; font-weight: 800;
  padding: 16px 42px; border-radius: 8px; border: none; cursor: pointer;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.1s; box-shadow: 0 0 40px rgba(245,197,24,0.3);
}
.btn-cta:hover { background: #ffd840; transform: scale(1.04); }
.hero-note { font-size: 0.78rem; color: #4a4030; margin-top: 1rem; letter-spacing: 1px; }

.ticker {
  background: #f5c518; color: #0a0a0a; font-weight: 800; font-size: 12px;
  letter-spacing: 2.5px; padding: 11px 0; white-space: nowrap; overflow: hidden;
}
.ticker-inner { display: inline-block; animation: scroll 22s linear infinite; padding-left: 100%; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.section { padding: 4rem 2rem; max-width: 900px; margin: 0 auto; }
.section-title { font-size: 1.7rem; font-weight: 800; color: #fff; text-align: center; margin-bottom: 0.5rem; }
.section-title span { color: #f5c518; }
.section-sub { text-align: center; color: #6a6050; font-size: 0.95rem; margin-bottom: 2.8rem; line-height: 1.6; }

.divider { height: 1px; background: linear-gradient(to right, transparent, #2a2210, transparent); margin: 0 2rem; }

.urgency {
  background: #1a1000; border-top: 1px solid #2a2000; border-bottom: 1px solid #2a2000;
  padding: 2rem; text-align: center;
}
.urgency p { font-size: 1.1rem; font-weight: 700; color: #f5c518; letter-spacing: 0.5px; }
.urgency span { color: #fff; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card { background: #111008; border: 1px solid #2a2210; border-radius: 12px; padding: 1.5rem 1.3rem; transition: border-color 0.2s; }
.card:hover { border-color: #c49000; }
.card-icon {
  width: 42px; height: 42px; border-radius: 10px; background: #1c1400; border: 1px solid #c49000;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 20px;
}
.card h3 { font-size: 0.97rem; font-weight: 700; color: #f0ede6; margin-bottom: 0.5rem; }
.card p { font-size: 0.85rem; color: #6a6050; line-height: 1.65; }

.pricing-box {
  background: #111008; border: 1.5px solid #c49000; border-radius: 16px;
  padding: 2.8rem 2.2rem; text-align: center; max-width: 420px; margin: 0 auto;
  box-shadow: 0 0 60px rgba(245,197,24,0.08);
}
.pricing-old { color: #555; text-decoration: line-through; font-size: 1rem; margin-bottom: 0.3rem; }
.pricing-new { font-size: 3rem; font-weight: 800; color: #f5c518; margin: 0.4rem 0 1.4rem; }
.pricing-list { list-style: none; text-align: left; margin-bottom: 2rem; }
.pricing-list li {
  font-size: 0.93rem; color: #a09880; padding: 8px 0;
  border-bottom: 1px solid #1e1a10; display: flex; align-items: center; gap: 10px;
}
.pricing-list li::before { content: '✓'; color: #f5c518; font-weight: 800; font-size: 1rem; }
.guarantee { font-size: 0.78rem; color: #4a4030; margin-top: 1rem; letter-spacing: 0.5px; }

.faq-item { border-bottom: 1px solid #1e1a10; padding: 1.2rem 0; }
.faq-q { font-size: 0.97rem; font-weight: 700; color: #f0ede6; }
.faq-a { font-size: 0.88rem; color: #6a6050; margin-top: 0.6rem; line-height: 1.7; }

.footer { text-align: center; padding: 2.5rem 2rem; color: #3a3020; font-size: 0.8rem; border-top: 1px solid #1a1600; }

/* CAROUSEL */
.carousel-wrapper {
  background: #0d0b06;
  padding: 3.5rem 0 4rem;
}
.carousel-outer {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 16px;
  padding: 0 2rem;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.cslide {
  flex: 0 0 260px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2210;
  background: #111008;
  position: relative;
}
.cslide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.clabel {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.92));
  padding: 2rem 0.8rem 0.8rem;
  font-size: 0.75rem; font-weight: 700; color: #f5c518;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(245,197,24,0.92); border: none; border-radius: 50%;
  width: 42px; height: 42px; font-size: 22px; cursor: pointer;
  font-weight: 800; color: #0a0a0a; z-index: 10; line-height: 1;
  transition: background 0.2s, transform 0.1s;
}
.carousel-btn:hover { background: #ffd840; transform: translateY(-50%) scale(1.1); }
.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 1.2rem;
}
.carousel-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #333; cursor: pointer; transition: background 0.3s, transform 0.2s;
  border: none;
}
.carousel-dots .dot.active { background: #f5c518; transform: scale(1.3); }


@keyframes wppop {
  0% { transform: scale(0.5); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
#whatsapp-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

#whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wppop 0.5s ease;
}