:root {
  --clay: #c4603a;
  --clay-dark: #9f4b2c;
  --clay-soft: #d97b55;
  --cream: #f7f0e6;
  --cream-soft: #fbf7ef;
  --warm: #eadfce;
  --sand: #d7c6aa;
  --ink: #2a1a0e;
  --ink-soft: #6f5d50;
  --white: #fffefa;
  --green: #20c963;
  --green-dark: #159a49;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  z-index: 10;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(196, 96, 58, 0.08), transparent 22rem),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.38), transparent 26rem);
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  background: rgba(247, 240, 230, 0.92);
  border-bottom: 1px solid rgba(196, 96, 58, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 3px;
  color: var(--white);
  background: var(--clay);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--clay);
  border-radius: 3px;
  box-shadow: 0 12px 24px rgba(196, 96, 58, 0.22);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  inset: 0 0 0 auto;
  width: 55%;
  background: linear-gradient(135deg, var(--warm), var(--sand));
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-orbit {
  position: absolute;
  right: 15%;
  bottom: 10%;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(196, 96, 58, 0.2);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--clay);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 48px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--clay-soft);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: clamp(3rem, 8vw, 6.25rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 em,
h2 em {
  color: var(--clay);
  font-style: italic;
}

.hero-copy,
.hero-note {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.62;
}

.hero-note {
  max-width: 610px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 4px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.button-whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 32px rgba(32, 201, 99, 0.24);
}

.button-whatsapp:hover {
  background: var(--green-dark);
}

.button-outline {
  color: var(--clay);
  border: 2px solid var(--clay);
  background: rgba(255, 255, 255, 0.25);
}

.promise-section,
.footer {
  background: var(--ink);
  color: var(--cream);
}

.promise-section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.promise-section h2 {
  max-width: 680px;
  margin: 0 0 44px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.promise-grid article {
  padding: 8px 28px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.promise-grid h3 {
  margin: 22px 0 10px;
  font-size: 1.1rem;
}

.promise-grid p {
  margin: 0;
  color: rgba(247, 240, 230, 0.66);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.section,
.audience-section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.centered-label {
  justify-content: center;
}

.section-heading h2,
.audience-layout h2,
.cta-section h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading p,
.audience-layout p,
.cta-content p {
  color: var(--ink-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.step,
.quote-box {
  border: 1px solid rgba(196, 96, 58, 0.2);
  border-radius: 6px;
  background: var(--white);
}

.card {
  min-height: 245px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(42, 26, 14, 0.05);
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 10px;
  color: var(--clay);
  background: rgba(196, 96, 58, 0.1);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.card h3,
.step h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.card p,
.step p {
  margin: 0;
  color: var(--ink-soft);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.68;
}

.audience-section {
  background: var(--warm);
}

.audience-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink-soft);
  line-height: 1.55;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

.quote-box {
  padding: 34px;
  border-left: 4px solid var(--clay);
}

.quote-box p {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 1.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  line-height: 1.48;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  padding: 9px 14px;
  border: 1px solid rgba(196, 96, 58, 0.18);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--cream-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  min-height: 300px;
  padding: 34px 28px;
  overflow: hidden;
}

.step-muted {
  background: var(--warm);
}

.step strong {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--clay);
  font-family: Arial, Helvetica, sans-serif;
}

.step::after {
  content: attr(data-step);
}

.cta-section {
  padding: clamp(70px, 9vw, 120px) 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--clay), var(--clay-dark));
}

.cta-content {
  max-width: 760px;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
}

.cta-content p {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.78);
}

.play-section {
  padding: clamp(70px, 9vw, 120px) 0;
  background:
    linear-gradient(180deg, var(--cream), var(--cream-soft));
}

.play-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: center;
}

.play-copy h2 {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.play-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 1.72;
}

.game-shell {
  overflow: hidden;
  border: 1px solid rgba(42, 26, 14, 0.18);
  border-radius: 10px;
  background: #fdfdfd;
  box-shadow: 0 24px 70px rgba(42, 26, 14, 0.16);
}

.game-shell iframe {
  display: block;
  width: 100%;
  height: min(70vh, 560px);
  min-height: 420px;
  border: 0;
  background: white;
}

.footer {
  padding: 38px 0;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.footer p {
  margin: 0;
  color: rgba(247, 240, 230, 0.58);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

.footer a {
  color: var(--cream);
  text-decoration: none;
}

@media (max-width: 920px) {
  .hero-shape {
    width: 42%;
    opacity: 0.55;
  }

  .promise-grid,
  .cards,
  .steps,
  .audience-layout,
  .play-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-shape,
  .hero-orbit {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    text-align: center;
  }

  .promise-grid,
  .cards,
  .steps,
  .audience-layout,
  .play-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .game-shell iframe {
    height: 520px;
    min-height: 480px;
  }

  .footer-layout {
    display: grid;
    text-align: left;
  }
}
