:root {
  --bg: #f4efe6;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fff8ef;
  --text: #14213d;
  --muted: #52607a;
  --line: rgba(20, 33, 61, 0.1);
  --primary: #ff6b00;
  --primary-dark: #d45500;
  --accent: #0b8f5a;
  --shadow: 0 20px 60px rgba(20, 33, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 107, 0, 0.18), transparent 24%),
    radial-gradient(circle at right center, rgba(11, 143, 90, 0.18), transparent 20%),
    linear-gradient(180deg, #fff8ef 0%, #f4efe6 100%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topbar,
.hero-grid,
.cards,
.cta-section {
  display: grid;
  gap: 24px;
}

.topbar {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 48px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand p,
.brand span,
.eyebrow,
.hero-metrics span,
.score-strip span,
.ad-panel-header span {
  margin: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #ffb000);
  color: white;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}

.brand p {
  font-weight: 800;
  font-size: 1.05rem;
}

.brand div span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero {
  padding-top: 8px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 0.95;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.8rem, 9vw, 6.6rem);
  font-weight: 400;
  margin: 12px 0 16px;
  letter-spacing: 0.02em;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.lead,
.card p,
.cta-copy p,
.hero-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), #ff8c32);
  color: white;
  box-shadow: 0 14px 30px rgba(255, 107, 0, 0.28);
}

.button-outline,
.button-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.button-large {
  padding: 16px 28px;
}

.hero-metrics {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-metrics li,
.card,
.hero-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-metrics li {
  padding: 18px;
  border-radius: 24px;
}

.hero-metrics strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.hero-metrics span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.hero-card {
  border-radius: 32px;
  overflow: hidden;
}

.score-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  color: white;
  background: linear-gradient(90deg, #14213d, #1f3f73);
}

.score-strip strong {
  font-size: 1.05rem;
}

.ad-panel {
  padding: 22px;
}

.ad-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.audience-grid {
  display: grid;
  gap: 14px;
}

.audience-grid article {
  padding: 18px;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.audience-grid h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

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

.section {
  padding: 88px 0 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 28px;
  border-radius: 28px;
}

.accent-section .card {
  background: rgba(255, 248, 239, 0.82);
}

.cta-section {
  grid-template-columns: 1.2fr auto;
  align-items: center;
  padding: 32px;
  margin-top: 88px;
  border-radius: 32px;
  background: linear-gradient(135deg, #14213d, #1d3557);
  color: white;
  box-shadow: var(--shadow);
}

.cta-section .eyebrow,
.cta-section p {
  color: rgba(255, 255, 255, 0.78);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  padding: 14px 20px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.34);
}

@media (max-width: 900px) {
  .hero-grid,
  .three-up,
  .split,
  .cta-section,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .topbar {
    grid-template-columns: 1fr;
  }

  .topbar .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 16px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .button,
  .floating-whatsapp {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 10px;
    left: 10px;
    bottom: 10px;
    text-align: center;
  }
}
