/* Próximo Craque — Homepage minimalista */
:root {
  --pc-bg: #050505;
  --pc-border: rgba(255, 255, 255, 0.1);
  --pc-green: #20d466;
  --pc-text: #f5f5f7;
  --pc-muted: rgba(245, 245, 247, 0.6);
  --pc-dim: rgba(245, 245, 247, 0.38);
  --pc-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --pc-max: 1100px;
  --pc-header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.pc-body {
  margin: 0;
  font-family: var(--pc-font);
  background: var(--pc-bg);
  color: var(--pc-text);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.pc-container {
  width: min(100% - 48px, var(--pc-max));
  margin-inline: auto;
}
.pc-container--narrow { max-width: 640px; }

/* Header */
.pc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--pc-header-h);
  display: flex;
  align-items: center;
  background: var(--pc-bg);
  border-bottom: 1px solid var(--pc-border);
}
.pc-header-inner {
  width: min(100% - 48px, var(--pc-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.pc-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--pc-green);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}
.pc-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  transition: opacity 0.15s, transform 0.15s;
}
.pc-btn:active { transform: scale(0.98); }
.pc-btn-primary {
  background: var(--pc-green);
  color: #041208;
}
.pc-btn-primary:hover { opacity: 0.92; }
.pc-btn-ghost {
  background: transparent;
  border: 1px solid var(--pc-border);
  color: var(--pc-text);
}
.pc-btn-ghost:hover { border-color: rgba(255, 255, 255, 0.2); }
.pc-btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 12px;
}

/* Hero */
.pc-hero {
  padding: 80px 0 100px;
}
.pc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pc-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.pc-hero-lead {
  margin: 0 0 40px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--pc-muted);
  max-width: 440px;
}
.pc-hero-video {
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 9 / 16;
  max-height: 520px;
  margin-left: auto;
  width: 100%;
  max-width: 320px;
}
.pc-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */
.pc-section {
  padding: 100px 0;
}
.pc-section--muted {
  background: #0a0a0a;
  border-block: 1px solid var(--pc-border);
}
.pc-section-title {
  margin: 0 0 56px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}
.pc-section-cta {
  text-align: center;
  margin-top: 56px;
}

/* Steps */
.pc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pc-step {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--pc-border);
  border-radius: 16px;
  background: #0a0a0a;
}
.pc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pc-green);
  color: #041208;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 20px;
}
.pc-step h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Examples */
.pc-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pc-example {
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--pc-border);
}
.pc-example video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */
.pc-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--pc-border);
  border-radius: 14px;
  overflow: hidden;
}
.pc-faq-item {
  border-bottom: 1px solid var(--pc-border);
}
.pc-faq-item:last-child { border-bottom: none; }
.pc-faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pc-faq-item summary::-webkit-details-marker { display: none; }
.pc-faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--pc-dim);
  flex-shrink: 0;
}
.pc-faq-item[open] summary::after { content: "−"; }
.pc-faq-item p {
  margin: 0;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--pc-muted);
}

/* Footer */
.pc-footer {
  padding: 48px 0;
  border-top: 1px solid var(--pc-border);
}
.pc-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pc-logo--footer { font-size: 0.95rem; }
.pc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.pc-footer-links a {
  font-size: 0.85rem;
  color: var(--pc-dim);
}
.pc-footer-links a:hover { color: var(--pc-text); }
.pc-footer-copy {
  width: 100%;
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: var(--pc-dim);
}

/* Responsive */
@media (max-width: 900px) {
  .pc-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .pc-hero-lead { margin-inline: auto; }
  .pc-hero-video {
    margin-inline: auto;
    max-width: 280px;
  }
  .pc-steps { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .pc-examples { grid-template-columns: 1fr; max-width: 280px; margin-inline: auto; }
}
@media (max-width: 520px) {
  .pc-header-actions .pc-btn-ghost { display: none; }
  .pc-hero { padding: 56px 0 72px; }
  .pc-section { padding: 72px 0; }
  .pc-btn-lg { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
