/* rpsell — site público */
:root {
  --brand: #1E40AF;
  --brand-dark: #143079;
  --brand-light: #EFF3FB;
  --accent: #F59E0B;
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --ink-900: #0F0F0D;
  --ink-700: #2C2C2A;
  --ink-500: #444441;
  --ink-300: #A8A6A0;
  --ink-100: #F1EFE8;
  --border: rgba(15, 15, 13, 0.08);
  --radius: 14px;
  --radius-md: 10px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--brand);
  text-decoration: none;
  transition: opacity 0.15s;
}
a:hover { opacity: 0.75; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 0.5px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.site-header nav {
  display: none;
  gap: 28px;
}
.site-header nav a {
  color: var(--ink-500);
  font-weight: 500;
  font-size: 15px;
}
.site-header .cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 14px;
  min-height: 44px;
}
.site-header .cta:hover { background: var(--brand-dark); opacity: 1; }

@media (min-width: 768px) {
  .site-header nav { display: flex; }
}

/* ----- Hero ----- */
.hero {
  padding: 56px 0 64px;
  text-align: center;
}
.hero .eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--ink-900);
  margin: 0 0 16px;
}
.hero h1 span { color: var(--brand); }
.hero p.lead {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 15px;
  min-height: 48px;
  transition: all 0.15s;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-dark); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--ink-700);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: var(--ink-100); opacity: 1; }

@media (min-width: 768px) {
  .hero { padding: 96px 0 80px; }
  .hero h1 { font-size: 56px; letter-spacing: -2px; }
  .hero p.lead { font-size: 19px; }
}

/* ----- Section ----- */
.section {
  padding: 56px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--ink-900);
  margin: 0 0 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--ink-500);
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section { padding: 80px 0; }
  .section-header h2 { font-size: 36px; }
}

/* ----- Cards grid ----- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.card .icon {
  width: 40px;
  height: 40px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.card h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-900);
  margin: 0 0 8px;
}
.card p {
  font-size: 14px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.55;
}

/* ----- Marketplaces strip ----- */
.marketplaces {
  background: var(--surface);
  padding: 32px 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.marketplaces .row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--ink-300);
  font-weight: 500;
  font-size: 16px;
}
.marketplaces .label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 16px;
  text-align: center;
}

/* ----- Price cards ----- */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
}
.price-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.price-card.featured {
  border: 2px solid var(--brand);
}
.price-card .name {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-card .price {
  font-size: 36px;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.price-card .price small {
  font-size: 14px;
  color: var(--ink-300);
  font-weight: 400;
}
.price-card .desc {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 20px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.price-card li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-500);
  display: flex;
  gap: 8px;
}
.price-card li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 500;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--ink-900);
  color: rgba(250, 250, 247, 0.7);
  padding: 48px 0 24px;
  margin-top: 40px;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .site-footer .container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.site-footer h4 {
  color: #FAFAF7;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 12px;
}
.site-footer a {
  color: rgba(250, 250, 247, 0.6);
  display: block;
  font-size: 14px;
  padding: 4px 0;
}
.site-footer a:hover { color: #FAFAF7; opacity: 1; }
.site-footer .legal {
  border-top: 0.5px solid rgba(250, 250, 247, 0.1);
  margin-top: 32px;
  padding-top: 20px;
  font-size: 13px;
  color: rgba(250, 250, 247, 0.5);
  text-align: center;
}

/* ----- Article (páginas internas) ----- */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}
.article h1 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.8px;
  color: var(--ink-900);
  margin: 0 0 16px;
}
.article h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-900);
  margin: 32px 0 12px;
}
.article p, .article li {
  font-size: 16px;
  color: var(--ink-500);
}
.article ul, .article ol {
  padding-left: 22px;
}

/* ----- Logo SVG inline helper ----- */
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
