:root {
  --bg: #f5efe8;
  --bg-soft: #fbf7f2;
  --ink: #1f1a15;
  --muted: #6b5f55;
  --accent: #b94236;
  --accent-dark: #9f2f24;
  --cream: #fff7ee;
  --line: #e6d7c6;
  --shadow: 0 24px 60px rgba(31, 26, 21, 0.12);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at top, #fffaf4 0%, #f3e9dd 38%, #e9dccd 100%);
  color: var(--ink);
}
img {
  max-width: 100%;
  display: block;
}
.topbar {
  background: #efe5da;
  border-bottom: 1px solid #e4d5c6;
  font-size: 14px;
}
.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__note {
  margin-left: auto;
}
.topbar__cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav {
  position: sticky;
  top: 0;
  backdrop-filter: blur(6px);
  background: rgba(255, 250, 244, 0.92);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: "Newsreader", serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--accent);
}
.logo span {
  color: var(--ink);
  font-weight: 500;
  margin-left: 6px;
}
.nav__links {
  display: flex;
  gap: 20px;
  font-size: 15px;
}
.nav__links a {
  color: var(--muted);
  text-decoration: none;
}
.nav__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn {
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}
.btn--solid {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(185, 66, 54, 0.2);
}
.btn--solid:hover {
  background: var(--accent-dark);
}
.btn--outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.btn--ghost {
  background: #fff;
  border: 1px solid var(--line);
}
.btn--text {
  background: none;
  color: var(--muted);
}
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.whatsapp-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.hero {
  padding: 60px 24px 40px;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}
.hero__kicker {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.hero h1 {
  font-family: "Newsreader", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero h1 span {
  color: var(--accent);
}
.hero p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.hero__actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__stats {
  margin-top: 28px;
  display: flex;
  gap: 28px;
  color: var(--muted);
}
.hero__stats strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}
.hero__visual {
  position: relative;
}
.device {
  background: #ffffff;
  border-radius: 26px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid #f0e6da;
}
.device__header {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.device__header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0d4c7;
}
.device__screen {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card {
  background: var(--cream);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #f1e2d3;
}
.card--large {
  grid-column: span 2;
}
.card--shot {
  grid-column: span 2;
}
.card h3,
.card h4 {
  font-size: 14px;
  color: var(--muted);
}
.card p {
  font-size: 22px;
  font-weight: 600;
  margin-top: 6px;
}
.spark {
  height: 36px;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(185, 66, 54, 0.2), rgba(185, 66, 54, 0.6));
  border-radius: 8px;
}
.chip {
  background: rgba(185, 66, 54, 0.15);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
}
.card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.float-card {
  position: absolute;
  right: -10px;
  top: 30px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  border: 1px solid #f1e2d3;
}
.float-card--alt {
  right: auto;
  left: -12px;
  top: auto;
  bottom: -20px;
}
.pos-mock {
  background: #fffaf4;
  border-radius: 12px;
  border: 1px solid #f1e2d3;
  padding: 10px;
}
.pos-shot-wrap:not(.is-missing) .pos-mock {
  display: none;
}
.pos-shot {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #f1e2d3;
  box-shadow: 0 16px 34px rgba(31, 26, 21, 0.12);
}
.pos-shot-wrap.is-missing .pos-shot {
  display: none;
}
.pos-mock__head {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}
.pos-mock__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pos-mock__title {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}
.pos-mock__pill {
  background: #fff;
  border: 1px solid #efddcc;
  border-radius: 10px;
  padding: 6px 8px;
  font-size: 12px;
  margin-bottom: 6px;
}
.pos-mock__pill.active {
  background: rgba(185, 66, 54, 0.12);
  border-color: rgba(185, 66, 54, 0.4);
  color: var(--accent-dark);
  font-weight: 600;
}
.pos-mock__item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed #eadbc8;
}
.pos-mock__item:last-child {
  border-bottom: 0;
}
.features,
.pricing,
.cta {
  padding: 40px 24px;
}
.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section__head {
  margin-bottom: 24px;
}
.section__head--center {
  text-align: center;
}
.section__head h2 {
  font-size: 28px;
  font-family: "Newsreader", serif;
}
.section__head p {
  color: var(--muted);
}
.features__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.features__grid article {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #f1e2d3;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.features__grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(31, 26, 21, 0.08);
}
.features__grid article.active {
  border-color: rgba(185, 66, 54, 0.6);
  box-shadow: 0 14px 28px rgba(185, 66, 54, 0.12);
}
.feature-preview {
  margin-top: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f1e2d3;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-preview > div:nth-child(2) {
  flex: 1 1 auto;
  min-width: 0;
}
.feature-preview__badge {
  background: rgba(185, 66, 54, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}
.feature-preview__media {
  flex: 0 0 240px;
  max-width: 240px;
  opacity: 0;
  transform: translateY(-8px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease, opacity 260ms ease, transform 320ms ease;
}
.feature-preview__media.is-open {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
}
.feature-preview__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid #f1e2d3;
  box-shadow: 0 18px 40px rgba(31, 26, 21, 0.14);
}
.pricing__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #f1e2d3;
  position: relative;
}
.price-card--highlight {
  border: 2px solid var(--accent);
  transform: translateY(-6px);
}
.price-card .badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}
.price {
  font-size: 28px;
  font-weight: 700;
  margin: 12px 0;
}
.price-note {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}
.price-card ul {
  list-style: none;
  color: var(--muted);
  margin-bottom: 16px;
}
.price-card li {
  margin-bottom: 8px;
}
.cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 28px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f1e2d3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.footer-sep {
  margin: 0 6px;
  color: #c7b6a5;
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
  .hero__stats {
    flex-direction: column;
  }
  .float-card,
  .float-card--alt {
    position: static;
    margin-top: 12px;
  }
  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-preview {
    flex-direction: column;
  }
  .feature-preview__media {
    flex-basis: auto;
    max-width: 100%;
    width: 100%;
  }
}
