/* Programador Shopify money page — ink + warm coral #ff5a2d. Not purple / WP-emerald / home-blue. */
.sh-page {
  --sh-ink: #12100e;
  --sh-slate: #221c18;
  --sh-muted: #6f635c;
  --sh-accent: #ff5a2d;
  --sh-accent-soft: rgba(255, 90, 45, 0.14);
  --sh-mist: #faf4f0;
  --sh-display: "Fraunces", Georgia, serif;
  --sh-sans: "Manrope", "DM Sans", system-ui, sans-serif;
  font-family: var(--sh-sans);
  color: var(--sh-ink);
}
.sh-page .inner-hero { display: none !important; }

.sh-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--sh-ink);
  padding-top: 72px;
  box-sizing: border-box;
}
.sh-hero-media { position: absolute; inset: 0; z-index: 0; }
.sh-hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 55% 40%;
  transform: scale(1.05);
  animation: sh-pan 20s ease-in-out infinite alternate;
}
@keyframes sh-pan {
  from { transform: scale(1.05) translate3d(0,0,0); }
  to { transform: scale(1.11) translate3d(-1.2%, -1%, 0); }
}
.sh-hero-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(108deg, rgba(14,12,10,0.96) 0%, rgba(14,12,10,0.88) 40%, rgba(14,12,10,0.42) 72%, rgba(14,12,10,0.28) 100%),
    linear-gradient(180deg, rgba(14,12,10,0.5) 0%, rgba(14,12,10,0.15) 45%, rgba(14,12,10,0.85) 100%);
}
.sh-hero-glow {
  position: absolute; right: -10%; bottom: -25%; width: 50vw; height: 50vw; z-index: 1;
  background: radial-gradient(circle, rgba(255,90,45,0.28), transparent 68%);
  pointer-events: none;
  animation: sh-glow 8s ease-in-out infinite alternate;
}
@keyframes sh-glow {
  from { opacity: 0.5; transform: translate(0,0); }
  to { opacity: 1; transform: translate(-4%, -3%); }
}
.sh-hero-inner {
  position: relative; z-index: 2;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 10vh, 5rem) 0;
}
.sh-brand {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: #fff !important;
  animation: sh-rise 0.7s ease both;
}
.sh-hero h1 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--sh-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: 0 4px 28px rgba(0,0,0,0.45);
  animation: sh-rise 0.75s ease 0.08s both;
}
.sh-hero h1 .accent,
.sh-hero h1 .home-hero-accent {
  color: var(--sh-accent) !important;
  -webkit-text-fill-color: var(--sh-accent) !important;
  background: none !important;
}
.sh-hero h1 .accent::after,
.sh-hero h1 .home-hero-accent::after { display: none !important; }
.sh-hero-copy {
  margin: 1.1rem 0 0;
  max-width: 38ch;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.55;
  color: #f5e4db !important;
  animation: sh-rise 0.75s ease 0.14s both;
}
.sh-hero-intents {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  margin-top: 1.25rem;
  animation: sh-rise 0.75s ease 0.2s both;
}
.sh-hero-intents a {
  display: inline-flex; align-items: center;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  transition: border-color .2s, background .2s, transform .2s;
}
.sh-hero-intents a:hover {
  border-color: var(--sh-accent);
  background: rgba(255,90,45,0.18);
  transform: translateY(-1px);
}
.sh-hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.5rem;
  animation: sh-rise 0.75s ease 0.26s both;
}
.sh-hero-actions .btn-outline,
.sh-final .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
@keyframes sh-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sh-hero-media img, .sh-hero-glow, .sh-brand, .sh-hero h1, .sh-hero-copy, .sh-hero-intents, .sh-hero-actions {
    animation: none !important;
  }
}

.sh-section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.sh-section--mist {
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(255,90,45,0.1), transparent 60%),
    linear-gradient(180deg, #faf4f0 0%, #f3e8e0 100%);
}
.sh-section--ink {
  background:
    radial-gradient(700px 300px at 90% 10%, rgba(255,90,45,0.2), transparent 55%),
    linear-gradient(160deg, #12100e 0%, #221c18 100%);
  color: #f5ebe4;
}
.sh-section .section-header { max-width: 44rem; margin: 0 auto 2.1rem; text-align: center; }
.sh-section .section-kicker,
.sh-split .section-kicker,
.sh-final .section-kicker {
  display: inline-block !important;
  color: var(--sh-accent) !important;
  background: none !important;
  border: 0 !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem !important;
}
.sh-section h2,
.sh-split h2 {
  margin: 0.5rem 0 0.65rem !important;
  font-family: var(--sh-display) !important;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem) !important;
  color: var(--sh-ink) !important;
  line-height: 1.15 !important;
}
.sh-section--ink h2 { color: #fff !important; }
.sh-section .lead { color: var(--sh-muted) !important; font-weight: 600 !important; }
.sh-section--ink .lead { color: #d4bdb0 !important; }

.sh-intents {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.sh-intent {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: transform .2s, border-color .2s, background .2s;
}
.sh-intent:hover {
  transform: translateY(-3px);
  border-color: rgba(255,90,45,0.55);
  background: rgba(255,90,45,0.12);
}
.sh-intent-code {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--sh-accent);
}
.sh-intent h3 { margin: 0 0 0.5rem; color: #fff !important; font-size: 1.15rem; }
.sh-intent p { margin: 0; color: #d4bdb0 !important; line-height: 1.5; }
.sh-intent-go {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--sh-accent);
  font-size: 0.92rem;
}

.sh-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.sh-why {
  padding: 1.2rem 1.15rem;
  border: 1px solid rgba(18,16,14,0.08);
  background: #fff;
}
.sh-why-code {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.15rem 0.45rem;
  background: var(--sh-accent-soft);
  color: var(--sh-accent);
  font-weight: 800;
  font-size: 0.78rem;
}
.sh-why h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.sh-why p { margin: 0; color: var(--sh-muted); line-height: 1.5; }

.sh-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
}
.sh-split--reverse .sh-split-grid { direction: rtl; }
.sh-split--reverse .sh-split-grid > * { direction: ltr; }
.sh-split-media {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(18,16,14,0.14);
}
.sh-split-media img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4/3; object-fit: cover; object-position: center;
  transition: transform .7s ease;
}
.sh-split:hover .sh-split-media img { transform: scale(1.03); }
.sh-split-lead {
  margin: 0 0 1rem !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--sh-ink) !important;
}
.sh-split-body p {
  margin: 0 0 0.95rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4d423c;
  font-weight: 500;
}

.sh-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.sh-step {
  padding: 1.15rem 1rem;
  background: #fff;
  border: 1px solid rgba(18,16,14,0.08);
}
.sh-step-num {
  display: inline-flex; width: 1.8rem; height: 1.8rem;
  align-items: center; justify-content: center;
  margin-bottom: 0.6rem;
  background: var(--sh-accent-soft);
  color: var(--sh-accent);
  font-weight: 800; font-size: 0.85rem;
}
.sh-step h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.sh-step p { margin: 0; color: var(--sh-muted); font-size: 0.95rem; line-height: 1.5; }

.sh-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.sh-price-note { color: var(--sh-muted); font-weight: 600; }
.sh-factors { list-style: none; margin: 0; padding: 0; }
.sh-factors li {
  display: grid; grid-template-columns: auto 1fr; gap: 0.85rem;
  padding: 0.85rem 0; border-top: 1px solid rgba(18,16,14,0.08);
}
.sh-factor-num {
  width: 1.7rem; height: 1.7rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sh-accent-soft); color: var(--sh-accent); font-weight: 800; font-size: 0.8rem;
}
.sh-factors p { margin: 0.2rem 0 0; color: var(--sh-muted); }

.sh-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.sh-faq {
  padding: 1.25rem 1.3rem;
  background: #fff;
  border: 1px solid rgba(18,16,14,0.08);
}
.sh-faq h3 { margin: 0 0 0.45rem; font-size: 1.05rem; }
.sh-faq p { margin: 0; color: var(--sh-muted); line-height: 1.55; }

.sh-final {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    radial-gradient(700px 300px at 20% 20%, rgba(255,90,45,0.25), transparent 55%),
    linear-gradient(145deg, #12100e 0%, #221c18 100%);
  color: #fff;
}
.sh-final-inner {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  align-items: center; justify-content: space-between;
}
.sh-final h2 {
  margin: 0.4rem 0 0.55rem !important;
  font-family: var(--sh-display) !important;
  font-size: clamp(1.9rem, 3.4vw, 2.55rem) !important;
  color: #fff !important;
}
.sh-final p { margin: 0; max-width: 36rem; color: #d4bdb0; }
.sh-final-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.sh-related { padding: 2.5rem 0 3.5rem; background: #fff; }
.sh-related h2 {
  margin: 0 0 1rem;
  font-family: var(--sh-display);
  font-size: 1.4rem;
}
.sh-related-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.65rem;
}
.sh-related-list a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(18,16,14,0.12);
  text-decoration: none;
  color: var(--sh-ink);
  font-weight: 700;
  font-size: 0.92rem;
}
.sh-related-list a:hover { border-color: var(--sh-accent); }

@media (max-width: 980px) {
  .sh-intents, .sh-why-grid, .sh-faq-grid, .sh-pricing, .sh-split-grid, .sh-process {
    grid-template-columns: 1fr 1fr;
  }
  .sh-split--reverse .sh-split-grid { direction: ltr; }
}
@media (max-width: 720px) {
  .sh-intents, .sh-why-grid, .sh-faq-grid, .sh-pricing, .sh-split-grid, .sh-process {
    grid-template-columns: 1fr;
  }
}
