/* ============================================================
   Prescripta — Design System "Sallus Evidence" (escuro/neon)
   Fraunces (display) + Outfit (body) + JetBrains Mono (dados)
   Near-black teal + neon teal glow + amber accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;600;700&family=Outfit:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens escuros ─────────────────────────────────────────── */
:root {
  /* Superfícies */
  --p-bg:           hsl(220, 22%, 7%);
  --p-bg-subtle:    hsl(220, 20%, 9%);
  --p-bg-card:      hsl(220, 22%, 11%);
  --p-bg-elevated:  hsl(220, 18%, 15%);
  --p-fg:           hsl(48, 28%, 94%);

  /* Teal neon */
  --p-primary:      hsl(170, 58%, 50%);
  --p-primary-glow: hsl(168, 62%, 60%);
  --p-primary-deep: hsl(176, 82%, 12%);
  --p-primary-soft: hsl(170, 40%, 11%);
  --p-primary-10:   hsl(170, 58%, 50%, 0.10);

  /* Amber */
  --p-amber:        hsl(37, 90%, 55%);
  --p-amber-soft:   hsl(37, 60%, 10%);

  /* Neutros */
  --p-muted:        hsl(220, 18%, 15%);
  --p-muted-fg:     hsl(48, 14%, 68%);
  --p-border:       hsl(220, 15%, 22%);
  --p-border-glow:  hsl(170, 58%, 50%, 0.30);
  --p-white:        #ffffff;

  /* Tipografia */
  --p-font-display: 'Fraunces', Georgia, serif;
  --p-font-body:    'Outfit', system-ui, -apple-system, sans-serif;
  --p-font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Tamanhos */
  --p-hero-size:    clamp(2.5rem, 5.5vw, 4.25rem);
  --p-h2-size:      clamp(1.75rem, 3vw, 2.375rem);

  --p-radius:       0.5rem;
  --p-radius-lg:    0.875rem;
  --p-radius-full:  9999px;

  /* Sombras dark */
  --p-shadow-sm:    0 1px 3px hsl(222 30% 2% / 0.5);
  --p-shadow-md:    0 4px 24px hsl(222 30% 2% / 0.6);
  --p-shadow-lg:    0 20px 48px hsl(222 30% 2% / 0.7);

  /* Neon glows */
  --p-neon-teal:    0 0 0 1px hsl(170 58% 50% / 0.40),
                    0 0 16px hsl(170 58% 50% / 0.24),
                    0 0 40px hsl(170 58% 50% / 0.10);
  --p-neon-teal-hv: 0 0 0 1px hsl(170 58% 50% / 0.70),
                    0 0 24px hsl(170 58% 50% / 0.42),
                    0 0 56px hsl(170 58% 50% / 0.18);
  --p-neon-amber:   0 0 0 1px hsl(37 90% 55% / 0.45),
                    0 0 14px hsl(37 90% 55% / 0.28),
                    0 0 32px hsl(37 90% 55% / 0.10);

  /* Textura de fundo (dot grid + glow radial) */
  --p-pattern-dots: radial-gradient(hsl(170 58% 50% / 0.16) 1px, transparent 1px);
  --p-gradient-hero:
    radial-gradient(ellipse at top left, hsl(168 62% 60% / 0.16), transparent 55%),
    radial-gradient(ellipse at bottom right, hsl(37 90% 55% / 0.10), transparent 50%),
    linear-gradient(180deg, var(--p-bg) 0%, hsl(220, 24%, 5%) 100%);

  --p-ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --p-dur:   0.28s;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.prescripta-page {
  background: var(--p-bg);
  color: var(--p-fg);
  font-family: var(--p-font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}
body.prescripta-page h1,
body.prescripta-page h2,
body.prescripta-page h3,
body.prescripta-page h4 {
  font-family: var(--p-font-display);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
body.prescripta-page a  { text-decoration: none; color: inherit; }
body.prescripta-page ul { list-style: none; }
body.prescripta-page img { max-width: 100%; display: block; }

/* ── Layout ─────────────────────────────────────────────────── */
.p-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.p-section { padding: clamp(4rem, 8vw, 7rem) 0; }

.p-section-label {
  display: block;
  font-family: var(--p-font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--p-primary);
  opacity: 0.80;
  margin-bottom: 0.625rem;
}

.p-section-title {
  font-size: var(--p-h2-size);
  font-weight: 700;
  color: var(--p-fg);
  margin-bottom: 0.875rem;
}

.p-section-sub {
  font-size: 1.0625rem;
  color: var(--p-muted-fg);
  line-height: 1.65;
}

/* ── Botões ─────────────────────────────────────────────────── */
.p-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: var(--p-radius);
  font-family: var(--p-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--p-dur) var(--p-ease);
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
  position: relative;
  z-index: 0;
}

.p-btn-primary {
  background: var(--p-primary);
  color: hsl(222, 22%, 6%);
  border-color: var(--p-primary);
}
.p-btn-primary:hover {
  background: var(--p-primary-glow);
  border-color: var(--p-primary-glow);
  box-shadow: var(--p-neon-teal);
  transform: translateY(-1px);
}

.p-btn-outline {
  background: transparent;
  color: var(--p-fg);
  border-color: var(--p-border);
}
.p-btn-outline:hover {
  border-color: var(--p-primary);
  color: var(--p-primary);
  background: var(--p-primary-soft);
  box-shadow: var(--p-neon-teal);
}

.p-btn-white {
  background: var(--p-fg);
  color: hsl(222, 22%, 6%);
  border-color: var(--p-fg);
}
.p-btn-white:hover {
  background: var(--p-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px hsl(0 0% 0% / 0.3);
}

.p-btn-lg {
  padding: 0.875rem 1.875rem;
  font-size: 1rem;
  border-radius: var(--p-radius-lg);
  font-weight: 700;
}

/* ── Header ─────────────────────────────────────────────────── */
.p-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: hsl(222, 22%, 6%, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--p-dur) var(--p-ease),
              background var(--p-dur) var(--p-ease);
}
/* Linha teal no topo */
.p-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--p-primary) 30%,
    var(--p-primary-glow) 50%,
    var(--p-primary) 70%,
    transparent 100%
  );
  opacity: 0.7;
  pointer-events: none;
}
.p-header.p-scrolled {
  background: hsl(222, 22%, 6%, 0.97);
  border-color: var(--p-border);
}

.p-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

.p-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.p-logo-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--p-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(222, 22%, 6%);
  flex-shrink: 0;
  box-shadow: var(--p-neon-teal);
}
.p-logo-text {
  font-family: var(--p-font-display);
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--p-fg);
  letter-spacing: -0.04em;
}

.p-nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  margin: 0; padding: 0;
}
.p-nav-link {
  display: block;
  padding: 0.375rem 0.75rem;
  border-radius: var(--p-radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--p-muted-fg);
  transition: background var(--p-dur) var(--p-ease),
              color var(--p-dur) var(--p-ease);
  text-decoration: none;
}
.p-nav-link:hover {
  background: var(--p-primary-soft);
  color: var(--p-primary);
}

.p-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.p-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.p-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--p-muted-fg);
  border-radius: 2px;
  transition: all var(--p-dur) var(--p-ease);
}

.p-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--p-bg-subtle);
  border-bottom: 1px solid var(--p-border);
  padding: 0.75rem 1rem 1rem;
  gap: 0.25rem;
}
.p-mobile-nav.p-open { display: flex; }
.p-mobile-nav .p-nav-link { font-size: 1rem; padding: 0.625rem 0.75rem; }
.p-mobile-nav-actions {
  display: flex;
  gap: 0.625rem;
  padding: 0.75rem 0.75rem 0;
  border-top: 1px solid var(--p-border);
  margin-top: 0.5rem;
}
.p-mobile-nav-actions .p-btn { flex: 1; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────────── */
.p-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(68px + clamp(3.5rem, 7vw, 6rem));
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  background-color: var(--p-bg);
  /* Dot grid bem sutil no dark */
  background-image: radial-gradient(hsl(210, 20%, 94%, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.p-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.p-blob-teal {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--p-primary) 0%, transparent 65%);
  opacity: 0.18;
  top: -120px; left: -150px;
}
.p-blob-amber {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--p-amber) 0%, transparent 65%);
  opacity: 0.12;
  bottom: -80px; right: -80px;
}
/* Terceiro blob para profundidade */
.p-blob-accent {
  width: 300px; height: 300px;
  background: radial-gradient(circle, hsl(210, 80%, 55%) 0%, transparent 70%);
  opacity: 0.07;
  top: 40%; right: 20%;
}

.p-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

/* Badge amber */
.p-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3125rem 0.875rem;
  border-radius: var(--p-radius-full);
  background: var(--p-amber-soft);
  border: 1px solid hsl(37, 60%, 40%, 0.40);
  color: var(--p-amber);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  box-shadow: var(--p-neon-amber);
}
.p-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--p-amber);
  box-shadow: 0 0 8px var(--p-amber);
  flex-shrink: 0;
}

.p-hero-h1 {
  font-size: var(--p-hero-size);
  font-weight: 700;
  line-height: 1.08;
  color: var(--p-fg);
  margin-bottom: 1.375rem;
  /* Leve tracking negativo para a fonte Space Grotesk */
  letter-spacing: -0.04em;
}
.p-gradient-word {
  background: linear-gradient(
    135deg,
    var(--p-primary-glow) 0%,
    var(--p-primary) 50%,
    hsl(170, 80%, 70%) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Glow sutil no texto */
  filter: drop-shadow(0 0 18px hsl(170 65% 48% / 0.45));
}

.p-hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--p-muted-fg);
  line-height: 1.7;
  margin-bottom: 2.375rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.p-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ── Strip de diferenciais ───────────────────────────────────── */
.p-strip {
  background: var(--p-bg-subtle);
  border-top: 1px solid var(--p-border);
  border-bottom: 1px solid var(--p-border);
  padding: 1.625rem 0;
}
.p-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.p-strip-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 2rem;
  border-right: 1px solid var(--p-border);
}
.p-strip-item:last-child { border-right: none; }
.p-strip-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: var(--p-radius);
  background: var(--p-primary-soft);
  border: 1px solid var(--p-border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-primary);
  box-shadow: 0 0 12px hsl(170 65% 48% / 0.12);
}
.p-strip-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--p-fg);
  opacity: 0.85;
}

/* ── Features ────────────────────────────────────────────────── */
.p-features-header { margin-bottom: 3rem; }

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

.p-feature-card {
  background: var(--p-bg-card);
  padding: 1.875rem;
  position: relative;
  transition:
    background var(--p-dur) var(--p-ease),
    box-shadow var(--p-dur) var(--p-ease);
  overflow: hidden;
}
/* Linha teal no topo do card */
.p-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--p-primary);
  opacity: 0;
  transition: opacity var(--p-dur) var(--p-ease);
}
.p-feature-card:hover {
  background: var(--p-bg-elevated);
  box-shadow: inset 0 0 40px hsl(170 65% 48% / 0.05);
}
.p-feature-card:hover::before {
  opacity: 1;
}

.p-feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--p-radius);
  background: var(--p-primary-soft);
  border: 1px solid var(--p-border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-primary);
  margin-bottom: 1.125rem;
  transition: box-shadow var(--p-dur) var(--p-ease),
              background var(--p-dur) var(--p-ease);
}
.p-feature-card:hover .p-feature-icon {
  box-shadow: var(--p-neon-teal);
  background: hsl(170, 50%, 13%);
}

.p-feature-title {
  font-family: var(--p-font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--p-fg);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.p-feature-desc {
  font-size: 0.875rem;
  color: var(--p-muted-fg);
  line-height: 1.65;
}

/* ── Como funciona ───────────────────────────────────────────── */
.p-how-bg {
  background: var(--p-bg-subtle);
  border-top: 1px solid var(--p-border);
  border-bottom: 1px solid var(--p-border);
}
.p-how-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.p-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  gap: 2rem;
}
.p-timeline::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(
    to right,
    var(--p-primary),
    var(--p-primary-glow),
    var(--p-primary)
  );
  opacity: 0.35;
  box-shadow: 0 0 8px hsl(170 65% 48% / 0.3);
}
.p-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.p-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--p-primary-deep);
  border: 2px solid var(--p-primary);
  color: var(--p-primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--p-font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.375rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--p-neon-teal);
  flex-shrink: 0;
}
.p-step-title {
  font-family: var(--p-font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--p-fg);
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}
.p-step-desc {
  font-size: 0.875rem;
  color: var(--p-muted-fg);
  line-height: 1.65;
}

/* ── Preços ──────────────────────────────────────────────────── */
.p-pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}
.p-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
  align-items: start;
}
.p-price-card {
  background: var(--p-bg-card);
  border: 1px solid var(--p-border);
  border-radius: var(--p-radius-lg);
  padding: 1.875rem;
  position: relative;
  transition: box-shadow var(--p-dur) var(--p-ease),
              border-color var(--p-dur) var(--p-ease);
}
.p-price-card:hover {
  border-color: hsl(170 65% 48% / 0.3);
  box-shadow: 0 0 0 1px hsl(170 65% 48% / 0.10),
              var(--p-shadow-md);
}
.p-price-card.p-featured {
  border-color: hsl(170 65% 48% / 0.55);
  background: hsl(170, 40%, 7%);
  box-shadow: var(--p-neon-teal), var(--p-shadow-lg);
}
.p-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--p-primary);
  color: hsl(222, 22%, 6%);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.9375rem;
  border-radius: var(--p-radius-full);
  white-space: nowrap;
  box-shadow: var(--p-neon-teal);
}
.p-price-plan {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--p-muted-fg);
  margin-bottom: 0.75rem;
}
.p-price-value {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.375rem;
  line-height: 1;
}
.p-price-amount {
  font-family: var(--p-font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--p-primary);
  letter-spacing: -0.04em;
}
.p-featured .p-price-amount {
  filter: drop-shadow(0 0 12px hsl(170 65% 48% / 0.50));
}
.p-price-period {
  font-size: 0.9rem;
  color: var(--p-muted-fg);
}
.p-price-desc {
  font-size: 0.875rem;
  color: var(--p-muted-fg);
  line-height: 1.55;
  margin-bottom: 1.375rem;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid var(--p-border);
}
.p-check-list {
  list-style: none;
  margin: 0 0 1.875rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.p-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--p-fg);
  opacity: 0.85;
  line-height: 1.5;
}
.p-check-list li svg { flex-shrink: 0; color: var(--p-primary); margin-top: 1px; }
.p-check-list li.p-off {
  color: var(--p-muted-fg);
  text-decoration: line-through;
  opacity: 0.35;
}
.p-check-list li.p-off svg { color: var(--p-muted-fg); }
.p-price-cta { width: 100%; justify-content: center; }

/* ── Founder ─────────────────────────────────────────────────── */
.p-founder-bg {
  background: var(--p-bg);
}
.p-founder-card {
  background: var(--p-bg-card);
  border: 1px solid var(--p-border);
  border-left: 3px solid var(--p-primary);
  border-radius: var(--p-radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: inset 0 0 60px hsl(170 65% 48% / 0.03);
  transition: box-shadow var(--p-dur) var(--p-ease);
}
.p-founder-card:hover {
  box-shadow: 0 0 0 1px hsl(170 65% 48% / 0.15),
              inset 0 0 60px hsl(170 65% 48% / 0.05),
              var(--p-shadow-md);
}
.p-founder-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--p-primary-deep);
  border: 2px solid var(--p-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-primary-glow);
  font-family: var(--p-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--p-neon-teal);
}
.p-founder-name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--p-fg);
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}
.p-founder-role {
  font-size: 0.875rem;
  color: var(--p-muted-fg);
  margin-bottom: 0.875rem;
}
.p-founder-quote {
  font-size: 1.0625rem;
  color: var(--p-fg);
  opacity: 0.75;
  line-height: 1.7;
  font-style: italic;
}

/* ── CTA Final ───────────────────────────────────────────────── */
.p-cta-final {
  background: var(--p-bg-subtle);
  border-top: 1px solid var(--p-border);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Glow central */
.p-cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, hsl(170 65% 48% / 0.12) 0%, transparent 70%);
  pointer-events: none;
}
/* Dot grid */
.p-cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(hsl(210, 20%, 94%, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.p-cta-final > * { position: relative; z-index: 1; }
.p-cta-h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--p-fg);
  margin-bottom: 0.875rem;
  letter-spacing: -0.04em;
}
.p-cta-sub {
  font-size: 1.0625rem;
  color: var(--p-muted-fg);
  margin-bottom: 2.25rem;
}
.p-cta-note {
  font-size: 0.8125rem;
  color: var(--p-muted-fg);
  opacity: 0.6;
  margin-top: 1rem;
}

/* ── Footer ──────────────────────────────────────────────────── */
.p-footer {
  background: var(--p-bg);
  border-top: 1px solid var(--p-border);
  padding: 3.5rem 0 1.5rem;
}
.p-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--p-border);
  margin-bottom: 1.5rem;
}
.p-footer-tagline {
  font-size: 0.875rem;
  color: var(--p-muted-fg);
  margin-top: 0.875rem;
  line-height: 1.65;
  max-width: 260px;
}
.p-footer-col-title {
  font-family: var(--p-font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p-muted-fg);
  opacity: 0.55;
  margin-bottom: 0.875rem;
}
.p-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0; margin: 0;
  list-style: none;
}
.p-footer-links a {
  font-size: 0.9rem;
  color: var(--p-muted-fg);
  transition: color var(--p-dur) var(--p-ease);
  text-decoration: none;
}
.p-footer-links a:hover { color: var(--p-primary); }
.p-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.p-footer-copy {
  font-size: 0.8125rem;
  color: var(--p-muted-fg);
  opacity: 0.5;
}
.p-footer-legal { display: flex; gap: 1.25rem; }
.p-footer-legal a {
  font-size: 0.8125rem;
  color: var(--p-muted-fg);
  opacity: 0.45;
  transition: opacity var(--p-dur) var(--p-ease);
  text-decoration: none;
}
.p-footer-legal a:hover { opacity: 0.85; }

/* ── Reveal ──────────────────────────────────────────────────── */
.p-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s var(--p-ease),
    transform 0.55s var(--p-ease);
}
.p-reveal.p-visible { opacity: 1; transform: none; }
.p-reveal:nth-child(2) { transition-delay: 0.08s; }
.p-reveal:nth-child(3) { transition-delay: 0.16s; }

/* ── Responsividade ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .p-features-grid { grid-template-columns: repeat(2, 1fr); }
  .p-pricing-grid  { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .p-footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .p-nav-links,
  .p-nav-actions  { display: none; }
  .p-menu-toggle  { display: flex; }

  .p-strip-grid { grid-template-columns: 1fr; }
  .p-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--p-border);
    padding: 0.875rem 1.25rem;
  }
  .p-strip-item:last-child { border-bottom: none; }

  .p-features-grid { grid-template-columns: 1fr; }

  .p-timeline { grid-template-columns: 1fr; gap: 2.5rem; }
  .p-timeline::before { display: none; }
  .p-step { flex-direction: row; align-items: flex-start; gap: 1.25rem; text-align: left; }
  .p-step-num { margin-bottom: 0; }
  .p-step-body { flex: 1; }

  .p-founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .p-founder-avatar { margin: 0 auto; }

  .p-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .p-footer-tagline { max-width: 100%; }
  .p-blob { display: none; }
}

@media (max-width: 480px) {
  .p-hero-actions { flex-direction: column; align-items: stretch; }
  .p-hero-actions .p-btn { width: 100%; justify-content: center; }
  .p-footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}
