:root {
  --color-bg: #faf8f3;
  --color-bg-tint: #eef0e4;
  --color-text: #2c2c2a;
  --color-text-muted: #5f5e5a;
  --color-accent: #3b6d11;
  --color-accent-dark: #27500a;
  --color-border: #d3d1c7;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', Arial, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

a { color: var(--color-accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.serif-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 1rem;
}
.serif-title.center { text-align: center; }

.section {
  padding: 4rem 1.5rem;
}
.section--narrow {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.section--tint { background: var(--color-bg-tint); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,30,20,0.35), rgba(20,30,20,0.65));
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 560px;
}
.hero__kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  margin-bottom: 0.5rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.hero__subtitle { font-size: 16px; margin-bottom: 1rem; }
.hero__date { font-size: 14px; margin-bottom: 1rem; opacity: 0.95; }

.badge {
  display: inline-block;
  background: #e9c46a;
  color: #4a3500;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.badge--info { background: #cde0c4; color: var(--color-accent-dark); }

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-family: var(--font-sans);
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; text-decoration: none; }
.btn--light { background: #fff; color: #1a2e1a; display: block; width: fit-content; margin: 0 auto; }
.btn--solid { background: var(--color-accent); color: #fff; border: none; }

/* SOBRE DIANA */
.about-diana {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem auto 0;
}
.about-diana__photo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.about-diana__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2px;
}
.about-diana__role {
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.about-diana__bio {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
}
.about-diana__ig { font-size: 13px; }

@media (max-width: 600px) {
  .about-diana { flex-direction: column; align-items: center; text-align: center; }
}

/* INTRO */
.intro { text-align: center; }
.intro p { font-size: 16px; color: var(--color-text-muted); max-width: 480px; margin: 0 auto; }

/* PILLARS */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.pillar img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.pillar p { font-size: 14px; color: var(--color-text-muted); }

/* INCLUDES */
.includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.includes__img { width: 100%; border-radius: 8px; height: 280px; object-fit: cover; margin: 0 auto; }
.includes__list { list-style: none; font-size: 16px; }
.includes__list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.includes__list li:before { content: "🌿 "; }

/* LEAD MAGNET */
.leadmagnet { text-align: center; }
.leadmagnet p { color: var(--color-text-muted); margin-bottom: 1.5rem; }

/* FORMS */
.form { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }
.form--inline { flex-direction: row; max-width: 420px; }
.form input {
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  flex: 1;
}
.form__note { font-size: 12px; color: var(--color-text-muted); text-align: center; margin-top: 0.75rem; }
.form__note--confirm {
  font-size: 14px;
  font-weight: 500;
  min-height: 1.2em;
}
.form__note--confirm.is-success { color: var(--color-accent-dark); }
.form__note--confirm.is-error { color: #b3261e; }

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.testimonial { font-style: italic; font-size: 14px; color: var(--color-text-muted); }
.testimonial--placeholder {
  border: 1px dashed var(--color-border);
  border-radius: 8px;
  padding: 1.25rem;
  opacity: 0.7;
}
.testimonial cite { display: block; font-size: 12px; margin-top: 0.5rem; font-style: normal; }

/* DETAILS TABLE */
.details { width: 100%; font-size: 15px; border-collapse: collapse; }
.details th, .details td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--color-border); }
.details th { font-weight: 500; width: 30%; }
.details .note { font-size: 12px; opacity: 0.7; }

/* FOOTER */
.footer {
  text-align: center;
  padding: 3rem 1.5rem 6rem;
  background: var(--color-accent-dark);
  color: #fff;
}
.footer__brand { font-family: var(--font-serif); font-size: 18px; margin-bottom: 0.75rem; }
.footer__contact { font-size: 14px; margin-bottom: 0.5rem; }
.footer__contact a { color: #fff; text-decoration: underline; }
.footer__legal { font-size: 12px; opacity: 0.7; margin-top: 1rem; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 999;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero__title { font-size: 48px; }
  .pillars { grid-template-columns: 1fr; }
  .includes { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .includes__list { max-width: 320px; margin: 0 auto; }
  .testimonials { grid-template-columns: 1fr; }
  .form--inline { flex-direction: column; }
}
