:root {
  --bg: #f3efe6;
  --bg-2: #e7ddcd;
  --text: #213021;
  --muted: #5d675b;
  --accent: #4f7244;
  --accent-dark: #37552e;
  --card: rgba(255,255,255,0.65);
  --border: rgba(33, 48, 33, 0.12);
  --shadow: 0 18px 50px rgba(24, 33, 24, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(79,114,68,0.12), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #f8f4eb 48%, #efe6d7 100%);
}
a { color: inherit; text-decoration: none; }
.hero {
  
  padding: 24px clamp(20px, 4vw, 56px) 60px;
  color: #fff;
  background:
    linear-gradient(rgba(12, 18, 12, 0.36), rgba(12, 18, 12, 0.36)),
    url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1600&q=80') center/cover;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.brand {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; }
.brand-lockup .logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  padding: 4px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a { opacity: 0.94; }
.hero-content {
  max-width: 760px;
  padding: 12vh 0 8vh;
}
.hero-logo {
  width: 180px;
  max-width: 70vw;
  height: auto;
  display: block;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.92);
  padding: 10px;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.eyebrow, .section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  opacity: 0.9;
}
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  line-height: 0.96;
  margin: 0.4rem 0 1rem;
}
.lead {
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.7rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.btn:hover, .card-link:hover, .link-box:hover { transform: translateY(-1px); }
.primary { background: var(--accent); color: #fff; }
.primary:hover { background: var(--accent-dark); }
.ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.18); }
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.intro, .split, .notes { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: center; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card, .contact-pill, .link-box {
  padding: 24px;
  background: var(--card);
  border-radius: 22px;
  border: 1px solid var(--border);
}
.card h3, .intro h2, .split h2, .notes h2 { margin-top: 0; }
.card p, .intro p, .split p, .notes p { color: var(--muted); line-height: 1.75; }
.card-link { display: inline-block; margin-top: 10px; color: var(--accent-dark); font-weight: 700; }
.link-boxes { display: grid; gap: 14px; }
.link-box { display: flex; flex-direction: column; gap: 6px; }
.link-box span { font-weight: 700; font-size: 1.05rem; }
.link-box small { color: var(--muted); }
.whatsapp { border-left: 5px solid #25d366; }
.facebook { border-left: 5px solid #128C7E; }
.instagram { border-left: 5px solid #2E7D32; }
.external1 { border-left: 5px solid #1B5E20; }
.external2 { border-left: 5px solid #98D8AA; }

.contact-pill p { margin: 0 0 10px; }
.contact-pill p:last-child { margin-bottom: 0; }
.imprint p { color: var(--muted); line-height: 1.75; }
.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 30px;
  text-align: center;
  color: var(--muted);
}
@media (max-width: 900px) {
  .intro, .split, .notes, .cards { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding-top: 10vh; }
}


.imprint-logo-wrap { margin-top: 22px; text-align: center; }
.imprint-logo-wrap .logo { width: 96px; height: 96px; object-fit: contain; border-radius: 18px; padding: 6px; background: rgba(255,255,255,0.92); box-shadow: 0 14px 30px rgba(0,0,0,0.12); }
@media (max-width: 900px) { .imprint-logo-wrap .logo { width: 76px; height: 76px; } }


.download-links {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}
.download-links .card-link {
  margin-top: 0;
}
