:root {
  --text: #17262c;
  --muted: #46606b;
  --line: #d8e2e0;
  --brand: #026f7f;
  --brand-strong: #035565;
  --accent: #e5842a;
  --accent-strong: #c46f20;
  --whatsapp: #25d366;
  --whatsapp-strong: #1da851;
  --surface: rgba(255, 255, 255, 0.95);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #eef2e6 0%, #f8f6f0 45%, #eef5f7 100%);
  overflow-x: hidden;
  padding: 24px 16px 30px;
}

.bg-glow {
  position: fixed;
  width: 44vw;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-a {
  top: -18vw;
  left: -18vw;
  background: rgba(0, 140, 155, 0.2);
}

.bg-glow-b {
  bottom: -18vw;
  right: -18vw;
  background: rgba(240, 133, 42, 0.2);
}

.topbar {
  width: min(1120px, 100%);
  margin: 0 auto 12px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(19, 35, 44, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.brand-wrap {
  display: grid;
  gap: 1px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.link-login {
  color: #26414e;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}

.link-login:hover {
  color: var(--brand-strong);
}

.brand {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brand-strong);
}

.brand-sub {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.topnav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.topnav a {
  color: #26414e;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
}

.topnav a:hover {
  color: var(--brand-strong);
}

.landing {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero,
.journey,
.card,
.case,
.cta,
.faq {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  box-shadow: 0 10px 32px rgba(19, 35, 44, 0.08);
}

.hero {
  padding: clamp(24px, 5vw, 56px);
}

.pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  color: #f4fffe;
  background: linear-gradient(120deg, #0a4e58, #037f91);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  margin-top: 18px;
  max-width: 18ch;
  font-size: clamp(2rem, 5.4vw, 3.5rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

.hero p {
  margin-top: 14px;
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  text-decoration: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, filter 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--brand), var(--brand-strong));
}

.btn-ghost {
  color: var(--brand-strong);
  border: 1px solid #a7bcc4;
  background: rgba(255, 255, 255, 0.86);
}

.btn-whatsapp {
  color: #06341c;
  background: linear-gradient(130deg, var(--whatsapp), var(--whatsapp-strong));
}

.btn-whatsapp:hover {
  filter: brightness(1.05);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.88rem;
  border-radius: 10px;
}

.ico {
  font-size: 1.05em;
  line-height: 1;
}

.hero-checks {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #cedce2;
  background: linear-gradient(140deg, #ffffff, #f5f9fa);
  padding: 12px 14px;
  color: #123241;
  font-size: 0.98rem;
  font-weight: 700;
}

.check {
  font-size: 1.1rem;
}

.features,
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card,
.case {
  padding: 24px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(140deg, #eaf6f6, #dcecef);
  border: 1px solid var(--line);
}

.journey {
  padding: 28px clamp(20px, 4vw, 32px);
  display: grid;
  gap: 6px;
}

.journey-sub {
  margin-bottom: 8px;
}

.steps {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.steps li > div {
  display: grid;
  gap: 2px;
}

.steps strong {
  color: #132c36;
  font-size: 1.05rem;
}

.steps p {
  margin-top: 0;
}

.step-num {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(130deg, var(--brand), var(--brand-strong));
}

.cases {
  display: grid;
  gap: 14px;
}

.case-tag {
  color: var(--accent-strong);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  font-weight: 800;
}

.faq {
  padding: clamp(22px, 4vw, 36px);
  display: grid;
  gap: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  display: grid;
  gap: 6px;
}

.cta {
  padding: clamp(24px, 4.5vw, 42px);
  display: grid;
  gap: 12px;
}

.cta .btn {
  width: fit-content;
}

.footer {
  width: min(1120px, 100%);
  margin: 14px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer p {
  color: #587280;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer a {
  color: #587280;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.delay-1.in {
  transition-delay: 0.08s;
}

.delay-2.in {
  transition-delay: 0.16s;
}

.delay-3.in {
  transition-delay: 0.24s;
}

@media (max-width: 960px) {
  .features,
  .cases-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-checks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding: 16px 10px 22px;
  }

  .topbar {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .topnav {
    gap: 10px;
    flex-wrap: wrap;
  }

  .topbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .link-login {
    text-align: center;
  }

  .btn-sm {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .journey,
  .card,
  .case,
  .cta,
  .faq {
    border-radius: 18px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
