:root {
  --pm-lila: #633c90;
  --pm-aqua: #2fb29d;
  --pm-gray: #494949;
  --pm-black: #060606;
  --pm-white: #ffffff;
  --pm-bg: #0a0a0a;
  --pm-panel: #121212;
  --pm-border: rgba(255, 255, 255, 0.14);
  --pm-text-soft: rgba(255, 255, 255, 0.78);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--pm-bg);
  color: var(--pm-white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.pm-container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.pm-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pm-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.pm-brand img { width: 42px; height: 42px; }
.pm-nav nav { display: flex; gap: 22px; color: var(--pm-text-soft); font-size: 14px; }
.pm-nav nav a:hover { color: var(--pm-aqua); }
.pm-nav-cta { font-size: 14px; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--pm-border); }
.pm-nav-cta:hover { border-color: var(--pm-aqua); color: var(--pm-aqua); }

.pm-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 14vh;
}
.pm-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}
.pm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.78) 58%, rgba(0,0,0,.95));
}
.pm-hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 92vw);
  margin: 0 auto;
  padding-top: 92px;
}
.pm-kicker, .pm-eyebrow {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  color: var(--pm-aqua);
  font-weight: 700;
}
.pm-status-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(47, 178, 157, 0.7);
  color: var(--pm-aqua);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 12px 0 16px;
  max-width: 920px;
}
.pm-hero-subtitle { max-width: 760px; font-size: clamp(1rem, 2vw, 1.3rem); color: #eaeaea; }
.pm-hero-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

.pm-btn {
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pm-btn:hover { transform: translateY(-2px); }
.pm-btn-primary {
  color: #fff;
  background: var(--pm-lila);
  border-color: var(--pm-lila);
}
.pm-btn-ghost { border-color: var(--pm-border); color: #fff; }
.pm-btn-ghost:hover { border-color: var(--pm-aqua); }

.pm-section { padding: 90px 0; }
.pm-section h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.2;
}
.pm-section p { color: var(--pm-text-soft); font-size: 1.03rem; }

.pm-pillars {
  padding-top: 24px;
  padding-bottom: 28px;
}
.pm-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.pm-pillar {
  border: 1px solid var(--pm-border);
  border-radius: 16px;
  padding: 18px 14px;
  background: #0d0d0d;
}
.pm-pillar-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.pm-pillar-icon svg { width: 30px; height: 30px; }
.pm-pillar-icon-lila { color: var(--pm-lila); }
.pm-pillar-icon-aqua { color: var(--pm-aqua); }
.pm-pillar h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.pm-pillar h3 span { color: var(--pm-aqua); }
.pm-pillar:nth-child(1) h3 span,
.pm-pillar:nth-child(3) h3 span { color: var(--pm-lila); }
.pm-pillar p { margin: 0; font-size: .98rem; }

.pm-cards {
  margin-top: 30px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pm-card {
  position: relative;
  background: #0d0d0d;
  border: 1px solid var(--pm-border);
  border-radius: 24px;
  padding: 26px;
}
.pm-card-premium {
  border-color: rgba(47, 178, 157, 0.64);
  box-shadow: none;
  background: #0d0d0d;
}
.pm-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.pm-badges span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid var(--pm-border);
  padding: 5px 8px;
  border-radius: 999px;
}
.pm-card h3 { margin: 16px 0 4px; font-size: 1.45rem; }
.pm-schedule { margin: 0; color: #fff; font-weight: 600; }
.pm-mode-icon {
  margin: 12px 0 4px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pm-mode-icon svg { width: 46px; height: 46px; }
.pm-mode-icon-lila { color: var(--pm-lila); }
.pm-mode-icon-aqua { color: var(--pm-aqua); }
.pm-luxury-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 1px solid rgba(47, 178, 157, 0.95);
  background: #0a0a0a;
  box-shadow: 0 0 0 2px rgba(10, 10, 10, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pm-luxury-badge span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--pm-aqua);
  font-weight: 700;
}
.pm-card ul { margin: 14px 0; padding-left: 20px; color: #f1f1f1; }
.pm-date { margin: 0; color: var(--pm-aqua); font-weight: 700; }
.pm-mode-note {
  margin-top: 14px;
  font-size: 0.95rem;
  color: #cfd8d7;
}

.pm-season { background: rgba(255, 255, 255, 0.015); }
.pm-episodes {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.pm-episode {
  min-height: 170px;
  border: 1px solid var(--pm-border);
  border-radius: 16px;
  padding: 16px;
  background: #0d0d0d;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.pm-episode:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 178, 157, 0.6);
  background: #101010;
}
.pm-episode h3 { font-size: 1rem; margin: 0 0 8px; }
.pm-episode p { margin: 0; font-size: .92rem; }
.pm-highlight-idea {
  color: var(--pm-lila);
  border-bottom: 2px solid var(--pm-lila);
  padding-bottom: 1px;
}
.pm-highlight-discourse {
  color: var(--pm-aqua);
  border-bottom: 2px solid var(--pm-aqua);
  padding-bottom: 1px;
}

.pm-about {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  gap: 34px;
}
.pm-about img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--pm-border);
  filter: grayscale(.35);
}

.pm-cta-final {
  background: linear-gradient(to bottom, rgba(0,0,0,.75), rgba(0,0,0,.95)), url('../img/identidad-juan-estudio.jpeg') center/cover;
}
.pm-cta-final .pm-container { text-align: center; }

.pm-micro { padding-top: 70px; }
.pm-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.pm-steps p { margin: 0; border: 1px solid var(--pm-border); border-radius: 12px; padding: 14px; }

.pm-form {
  display: grid;
  gap: 8px;
  max-width: 680px;
}
.pm-form input,
.pm-form select {
  height: 46px;
  background: #101010;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  color: #fff;
  padding: 0 12px;
  font-family: inherit;
}
.pm-form-feedback { min-height: 22px; margin: 4px 0 0; }
.pm-form .pm-btn-ghost {
  display: inline-flex;
  justify-content: center;
}

.pm-whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 90px;
  z-index: 110;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #1fa96a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,.16);
}
.pm-whatsapp-float:hover { transform: translateY(-2px); }
.pm-whatsapp-float svg {
  display: block;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}

.pm-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 105;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 11px 4vw;
  border-top: 1px solid var(--pm-border);
  background: rgba(7,7,7,.95);
  backdrop-filter: blur(10px);
}
.pm-sticky-cta p { margin: 0; font-size: 13px; color: #d7d7d7; }

.pm-footer {
  border-top: 1px solid var(--pm-border);
  background: #080808;
  padding: 20px 0 96px;
}
.pm-footer-inner {
  display: flex;
  justify-content: center;
}
.pm-footer-lab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cfcfcf;
  font-size: 13px;
  font-weight: 600;
}
.pm-footer-lab img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.pm-footer-lab:hover { color: #ffffff; }

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 78px;
  z-index: 120;
  background: #111;
  border: 1px solid var(--pm-border);
  border-radius: 12px;
  max-width: 360px;
  padding: 12px;
}
.cookie-banner p { margin: 0 0 10px; font-size: 12px; color: #ddd; }
.cookie-banner button {
  border: 1px solid var(--pm-border);
  background: #151515;
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  margin-right: 6px;
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .pm-nav nav { display: none; }
  .pm-cards,
  .pm-pillars-grid,
  .pm-episodes,
  .pm-steps,
  .pm-about { grid-template-columns: 1fr; }
  .pm-about img { max-width: 420px; }
  .pm-luxury-badge {
    top: 14px;
    right: 14px;
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 640px) {
  .pm-nav { height: 66px; padding: 0 14px; }
  .pm-brand span { display: none; }
  .pm-nav-cta { font-size: 12px; padding: 8px 10px; }
  .pm-hero { padding-bottom: 20vh; }
  .pm-hero-content { padding-top: 84px; }
  .pm-section { padding: 64px 0; }
  .pm-whatsapp-float { bottom: 86px; right: 12px; }
  .pm-sticky-cta p { display: none; }
  .cookie-banner { left: 10px; right: 10px; max-width: none; }
}
