* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: oklch(0.975 0.006 75);
  --bg-alt: oklch(0.95 0.012 70);
  --paper: oklch(0.99 0.004 75);
  --ink: oklch(0.24 0.012 55);
  --ink-soft: oklch(0.47 0.014 55);
  --ink-faint: oklch(0.52 0.014 60);
  --line: oklch(0.885 0.012 65);
  --line-soft: oklch(0.93 0.008 65);
  --terracotta: oklch(0.55 0.13 45);
  --terracotta-deep: oklch(0.42 0.12 42);
  --terracotta-soft: oklch(0.93 0.03 45);
  --sage: oklch(0.55 0.1 150);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.serif, h1, h2, h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

a {
  color: var(--terracotta);
  text-decoration: none;
}
a:hover {
  color: var(--terracotta-deep);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 72px 0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracotta);
  color: var(--paper);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.btn-whatsapp:hover {
  background: var(--terracotta-deep);
  color: var(--paper);
}

@media (max-width: 640px) {
  section { padding: 48px 0; }
  .container { padding: 0 20px; }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  font-family: 'Newsreader', Georgia, serif;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.header-nav a:not(.btn-whatsapp) {
  color: var(--ink-soft);
}
.header-nav a:not(.btn-whatsapp):hover {
  color: var(--terracotta);
}
@media (max-width: 640px) {
  .header-nav a:not(.btn-whatsapp) { display: none; }
}

/* ---------- Hero split ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: rise 0.7s ease both; }

.hero-split {
  padding: 64px 0 80px 0;
}
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  background: var(--terracotta-soft);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero-split h1 {
  font-size: 48px;
  line-height: 1.06;
  margin-bottom: 22px;
}
.hero-split h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-split > .container > div:first-child > p,
.hero-split-grid p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-faint);
}

.hero-shot-wrap {
  position: relative;
}
.hero-shot {
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px oklch(0.24 0.012 55 / 0.25), 0 0 0 1px var(--line);
  overflow: hidden;
  transform: rotate(1deg);
}
.hero-shot-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.hero-shot-toolbar .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot-1 { background: oklch(0.75 0.09 40); }
.dot-2 { background: oklch(0.85 0.08 85); }
.dot-3 { background: oklch(0.78 0.07 145); }
.hero-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 562;
  display: block;
}
.hero-shot-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  max-width: calc(100% - 24px);
  background: var(--terracotta);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 24px -10px oklch(0.42 0.12 42 / 0.5);
}

@media (max-width: 900px) {
  .hero-split-grid { grid-template-columns: 1fr; }
  .hero-split h1 { font-size: 36px; }
  .hero-shot-wrap { margin-top: 24px; }
  .hero-split-grid p { max-width: none; }
}

@media (max-width: 560px) {
  .hero-split { padding: 40px 0 56px 0; }
  .hero-split h1 { font-size: 28px; }
  .hero-split-grid p { font-size: 16px; }
  .hero-shot { transform: none; border-radius: 12px; }
  .hero-shot-badge {
    position: static;
    display: inline-block;
    margin-top: 14px;
    max-width: 100%;
    font-size: 12px;
    padding: 10px 16px;
  }
}

/* ---------- Video demo ---------- */
.video-demo {
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.video-demo h2 {
  font-size: 30px;
  margin-bottom: 8px;
}
.video-demo > .container > p {
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.video-frame {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px -20px oklch(0.24 0.012 55 / 0.3);
}

/* ---------- Visão geral ---------- */
.visao-geral {
  border-top: 1px solid var(--line-soft);
}
.visao-geral-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
.visao-geral-item {
  text-align: center;
}
.visao-geral-item svg {
  margin: 0 auto 12px auto;
}
.visao-geral-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.visao-geral-item p {
  font-size: 13px;
  color: var(--ink-soft);
}
@media (max-width: 780px) {
  .visao-geral-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .visao-geral-grid { grid-template-columns: 1fr; }
}

/* ---------- Bento modules ---------- */
.bento {
  border-top: 1px solid var(--line-soft);
}
.bento-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}
.bento-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  grid-column: span 3;
}
.bento-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.bento-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.bento-card svg {
  margin-bottom: 12px;
}
.bento-card-tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.bento-card-dark {
  background: var(--ink);
  border: none;
}
.bento-card-dark h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}
.bento-card-dark p {
  color: oklch(0.78 0.015 60);
  max-width: 300px;
}
.bento-glow {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.55 0.13 45 / 0.35) 0%, transparent 70%);
}
.bento-card-top {
  position: relative;
}
.bento-card-cta {
  position: relative;
  font-size: 13px;
  color: var(--terracotta);
  font-weight: 600;
}
.bento-card-soft {
  background: var(--terracotta-soft);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-card-soft h3,
.bento-card-soft p {
  color: var(--terracotta-deep);
}
.bento-card-soft p {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bento-card { grid-column: span 1 !important; grid-row: auto !important; }
}
@media (max-width: 560px) {
  .bento-grid { grid-template-columns: 1fr; }
}

/* ---------- Planos ---------- */
.planos {
  background: var(--bg-alt);
  text-align: center;
  border-top: 1px solid var(--line-soft);
}
.planos h2 {
  font-size: 30px;
  margin-bottom: 8px;
}
.planos > .container > p {
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}
.plano-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.plano-card.destaque {
  border-color: var(--terracotta);
  box-shadow: 0 8px 24px -12px oklch(0.5 0.13 45 / 0.35);
}
.plano-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.plano-card .preco {
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin: 12px 0 18px 0;
  font-family: 'Work Sans', sans-serif;
}
.plano-card .preco span {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-faint);
}
.plano-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
@media (max-width: 780px) {
  .planos-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA final ---------- */
.cta-final {
  text-align: center;
  background: var(--ink);
  border-radius: 32px;
  margin: 0 24px 24px 24px;
  padding: 72px 24px;
}
.cta-final h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 24px;
}

.site-footer {
  padding: 32px 0;
  text-align: center;
  color: var(--ink-faint);
  font-size: 13px;
}
