@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap');

:root {
  --bg: #FFFFFF;
  --bg-alt: #FAFAFA;
  --surface: #FFFFFF;
  --border: #E8E8E8;
  --text: #1A1A1A;
  --text-secondary: #555555;
  --text-muted: #888888;
  --accent: #7C3AED;
  --accent-light: #EDE9FE;
  --accent-dark: #5B21B6;
  --green: #16A34A;
  --green-light: #DCFCE7;
  --green-dark: #15803D;
  --gold: #CA8A04;
  --gold-light: #FEF9C3;
  --gold-border: #FACC15;
  --pink: #DB2777;
  --pink-light: #FCE7F3;
  --pink-border: #F472B6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-sm: 8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ========= NAVBAR ========= */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--accent); text-decoration: none;
}

.nav-toggle {
  display: flex; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  width: 20px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.nav-links {
  position: fixed; top: 53px; left: 0; width: 100%;
  flex-direction: column; align-items: stretch;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  list-style: none;
  transform: translateY(-120%); opacity: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border);
  max-height: calc(100vh - 53px); overflow-y: auto;
  display: flex;
}
.nav-links.open { transform: translateY(0); opacity: 1; }

.nav-links a {
  display: block; padding: 14px 24px;
  color: var(--text-secondary); text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}
.nav-links a:last-child { border-bottom: none; }
.nav-links a:hover, .nav-links a.active {
  color: var(--accent); background: var(--accent-light);
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-links {
    position: static; flex-direction: row;
    transform: none; opacity: 1;
    border-bottom: none; background: none;
    backdrop-filter: none; gap: 4px;
  }
  .nav-links a {
    padding: 6px 12px; border-bottom: none;
    border-radius: 6px; font-size: 0.85rem;
  }
}

/* ========= HERO ========= */
.hero {
  padding: 100px 20px 60px;
  text-align: center;
  max-width: 720px; margin: 0 auto;
}

.hero-emoji { font-size: 3rem; margin-bottom: 16px; display: block; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 700; color: var(--text);
  line-height: 1.3; margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 500px; margin: 0 auto 28px;
  font-style: italic;
}

.hero-cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 0.95rem; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.2s ease;
}
.btn-primary {
  background: var(--green); color: #fff;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); background: var(--accent-light); }

/* ========= SECTIONS ========= */
.section {
  padding: 48px 20px;
  border-top: 1px solid var(--border);
}

.section-container {
  max-width: 640px; margin: 0 auto;
}

.section-header {
  margin-bottom: 28px;
}

.section-emoji { font-size: 1.8rem; margin-bottom: 8px; display: block; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 700; color: var(--text);
  margin-bottom: 4px; line-height: 1.3;
}

.section-subtitle {
  font-size: 0.95rem; color: var(--text-muted);
  font-style: italic;
}

/* ========= CONTENT ========= */
.content-block {
  margin-bottom: 24px;
}

.content-text {
  font-size: 0.95rem; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 12px;
}
.content-text strong { color: var(--text); font-weight: 600; }

/* ========= CALLOUT BOXES ========= */
.callout {
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin: 20px 0;
  font-size: 0.95rem; line-height: 1.7;
}

.callout-pink {
  background: var(--pink-light);
  border-left: 4px solid var(--pink-border);
}

.callout-gold {
  background: var(--gold-light);
  border-left: 4px solid var(--gold-border);
}

.callout-accent {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  color: var(--accent-dark);
}

.callout-green {
  background: var(--green-light);
  border-left: 4px solid var(--green);
}

.callout-title {
  font-weight: 700; font-size: 0.9rem;
  margin-bottom: 6px; display: flex; align-items: center; gap: 6px;
}

.callout-quote {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 20px 24px; margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ========= LISTS ========= */
.benefit-list {
  list-style: none; padding: 0; margin: 12px 0;
}
.benefit-list li {
  padding: 8px 0 8px 24px; position: relative;
  font-size: 0.95rem; color: var(--text-secondary);
}
.benefit-list li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--accent); font-size: 0.7rem; top: 11px;
}
.benefit-list li strong { color: var(--text); }

.numbered-list {
  list-style: none; padding: 0; margin: 12px 0;
  counter-reset: item;
}
.numbered-list li {
  padding: 10px 0 10px 0;
  font-size: 0.95rem; color: var(--text-secondary);
  display: flex; gap: 12px; align-items: flex-start;
}
.numbered-list li::before {
  counter-increment: item;
  content: counter(item) ".";
  font-weight: 700; color: var(--accent);
  flex-shrink: 0;
}

/* ========= CARD (subtle) ========= */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}

.card-title {
  font-weight: 700; font-size: 1rem;
  margin-bottom: 12px; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}

/* ========= CHAKRA LIST ========= */
.chakra-list {
  list-style: none; padding: 0; margin: 12px 0;
}
.chakra-list li {
  padding: 10px 16px; margin: 4px 0;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  font-size: 0.9rem; color: var(--text-secondary);
}
.chakra-list li strong { color: var(--accent-dark); }

/* ========= MOON GRID ========= */
.moon-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 12px; margin-top: 20px;
}

.moon-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.moon-card .moon-emoji { font-size: 1.5rem; margin-bottom: 6px; display: block; }
.moon-card h4 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 6px; color: var(--text);
}
.moon-card p { font-size: 0.9rem; color: var(--text-secondary); }

@media (min-width: 600px) {
  .moon-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========= CTA BOX ========= */
.cta-box {
  text-align: center; padding: 32px 24px;
  background: var(--green-light);
  border: 1px solid #BBF7D0;
  border-radius: var(--radius); margin-top: 28px;
}
.cta-box p {
  font-size: 1rem; color: var(--text-secondary);
  margin-bottom: 16px; font-style: italic;
}

/* ========= SECTION CTA (WhatsApp) ========= */
.section-cta {
  text-align: center; margin-top: 28px; padding-top: 8px;
}

.btn-whatsapp {
  background: #25D366; color: #fff;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 0.95rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s ease; border: none; cursor: pointer;
}
.btn-whatsapp::before {
  content: '';
  display: inline-block; width: 20px; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  flex-shrink: 0;
}
.btn-whatsapp:hover {
  background: #1EBE5D; transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* ========= DIVIDER ========= */
.section-divider {
  width: 40px; height: 3px; margin: 16px 0;
  background: var(--accent); border-radius: 2px;
}

/* ========= FOOTER ========= */
.footer {
  text-align: center; padding: 40px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--accent); margin-bottom: 4px;
}
.footer p { color: var(--text-muted); font-size: 0.8rem; }

/* ========= WHATSAPP FLOAT ========= */
.whatsapp-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* ========= FADE IN ========= */
.fade-in {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========= RESPONSIVE ========= */
@media (max-width: 600px) {
  .section { padding: 40px 16px; }
  .card { padding: 20px 18px; }
  .hero { padding: 84px 16px 40px; }
  .callout { padding: 16px 18px; }
}
