:root {
  --bg: #f5efe4;
  --paper: #fffdf7;
  --ink: #251b16;
  --muted: #6c5c52;
  --line: rgba(54, 33, 17, 0.1);
  --gold: #c2873b;
  --gold-strong: #9a6426;
  --pine: #1f5a45;
  --pine-strong: #164233;
  --shadow: 0 22px 65px rgba(61, 39, 22, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(194, 135, 59, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(31, 90, 69, 0.12), transparent 28%),
    linear-gradient(180deg, #fcf6eb 0%, #f4ede2 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
code {
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
}

.site-header,
.site-footer,
.hero,
.section-grid,
.page-shell,
.sales-layout,
.tool-grid,
.center-screen,
.checklist-grid {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 0 14px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.site-nav a { color: var(--muted); font-weight: 700; }
.site-nav .nav-cta {
  color: var(--paper);
  background: var(--pine);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero,
.section-grid,
.tool-grid,
.checklist-grid {
  display: grid;
  gap: 22px;
}

.hero {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 24px 0 28px;
}

.hero-copy h1,
.panel h1,
.panel h2,
.article-panel h1,
.article-panel h2 {
  font-family: "Cormorant Garamond", serif;
  margin: 0 0 12px;
  line-height: 0.98;
}

.hero-copy h1,
.panel h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.panel h2,
.article-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.lead,
.panel p,
.article-panel p,
.microcopy,
.plain-list li,
.check-item,
.faq-list p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.eyebrow,
.section-kicker,
.card-tag {
  display: inline-flex;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--gold-strong);
}

.hero-actions,
.checklist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--pine), var(--pine-strong));
  box-shadow: 0 18px 40px rgba(31, 90, 69, 0.18);
}
.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.hero-points,
.plain-list,
.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li,
.plain-list li,
.check-list p {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.hero-card { display: flex; justify-content: center; }
.floating-card,
.panel,
.article-panel {
  background: rgba(255, 253, 247, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(76, 56, 35, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.floating-card { width: min(100%, 360px); padding: 28px; }
.floating-card blockquote {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.08;
}

.panel { padding: 28px; }
.panel-glow {
  background:
    radial-gradient(circle at top right, rgba(194, 135, 59, 0.16), transparent 34%),
    rgba(255, 253, 247, 0.88);
}
.panel-gold {
  background:
    linear-gradient(160deg, rgba(194, 135, 59, 0.12), rgba(255, 250, 242, 0.92));
}
.panel-cta { margin: 22px auto 48px; }
.section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px auto;
}
.stack-list,
.faq-list,
.testimonial-list {
  display: grid;
  gap: 18px;
}
.stack-list strong { display: block; margin-bottom: 6px; }

.article-list { display: grid; gap: 14px; }
.article-list-full { margin-top: 22px; }
.article-card {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}
.article-card span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-strong);
  font-weight: 800;
}
.article-card strong { font-size: 1.1rem; line-height: 1.4; }

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.lead-form label { display: grid; gap: 8px; }
.lead-form span { font-size: 0.9rem; font-weight: 700; }
.lead-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}

.urgency-bar,
.price-box,
.progress-shell {
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.urgency-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 24px 0 18px;
}

.price-box { margin-bottom: 24px; }
.price-box p { margin: 0; }
.price-box strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--pine);
}

.sales-layout,
.page-shell {
  display: grid;
  gap: 22px;
  padding-bottom: 48px;
}

.tool-grid,
.checklist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 48px;
}

.faq-list details {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}
.faq-list summary { cursor: pointer; font-weight: 800; }

.testimonial-list blockquote {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-md);
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 0 28px;
  color: var(--muted);
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #168c45);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(22, 140, 69, 0.28);
}

.center-screen { display: grid; place-items: center; min-height: 100vh; }
.narrow { width: min(calc(100% - 32px), 720px); }
.article-shell {
  width: min(calc(100% - 32px), 860px);
  margin: 0 auto;
  padding: 28px 0 48px;
}
.back-link {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 700;
}
.article-panel { padding: 32px; }
.inline-cta {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.progress-bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.08);
}
.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--pine));
  transition: width 0.2s ease;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}
.check-item input { margin-top: 4px; }

@media (max-width: 900px) {
  .hero,
  .section-grid,
  .tool-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  .site-header,
  .site-footer,
  .urgency-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .hero,
  .section-grid,
  .page-shell,
  .sales-layout,
  .tool-grid,
  .center-screen,
  .checklist-grid {
    width: min(calc(100% - 22px), var(--max-width));
  }
  .panel,
  .article-panel,
  .floating-card { padding: 22px; }
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}
