/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C6A664;
  --gold-light: #E8D5A3;
  --gold-dark: #A3843E;
  --rose: #D4A0A0;
  --rose-light: #F2E0E0;
  --rose-dark: #B07878;
  --cream: #FFF9F0;
  --cream-dark: #F5EDE0;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 30px rgba(198,166,100,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; color: var(--charcoal); }
.section-subtitle { font-size: 1.1rem; color: var(--charcoal-light); max-width: 600px; margin: 0 auto 48px; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  border: none;
  border-radius: var(--radius-xl);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(198,166,100,0.4);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: 0.6s;
}

.btn-primary:hover::after { left: 100%; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-large { padding: 20px 56px; font-size: 1.1rem; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 500;
}

.topbar .highlight { color: var(--white); font-weight: 700; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,249,240,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(198,166,100,0.15);
  padding: 16px 0;
  transition: var(--transition);
}

.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.logo span { color: var(--gold); }

.nav-cta .btn { padding: 10px 28px; font-size: 0.9rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-light) 50%, var(--cream-dark) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(198,166,100,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }

.hero-content { padding: 40px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,166,100,0.12);
  border: 1px solid rgba(198,166,100,0.3);
  border-radius: var(--radius-xl);
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--gold); display: block; }

.hero-text { font-size: 1.15rem; color: var(--charcoal-light); margin-bottom: 32px; max-width: 500px; }

.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(198,166,100,0.2);
}

.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-item .stat-label { font-size: 0.8rem; color: var(--charcoal-light); margin-top: 4px; }

.hero-image { position: relative; }

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card.card-1 { bottom: 40px; left: -30px; animation-delay: 0s; }
.floating-card.card-2 { top: 40px; right: -20px; animation-delay: 1.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-card .card-icon { font-size: 1.5rem; margin-bottom: 4px; }
.floating-card .card-text { font-size: 0.8rem; font-weight: 600; color: var(--charcoal); }
.floating-card .card-sub { font-size: 0.7rem; color: var(--charcoal-light); }

/* ===== BENEFITS ===== */
.benefits { padding: 100px 0; background: var(--white); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(198,166,100,0.2);
}

.benefit-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.benefit-card h3 { margin-bottom: 12px; }
.benefit-card p { font-size: 0.95rem; color: var(--charcoal-light); }

/* ===== RITUAL STEPS ===== */
.ritual { padding: 100px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }

.ritual-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ritual-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 550px;
  object-fit: cover;
}

.steps-list { display: flex; flex-direction: column; gap: 28px; }

.step-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(198,166,100,0.1);
  transition: var(--transition);
}

.step-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(8px);
}

.step-number {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.step-content h3 { margin-bottom: 6px; font-size: 1.1rem; }
.step-content p { font-size: 0.9rem; color: var(--charcoal-light); }

/* ===== RESULTS ===== */
.results {
  padding: 100px 0;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.results::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(198,166,100,0.1) 0%, transparent 60%);
}

.results .section-title { color: var(--white); }
.results .section-subtitle { color: rgba(255,255,255,0.6); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.result-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(198,166,100,0.2);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.result-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}

.result-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.result-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ===== INGREDIENTS ===== */
.ingredients { padding: 100px 0; background: var(--white); }

.ingredients-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ingredient-list { display: flex; flex-direction: column; gap: 20px; }

.ingredient-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.ingredient-item:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }

.ingredient-icon { font-size: 2rem; flex-shrink: 0; }
.ingredient-item h3 { margin-bottom: 4px; font-size: 1rem; }
.ingredient-item p { font-size: 0.85rem; color: var(--charcoal-light); }

.ingredients-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--rose-light) 50%, var(--cream) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(198,166,100,0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--charcoal-light); font-style: italic; margin-bottom: 20px; line-height: 1.8; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--charcoal-light); }

/* ===== GUARANTEE ===== */
.guarantee {
  padding: 80px 0;
  background: var(--white);
}

.guarantee-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 48px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-light) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(198,166,100,0.2);
}

.guarantee-icon { font-size: 4rem; margin-bottom: 20px; }
.guarantee-card h2 { margin-bottom: 16px; }
.guarantee-card p { max-width: 550px; margin: 0 auto 32px; color: var(--charcoal-light); }

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-single {
  grid-template-columns: 1fr;
  max-width: 480px;
}

.pricing-secure {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--charcoal-light);
  font-weight: 500;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover { transform: scale(1.05) translateY(-5px); }

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 6px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-desc { font-size: 0.85rem; color: var(--charcoal-light); margin-bottom: 20px; }

.pricing-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(198,166,100,0.2);
}

.price-old { font-size: 0.9rem; color: var(--charcoal-light); text-decoration: line-through; }

.price-current {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.price-current small { font-size: 0.9rem; font-weight: 400; }
.price-installment { font-size: 0.8rem; color: var(--charcoal-light); margin-top: 4px; }

.pricing-features { margin-bottom: 28px; text-align: left; }

.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal-light);
}

.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.pricing-card .btn { width: 100%; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--white); }

.faq-list { max-width: 750px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(198,166,100,0.2);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p { padding-bottom: 24px; color: var(--charcoal-light); font-size: 0.95rem; line-height: 1.8; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(198,166,100,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta .section-title { color: var(--white); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.7); max-width: 550px; margin: 0 auto 40px; font-size: 1.1rem; }
.final-cta .btn { position: relative; z-index: 2; }

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,166,100,0.15);
  border: 1px solid rgba(198,166,100,0.3);
  border-radius: var(--radius-xl);
  padding: 10px 24px;
  margin-bottom: 32px;
  font-size: 0.85rem;
  color: var(--gold-light);
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 32px 0;
  font-size: 0.8rem;
  border-top: 1px solid rgba(198,166,100,0.1);
}

.footer a { color: var(--gold-light); transition: var(--transition); }
.footer a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; max-width: 500px; margin: 0 auto; }
  .floating-card { display: none; }
  .ritual-wrapper,
  .ingredients-wrapper { grid-template-columns: 1fr; }
  .ritual-image, .ingredients-image { order: -1; max-width: 500px; margin: 0 auto; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-single { max-width: 400px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-5px); }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .results-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .btn-large { padding: 16px 36px; font-size: 1rem; }
}

/* ===== PULSE ANIMATION ===== */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,166,100,0.4); }
  50% { box-shadow: 0 0 0 15px rgba(198,166,100,0); }
}

.pulse { animation: pulse 2s infinite; }
