/* Programador WordPress money page — ink + emerald. Not purple / cream / home-blue clone. */
.pw-page {
  --pw-ink: #0b1210;
  --pw-slate: #15201c;
  --pw-muted: #5d6f68;
  --pw-accent: #14b88a;
  --pw-accent-soft: rgba(20, 184, 138, 0.14);
  --pw-mist: #eef6f2;
  --pw-display: "Fraunces", Georgia, serif;
  --pw-sans: "Manrope", "DM Sans", system-ui, sans-serif;
  font-family: var(--pw-sans);
  color: var(--pw-ink);
}
.pw-page .inner-hero { display: none !important; }

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

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

.pw-intents {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.pw-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;
}
.pw-intent:hover {
  transform: translateY(-3px);
  border-color: rgba(20,184,138,0.55);
  background: rgba(20,184,138,0.12);
}
.pw-intent-code {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--pw-accent);
}
.pw-intent h3 { margin: 0 0 0.5rem; color: #fff !important; font-size: 1.15rem; }
.pw-intent p { margin: 0; color: #b7d0c5 !important; line-height: 1.5; }
.pw-intent-go {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--pw-accent);
  font-size: 0.92rem;
}

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

.pw-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;
}
.pw-split--reverse .pw-split-grid { direction: rtl; }
.pw-split--reverse .pw-split-grid > * { direction: ltr; }
.pw-split-media {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,18,16,0.14);
}
.pw-split-media img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4/3; object-fit: cover; object-position: center;
  transition: transform .7s ease;
}
.pw-split:hover .pw-split-media img { transform: scale(1.03); }
.pw-split-lead {
  margin: 0 0 1rem !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--pw-ink) !important;
}
.pw-split-body p {
  margin: 0 0 0.95rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3d4d46;
  font-weight: 500;
}

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

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

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

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

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

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