:root {
  --primary: #5b2d90;
  --primary-2: #7e57c2;
  --primary-3: #efe8fb;
  --text: #1f2937;
  --muted: #5b6472;
  --bg: #ffffff;
  --bg-soft: #f6f4fb;
  --ok: #2e7d32;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(26, 26, 26, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.narrow { width: min(820px, 92%); margin: 0 auto; }
.center { text-align: center; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ececf2;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 16px;
}

.logo-link { display: inline-block; }

.logo {
  height: auto;
  width: clamp(180px, 22vw, 260px);
  object-fit: contain;
}

.logo--footer { width: 200px; margin-bottom: 8px; }

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover { color: var(--primary); }

.hero {
  padding: 70px 0 60px;
  background:
    radial-gradient(1200px 500px at -10% -20%, #ece2fb 0, transparent 60%),
    radial-gradient(900px 500px at 110% 0%, #f3ecff 0, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f9f5ff 100%);
}

.hero__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero__content { max-width: 600px; }

.eyebrow {
  display: inline-block;
  color: var(--primary);
  background: var(--primary-3);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 14px;
  color: #14102a;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 800;
}

.hl {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  font-weight: 800;
}

h3 { font-size: 1.1rem; font-weight: 700; }

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 22px;
  max-width: 60ch;
}

.section p { max-width: 70ch; }
.center p, .narrow p { margin-left: auto; margin-right: auto; }

.checks {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}

.checks li {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 22px;
  letter-spacing: 0.3px;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 8px 18px rgba(91,45,144,0.28);
}

.btn:hover { transform: translateY(-1px); background: #4b2479; }
.btn--sm { padding: 10px 14px; font-size: 0.92rem; box-shadow: none; }
.btn--lg { padding: 18px 28px; font-size: 1.05rem; }

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn--ghost:hover { background: var(--primary-3); }

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.trustline span {
  position: relative;
  padding-left: 16px;
}

.trustline span::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary-2);
  position: absolute; left: 0; top: 7px;
}

.hero__imageWrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.section { padding: 80px 0; }
.section--soft { background: var(--bg-soft); }

.sub {
  margin-top: -4px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

.two-col {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.card-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

.grid { display: grid; gap: 16px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border: 1px solid #ece7f7;
  border-radius: 14px;
  padding: 18px 18px 18px 22px;
  box-shadow: 0 6px 20px rgba(32, 20, 54, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  min-height: 92px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(32, 20, 54, 0.10);
}

.dot {
  flex: 0 0 auto;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  margin-top: 6px;
  box-shadow: 0 0 0 4px var(--primary-3);
}

.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.step {
  background: #fff;
  border: 1px solid #ebe9f4;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 6px 16px rgba(32, 20, 54, 0.05);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq {
  background: #fff;
  border: 1px solid #ece7f7;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(32,20,54,0.04);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-weight: 800;
  margin-left: 8px;
}

.faq[open] summary::after { content: "−"; }
.faq p { margin-top: 10px; color: var(--muted); }

.cta-final {
  background: linear-gradient(135deg, #efe6ff 0%, #f8f4ff 100%);
}

.contact-inline {
  margin-top: 14px;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.05rem;
}

.footer {
  border-top: 1px solid #ececf2;
  padding: 36px 0 0;
  background: #fff;
  font-size: 0.95rem;
}

.footer__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding-bottom: 24px;
}

.footer__bottom {
  border-top: 1px solid #f1eef7;
  padding: 16px 0;
  text-align: center;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.whatsapp-float:hover { background: #1ebe5b; }

@media (max-width: 980px) {
  .hero { padding: 50px 0; }
  .hero__grid, .two-col { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}

@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .grid--3, .steps { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .whatsapp-float { right: 12px; left: 12px; text-align: center; }
}

.logo {
  height: 64px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

.logo--footer {
  height: 72px;
  max-width: 260px;
  margin-bottom: 8px;
}

.topbar__inner {
  min-height: 84px;
  padding: 10px 0;
}

@media (max-width: 620px) {
  .logo { height: 50px; max-width: 180px; }
}

@media (max-width: 980px) {
  .topbar-wa { display: none !important; }
}
