/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --cream:        #FAF6EF;
  --cream-deep:   #F0E9DE;
  --white:        #FFFFFF;
  --border:       #E2DBD0;
  --border-light: #EDE8E0;
  --muted:        #C8BFB2;
  --warm-gray:    #8A8070;
  --navy:         #1B1F3B;
  --navy-mid:     #2D3561;
  --ink:          #0D0D0D;
  --success:      #2A6B47;
  --error:        #B03A2E;

  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  --shadow-sm:  0 1px 3px rgba(27,31,59,0.06), 0 1px 2px rgba(27,31,59,0.04);
  --shadow-md:  0 4px 16px rgba(27,31,59,0.08), 0 2px 6px rgba(27,31,59,0.05);
  --shadow-lg:  0 16px 48px rgba(27,31,59,0.10), 0 4px 16px rgba(27,31,59,0.06);
  --shadow-xl:  0 32px 80px rgba(27,31,59,0.13), 0 8px 24px rgba(27,31,59,0.07);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

section { padding: 112px 0; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
.label {
  font-family: 'Inter';
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.display {
  font-family: 'Syne';
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.h1 {
  font-family: 'Syne';
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.h2 {
  font-family: 'Syne';
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.h3 {
  font-family: 'Syne';
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.body-lg {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--warm-gray);
}

.body-md {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--warm-gray);
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne';
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta .btn-primary {
  padding: 9px 18px;
  font-size: 12px;
}

.nav-cta .btn-ghost {
  padding: 9px 14px;
  font-size: 12px;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  padding: 13px 27px;
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--warm-gray);
  padding: 14px 20px;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
}
.btn-ghost:hover { color: var(--navy); }

.btn-lg {
  font-size: 14px;
  padding: 16px 36px;
  border-radius: var(--radius-md);
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: 'Syne';
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Inter';
  font-size: 14px;
  font-weight: 400;
  color: var(--warm-gray);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ─────────────────────────────────────────
   PILL / BADGE
───────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter';
  font-size: 12px;
  font-weight: 500;
  color: var(--warm-gray);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  letter-spacing: 0.01em;
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter';
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.tag-cream { background: var(--cream-deep); color: var(--warm-gray); }
.tag-navy  { background: var(--navy); color: var(--white); }
.tag-launch {
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────── */
.section-header {
  margin-bottom: 64px;
}
.section-header .label { margin-bottom: 16px; display: block; }

/* ─────────────────────────────────────────
   VIDEO MOCKUPS
───────────────────────────────────────── */

/* Browser frame */
.browser-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  font-size: 0;
}

.browser-bar {
  height: 40px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
  flex-shrink: 0;
  font-size: 14px;
}
.browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.browser-url {
  flex: 1;
  height: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin: 0 12px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.browser-url span {
  font-family: 'Inter';
  font-size: 10px;
  color: var(--muted);
}

.browser-video {
  width: 100%;
  height: auto;
  display: block;
}

/* Phone frame — iPhone 17 style */
.phone-outer {
  width: 290px;
  background: #1C1C1E;
  border-radius: 50px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 32px 80px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.3);
  flex-shrink: 0;
  position: relative;
}
/* Power button */
.phone-outer::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 100px;
  width: 3px;
  height: 64px;
  background: #2C2C2E;
  border-radius: 0 2px 2px 0;
}
/* Volume buttons */
.phone-outer::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 80px;
  width: 3px;
  height: 36px;
  background: #2C2C2E;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 48px 0 #2C2C2E, 0 88px 0 #2C2C2E;
}
.phone-screen {
  background: #000;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
}
.phone-video {
  width: 100%;
  height: auto;
  display: block;
  min-height: 520px;
  object-fit: cover;
  object-position: top;
}

/* Feature video frame (smaller browser) */
.feature-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-size: 0;
}
.feature-frame-bar {
  height: 36px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 5px;
  font-size: 14px;
}
.feature-frame-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.feature-video {
  width: 100%;
  height: auto;
  display: block;
}

/* ─────────────────────────────────────────
   SECTION: HERO
───────────────────────────────────────── */
#hero {
  padding: 80px 0 96px;
}

.hero-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px;
}

.hero-content .pill { margin-bottom: 32px; }

.hero-headline {
  font-family: 'Syne';
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero-visual {
  margin-top: 72px;
  padding: 0 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────────
   SECTION: PAIN POINTS
───────────────────────────────────────── */
#pain {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pain-cell {
  background: var(--white);
  padding: 36px 32px;
}

.pain-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  opacity: 0.5;
}

.pain-cell h3 {
  font-family: 'Syne';
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pain-cell p {
  font-family: 'Inter';
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   SECTION: FEATURES
───────────────────────────────────────── */
#features {
  background: var(--cream);
}

.feature-row {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 96px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-text .label { display: block; margin-bottom: 16px; }
.feature-text h2 { margin-bottom: 16px; }
.feature-text p  { margin-bottom: 28px; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter';
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l2 2 4-4' stroke='%238A8070' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─────────────────────────────────────────
   SECTION: JJJ DIFFERENTIALS
───────────────────────────────────────── */
#jjj {
  background: var(--navy);
  padding: 112px 0;
}

#jjj .label { color: rgba(255,255,255,0.35); }
#jjj .h2    { color: var(--white); }
#jjj .body-lg { color: rgba(255,255,255,0.5); }

.jjj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}

.jjj-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.jjj-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.jjj-item-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.jjj-item-text h3 {
  font-family: 'Syne';
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.jjj-item-text p {
  font-family: 'Inter';
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   SECTION: APP DO ALUNO
───────────────────────────────────────── */
#app {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.app-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.app-feature-icon {
  width: 32px; height: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.app-feature-text h4 {
  font-family: 'Syne';
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.app-feature-text p {
  font-family: 'Inter';
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.5;
}

.app-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ─────────────────────────────────────────
   SECTION: PRICING
───────────────────────────────────────── */
#pricing {
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* Pricing founder callout */
.pricing-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  max-width: 480px;
  margin: 0 auto 48px;
  text-align: left;
}
.pricing-callout svg { flex-shrink: 0; margin-top: 1px; }
.pricing-callout p   { font-family: 'Inter'; font-size: 13px; color: var(--navy); line-height: 1.6; }

.pricing-wrap {
  max-width: 600px;
  margin: 0 auto;
}

/* Comparison grid: empty | Fundador | Público */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}

/* Column headers */
.pg-empty {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.pg-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.pg-head--featured {
  background: var(--navy);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.pg-head--featured .pg-head-label {
  font-family: 'Syne';
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.pg-head--featured .pg-head-sub {
  font-family: 'Inter';
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pg-head--public {
  background: var(--cream);
}

.pg-head--public .pg-head-label {
  font-family: 'Syne';
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.pg-head--public .pg-head-sub {
  font-family: 'Inter';
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Row label */
.pg-row-label {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 24px;
  display: flex;
  align-items: center;
}

.pg-row-label span {
  font-family: 'Inter';
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* Price cells */
.pg-cell {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pg-cell--featured {
  background: rgba(27,31,59,0.03);
  border-right: 1px solid var(--border);
}

.pg-cell--public {
  background: var(--white);
}

.pg-price {
  font-family: 'Inter';
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pg-price--muted {
  color: var(--muted);
  font-weight: 500;
}

.pg-period {
  font-family: 'Inter';
  font-size: 12px;
  color: var(--warm-gray);
}

.pg-period--muted {
  color: var(--muted);
}

.pg-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter';
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--success);
  background: rgba(42,107,71,0.08);
  padding: 3px 8px;
  border-radius: 100px;
  margin-top: 4px;
  width: fit-content;
}

/* Last row — no bottom border */
.pg-row-label:last-of-type,
.pg-cell:last-of-type {
  border-bottom: none;
}

/* Feature list */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter';
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.5;
}

.check-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--success);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─────────────────────────────────────────
   BACKGROUND IMAGES
───────────────────────────────────────── */

section {
  position: relative;
}

section > * {
  position: relative;
  z-index: 1;
}

.section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Base image styles */
.section-bg img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 42%;
  object-fit: cover;
  object-position: center;
  opacity: 0.08;
  mix-blend-mode: multiply;
}

/* Image anchored LEFT — gradient fades to the right */
.section-bg--left img {
  left: 0;
  -webkit-mask-image: linear-gradient(
    to right,
    black 0%,
    black 35%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    black 0%,
    black 35%,
    transparent 100%
  );
}

/* Image anchored RIGHT — gradient fades to the left */
.section-bg--right img {
  right: 0;
  left: auto;
  -webkit-mask-image: linear-gradient(
    to left,
    black 0%,
    black 35%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to left,
    black 0%,
    black 35%,
    transparent 100%
  );
}

/* Hero: mais evidente */
#hero .section-bg img {
  opacity: 0.35;
}

/* Dark sections: luminosity blend */
#jjj .section-bg img,
#cta-final .section-bg img {
  opacity: 0.12;
  mix-blend-mode: luminosity;
}

/* ─────────────────────────────────────────
   SECTION: CTA FINAL
───────────────────────────────────────── */
#cta-final {
  background: var(--navy);
  padding: 120px 0;
  text-align: center;
}

#cta-final .display { color: var(--white); margin-bottom: 20px; }
#cta-final .body-lg { color: rgba(255,255,255,0.45); max-width: 480px; margin: 0 auto 40px; }

#cta-final .btn-primary {
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  padding: 16px 40px;
}
#cta-final .btn-primary:hover {
  background: var(--cream);
}

#cta-final .hint {
  font-family: 'Inter';
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 56px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-logo {
  font-family: 'Syne';
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: 'Syne';
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.footer-links {
  display: flex;
  gap: 48px;
}
.footer-col h4 {
  font-family: 'Inter';
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-family: 'Inter';
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.75); }

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 24px 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: 'Inter';
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

/* ── Tablet ─────────────────────────────── */
@media (max-width: 1024px) {
  .container,
  .nav-inner,
  .footer-inner,
  .footer-bottom { padding-left: 32px; padding-right: 32px; }
  .container-sm   { padding-left: 32px; padding-right: 32px; }
  .hero-visual    { padding: 0 32px; }
  .feature-row    { gap: 48px; }
  .jjj-grid       { gap: 48px; }
  .app-grid       { gap: 64px; }
}

/* ── Mobile ─────────────────────────────── */
@media (max-width: 768px) {
  /* Prevent any element from overflowing horizontally */
  *, *::before, *::after { max-width: 100%; }

  section         { padding: 72px 0; }
  .container,
  .nav-inner,
  .footer-inner,
  .footer-bottom  { padding-left: 20px; padding-right: 20px; }
  .container-sm   { padding-left: 20px; padding-right: 20px; }
  .hero-visual    { padding: 0 20px; margin-top: 48px; }
  .hero-content   { padding: 0 20px; }

  /* Nav */
  .nav-links   { display: none; }
  .btn-ghost   { display: none; }
  .nav-inner   { height: 56px; }
  .nav-logo    { font-size: 20px; }

  /* Hero */
  .hero-content  { text-align: left; }
  .hero-sub      { font-size: 16px; margin-left: 0; margin-right: 0; }
  .hero-headline { font-size: clamp(34px, 9vw, 52px); }

  /* Pain — 2 cols */
  .pain-grid  { grid-template-columns: 1fr 1fr; }
  .pain-cell  { padding: 24px 20px; }

  /* Features — 1 col */
  .feature-row         { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .section-header      { margin-bottom: 40px; }

  /* JJJ */
  .jjj-grid  { grid-template-columns: 1fr; gap: 40px; }

  /* App — 1 col, phone on top, centered */
  .app-grid       { grid-template-columns: 1fr; gap: 40px; }
  .app-phone-wrap { order: -1; justify-content: center; }
  .phone-outer    { width: 200px; }

  /* Pricing — 2-col, sem coluna de label */
  .pricing-grid   { grid-template-columns: 1fr 1fr; }
  .pg-empty       { display: none; }
  .pg-row-label   { display: none; }
  .pg-cell        { padding: 16px 14px; }
  .pg-head        { padding: 14px 14px; }
  .pg-price       { font-size: 17px; }
  .pricing-wrap   { max-width: 100%; }

  /* Pricing callout */
  .pricing-callout {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--cream-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    width: 100%;
    margin: 0 0 40px;
    text-align: left;
    box-sizing: border-box;
  }

  /* Footer */
  .footer-inner   { flex-direction: column; gap: 32px; }
  .footer-links   { flex-wrap: wrap; gap: 24px; }
  .footer-bottom  { flex-direction: column; gap: 8px; text-align: center; }

  /* Background images */
  .section-bg img        { width: 55%; opacity: 0.05; }
  #hero .section-bg img  { opacity: 0.18; }
}

/* ── Small mobile (320–480px) ─────────────── */
@media (max-width: 480px) {
  section        { padding: 56px 0; }
  .container,
  .nav-inner,
  .footer-inner,
  .footer-bottom { padding-left: 16px; padding-right: 16px; }
  .container-sm  { padding-left: 16px; padding-right: 16px; }
  .hero-visual   { padding: 0 16px; }
  .hero-content  { padding: 0 16px; }

  /* Nav — prevent overflow at 320px */
  .nav-cta .btn-primary { padding: 8px 12px; font-size: 11px; }
  .nav-logo              { font-size: 18px; }

  /* Hero */
  .hero-sub      { font-size: 15px; }

  /* Pain — 1 col */
  .pain-grid  { grid-template-columns: 1fr; }
  .pain-cell  { padding: 20px 16px; }

  /* JJJ */
  .jjj-items         { gap: 24px; }
  .jjj-item-icon     { width: 32px; height: 32px; flex-shrink: 0; }
  .jjj-item-text h3  { font-size: 14px; }
  .jjj-item-text p   { font-size: 12px; }

  /* App — phone mock visível e centrado */
  .app-phone-wrap   { display: flex; justify-content: center; }
  .phone-outer      { width: 180px; }
  .app-features     { margin-top: 24px; gap: 18px; }
  .app-feature-text h4 { font-size: 13px; }
  .app-feature-text p  { font-size: 12px; }

  /* Pricing — 1 col */
  .pricing-grid          { grid-template-columns: 1fr 1fr; }
  .pg-head--featured     { border-right: 1px solid rgba(255,255,255,0.1); }
  .pg-cell--featured     { border-right: 1px solid var(--border); }
  .pricing-features li   { font-size: 13px; }
  .pricing-callout p     { font-size: 12px; }

  /* Feature list */
  .feature-list li  { font-size: 13px; }

  /* Footer */
  .footer-col h4  { font-size: 10px; }
  .footer-links   { gap: 16px; }

  /* Hide bg images — só hero fica */
  .section-bg           { display: none; }
  #hero .section-bg     { display: block; }
}

/* ─────────────────────────────────────────
   MOTION
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
