:root {
  --page-bg: #f7fbfb;
  --page-surface: rgba(255, 255, 255, .82);
  --page-surface-soft: rgba(18, 32, 35, .045);
  --page-text: #122023;
  --page-muted: rgba(18, 32, 35, .68);
  --page-line: rgba(18, 32, 35, .13);
  --page-accent: #55d6d0;
  --page-accent-2: #9aa5ac;
  --page-shadow: 0 18px 44px rgba(18, 32, 35, .10);
  --page-radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--page-text);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(900px 540px at 14% -6%, rgba(85, 214, 208, .18), transparent 60%),
    radial-gradient(760px 440px at 92% 2%, rgba(154, 165, 172, .12), transparent 58%),
    linear-gradient(180deg, var(--page-bg), #edf4f4);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.wrap {
  width: min(980px, calc(100% - 32px));
  max-width: 980px;
  margin-inline: auto;
  padding: 24px 0 56px;
}

.bar,
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-inline: calc((100% - min(1180px, calc(100% - 32px))) / 2);
  padding: 12px 0;
  background: rgba(248, 250, 252, .84);
  backdrop-filter: blur(14px);
}

.hero,
.card,
.box,
.tile,
.price,
details,
.pill,
.btn {
  border-radius: var(--page-radius);
}

.hero {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--page-line);
  background: var(--page-surface);
  box-shadow: var(--page-shadow);
}

h1,
h2,
h3 {
  color: var(--page-text);
  font-family: "Space Grotesk", "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0;
}

.icon { display: block; width: 1em; height: 1em; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

h1 {
  max-width: 13ch;
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
}

h2 {
  margin-top: 34px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

p,
li,
.lead,
.meta {
  color: var(--page-muted);
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.grid,
.cols,
.pricing {
  gap: 14px;
}

.card,
.box,
.tile,
.price,
details {
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, .74);
  box-shadow: none;
}

.card,
.box,
.tile,
.price {
  padding: 18px;
}

.pill,
.badge {
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, .74);
  color: var(--page-text);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #07100e;
  border: 1px solid rgba(85, 214, 208, .42);
  background: linear-gradient(135deg, var(--page-accent), #b8f1ef);
  box-shadow: 0 12px 26px rgba(85, 214, 208, .18);
  font-weight: 800;
  letter-spacing: -.01em;
  text-decoration: none;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(85, 214, 208, .26); }
.btn .icon { width: 18px; height: 18px; }

.btn.secondary {
  color: var(--page-text);
  background: rgba(255, 255, 255, .72);
  border-color: var(--page-line);
  box-shadow: none;
}
.btn.secondary:hover { box-shadow: 0 10px 22px rgba(18, 32, 35, .08); }

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid rgba(72, 214, 195, .48);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 24px, 980px);
  }

  .bar,
  .topbar {
    position: static;
    margin-inline: 0;
  }

  .bar > div,
  .topbar > div,
  .btn {
    width: 100%;
  }

  .hero,
  .grid,
  .cols,
  .pricing {
    grid-template-columns: 1fr;
  }
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: #1fb855;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 16px 34px rgba(16, 20, 24, .18), 0 0 0 6px rgba(37, 211, 102, .12);
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.whatsapp-float__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  overflow: hidden;
}

.whatsapp-float__mark img {
  width: 32px;
  height: 32px;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-float:hover {
    transform: translateY(-2px);
    background: #169f48;
  }
}

@media (max-width: 760px) {
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    padding: 6px 16px 6px 6px;
    gap: 7px;
    font-size: .92rem;
  }

  .whatsapp-float__mark {
    width: 34px;
    height: 34px;
  }

  .whatsapp-float__mark img {
    width: 28px;
    height: 28px;
  }
}
