/* ============================================================
   PINK ROAD EVENTOS — main.css
   Versión WordPress · Twenty Twenty-Five Child Theme
   ============================================================ */

/* ── RESET & VARIABLES ─────────────────────────────────────── */
:root {
  /* El tema visual es solo claro por ahora (ver nota de --stone más abajo);
     esto adapta al menos los controles nativos (scrollbars, checkboxes...)
     a la preferencia de sistema del visitante sin arriesgar una repintada
     completa que no se ha podido verificar en un navegador real. */
  color-scheme: light dark;

  --fuchsia:     #D63FA3;
  --fuchsia-d:   #B02F87;
  --blush:       #E8A0CE;
  --blush-light: #F8EDF5;
  --cream:       #FDF8FB;
  --ink:         #1A1018;
  --stone:       #3D2B38;
  --mid:         #7A5570;
  --line:        rgba(214,63,163,0.13);

  /* Tipografías:
     --serif → sustituir 'Playfair Display' por 'The Season'
               cuando tengas los archivos .woff2 de la fuente */
  --serif: 'Playfair Display', Georgia, serif;
  --body:  'Lora', Georgia, serif;
  --ui:    'Jost', sans-serif;

  /* ── ESCALA DE ESPACIADO ──────────────────────────────────────
     Cada valor que ya se repetía 2+ veces conserva su tamaño exacto
     (0 de deriva visual); los pocos valores usados una sola vez se
     han fundido con el escalón más cercano. */
  --space-1:  0.15rem;
  --space-2:  0.2rem;
  --space-3:  0.3rem;
  --space-4:  0.4rem;
  --space-5:  0.5rem;
  --space-6:  0.55rem;
  --space-7:  0.6rem;
  --space-8:  0.8rem;
  --space-9:  0.9rem;
  --space-10: 1rem;
  --space-11: 1.2rem;
  --space-12: 1.4rem;
  --space-13: 1.5rem;
  --space-14: 1.6rem;
  --space-15: 1.8rem;
  --space-16: 2rem;
  --space-17: 2.2rem;
  --space-18: 2.5rem;
  --space-19: 3rem;
  --space-20: 3.5rem;
  --space-21: 4rem;
  --space-22: 5rem;
  --space-23: 5.5rem;
  --space-24: 6rem;
  --space-25: 7rem;
  --space-26: 8rem;
  --space-27: 9rem;
  --space-28: 12rem;

  /* ── ESCALA TIPOGRÁFICA ───────────────────────────────────────
     Los tamaños agrupados en clústers de UI/etiqueta se han unificado
     en un solo valor (diferencia máxima ≤0.15rem); los tamaños grandes/
     decorativos usados una sola vez conservan su tamaño exacto. */
  --text-2xs: 0.66rem;
  --text-xs:  0.95rem;
  --text-sm:  1.05rem;
  --text-base: 1.18rem;
  --text-md:  1.5rem;
  --text-lg:  1.8rem;
  --text-xl:  2.2rem;
  --text-2xl: 2.6rem;
  --text-3xl: 3rem;
  --text-4xl: 4rem;
  --text-fluid-h1:      clamp(3.2rem, 5.5vw, 6.2rem);
  --text-fluid-h2:      clamp(2rem, 3vw, 3.5rem);
  --text-fluid-quote:   clamp(1.4rem, 2.4vw, 2.5rem);
  --text-fluid-contact: clamp(2.4rem, 3.8vw, 4rem);
}

/* Reset Twenty Twenty-Five */
.wp-site-blocks,
.wp-block-template-part,
body.pinkroad-home .wp-block-group,
body.pinkroad-home main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1;
}

/* Override TT5 body padding */
body.pinkroad-home {
  padding-top: 0 !important;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
*, *::before, *::after { box-sizing: border-box; }

/* ── ACCESIBILIDAD: foco visible + skip link ─────────────────── */
a:focus-visible,
button:focus-visible,
.pr-btn:focus-visible,
.pr-menu-toggle:focus-visible {
  outline: 2px solid var(--fuchsia);
  outline-offset: 2px;
}

.pr-skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  background: var(--fuchsia);
  color: white;
  padding: var(--space-8) var(--space-12);
  font-family: var(--ui);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: top 0.2s ease;
}
.pr-skip-link:focus { top: 1rem; }

/* ── HEADER ────────────────────────────────────────────────── */
.pr-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-7) var(--space-20);
  background: rgba(253,248,251,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}

.pr-header.scrolled {
  box-shadow: 0 2px 20px rgba(214,63,163,0.08);
}

.pr-header .logo img {
  height: 50px;
  width: auto;
}

.pr-nav {
  display: flex;
  gap: var(--space-17);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pr-nav a {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.55;
  transition: opacity 0.3s;
}

.pr-nav a:hover { opacity: 1; }

.pr-nav .cta a {
  opacity: 1;
  padding: var(--space-6) var(--space-14);
  border: 1.5px solid var(--fuchsia);
  color: var(--fuchsia);
  letter-spacing: 0.2em;
  transition: all 0.3s;
}
.pr-nav .cta a:hover {
  background: var(--fuchsia);
  color: white;
}

/* Mobile menu toggle */
.pr-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-4);
  flex-direction: column;
  gap: 5px;
}
.pr-menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--stone);
  transition: all 0.3s;
}
.pr-menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.pr-menu-toggle.open span:nth-child(2) { opacity: 0; }
.pr-menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────────── */
.pr-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-25);
  overflow: hidden;
}

.pr-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pr-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.pr-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,16,24,0.15) 0%,
    rgba(26,16,24,0.05) 30%,
    rgba(26,16,24,0.60) 70%,
    rgba(26,16,24,0.82) 100%
  );
}

.pr-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--space-22);
  max-width: 800px;
}

.pr-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.pr-hero__scroll span {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: white;
  opacity: 0.4;
  writing-mode: vertical-rl;
}

.pr-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 0.8; transform: scaleY(1.15); }
}

/* ── TIPOGRAFÍA GLOBAL ─────────────────────────────────────── */
.pr-eyebrow {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: var(--space-14);
  display: flex;
  align-items: center;
  gap: var(--space-10);
}
.pr-eyebrow::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--blush);
  display: block;
}
.pr-eyebrow.dark { color: var(--fuchsia); }
.pr-eyebrow.dark::before { background: var(--fuchsia); }

.pr-section-label {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: var(--space-14);
  display: flex;
  align-items: center;
  gap: var(--space-10);
}
.pr-section-label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--fuchsia);
  display: block;
}
.pr-section-label.light { color: var(--blush); }
.pr-section-label.light::before { background: var(--blush); }

.pr-h1 {
  font-family: var(--serif);
  font-size: var(--text-fluid-h1);
  font-weight: 400;
  line-height: 1.03;
  color: white;
  margin-bottom: var(--space-16);
}
.pr-h1 em { font-style: italic; color: var(--blush); }

.pr-h2 {
  font-family: var(--serif);
  font-size: var(--text-fluid-h2);
  font-weight: 400;
  line-height: 1.1;
  color: var(--stone);
  margin-bottom: var(--space-14);
}
.pr-h2 em { font-style: italic; color: var(--fuchsia); }
.pr-h2.light { color: white; }
.pr-h2.light em { color: var(--blush); }

.pr-body {
  font-family: var(--body);
  font-size: var(--text-sm);
  line-height: 2;
  color: var(--stone);
  opacity: 0.68;
  margin-bottom: var(--space-12);
}
.pr-body.light { color: white; opacity: 0.52; }
.pr-body.max { max-width: 440px; }

/* ── BOTONES ───────────────────────────────────────────────── */
.pr-btn {
  display: inline-block;
  font-family: var(--ui);
  font-size: var(--text-2xs);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: var(--space-11) var(--space-18);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  cursor: pointer;
  border: none;
}

.pr-btn:disabled,
.pr-btn[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.pr-btn--primary {
  color: white;
  background: var(--fuchsia);
  border: 1.5px solid var(--fuchsia);
}
.pr-btn--primary:hover {
  background: var(--fuchsia-d);
  border-color: var(--fuchsia-d);
  color: white;
}

.pr-btn--ghost-white {
  color: white;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  opacity: 0.7;
}
.pr-btn--ghost-white:hover { opacity: 1; border-color: white; }

.pr-btn--light {
  color: var(--stone);
  background: var(--blush);
  border: 1.5px solid var(--blush);
}
.pr-btn--light:hover { background: white; border-color: white; }

.pr-btn--outline {
  color: var(--fuchsia);
  background: transparent;
  border: 1.5px solid var(--fuchsia);
}
.pr-btn--outline:hover { background: var(--fuchsia); color: white; }

.pr-btn-group {
  display: flex;
  gap: var(--space-13);
  align-items: center;
  flex-wrap: wrap;
}

/* ── STRIP (marquee animado) ───────────────────────────────── */
.pr-strip {
  background: var(--stone);
  padding: var(--space-13) 0;
  overflow: hidden;
}

/* El contenido está duplicado en el HTML; al desplazar el track un -50%
   la segunda copia ocupa el lugar de la primera y el bucle es continuo. */
.pr-strip__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: prStripScroll 40s linear infinite;
}

@keyframes prStripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.pr-strip__item span {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.75;
  white-space: nowrap;
}

.pr-strip__dot {
  width: 3px;
  height: 3px;
  background: var(--fuchsia);
  border-radius: 50%;
  margin: 0 var(--space-18);
  flex-shrink: 0;
}

/* ── SECCIONES — layout base ───────────────────────────────── */
.pr-section { padding: var(--space-27) var(--space-22); }
.pr-section--dark { background: var(--stone); }
.pr-section--light { background: var(--blush-light); }
.pr-section--cream { background: var(--cream); }

.pr-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-24);
  align-items: center;
}

.pr-grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-19);
}

.pr-section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-22);
  align-items: end;
  margin-bottom: var(--space-23);
  border-bottom: 1px solid var(--line);
  padding-bottom: var(--space-21);
}
.pr-section-header.dark {
  border-bottom-color: rgba(255,255,255,0.07);
}

/* ── FILOSOFÍA ─────────────────────────────────────────────── */
.pr-filosofia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.pr-filosofia__img {
  position: relative;
  overflow: hidden;
}
.pr-filosofia__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

/* En escritorio, la imagen NO debe dictar la altura de la fila del grid
   (una foto vertical de 1400px estiraba la sección entera y dejaba el
   texto flotando entre enormes espacios vacíos). Al posicionarla en
   absoluto, la altura de la sección la marca el contenido de texto. */
@media (min-width: 961px) {
  .pr-filosofia__img img {
    position: absolute;
    inset: 0;
  }
}

.pr-filosofia__content {
  padding: var(--space-26) var(--space-23);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--stone);
}

.pr-pull-quote {
  border-left: 2px solid var(--fuchsia);
  padding: var(--space-11) var(--space-16);
  margin: var(--space-17) 0;
  font-family: var(--serif);
  font-size: var(--text-base);
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}

.pr-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--space-19);
}

.pr-stat {
  padding: var(--space-15) var(--space-11);
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.pr-stat:last-child { border-right: none; }

.pr-stat__num {
  font-family: var(--serif);
  font-size: var(--text-2xl);
  color: var(--fuchsia);
  display: block;
  line-height: 1;
}

.pr-stat__label {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  opacity: 0.38;
  display: block;
  margin-top: var(--space-5);
  line-height: 1.6;
}

/* ── DIRECTORA ─────────────────────────────────────────────── */
.pr-directora {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.pr-directora__content {
  padding: var(--space-26) var(--space-23);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pr-directora__img {
  position: relative;
  overflow: hidden;
}
.pr-directora__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 640px;
}

/* Igual que en filosofía: en escritorio la foto no marca la altura */
@media (min-width: 961px) {
  .pr-directora__img img {
    position: absolute;
    inset: 0;
    min-height: 0;
  }
}

/* ── ENFOQUE 3 PILARES ─────────────────────────────────────── */
.pr-enfoque {
  padding: var(--space-27) var(--space-22);
}

/* Cierre de la sección enfoque */
.pr-enfoque__cierre {
  text-align: center;
  margin-top: var(--space-21);
  font-family: var(--serif);
  font-size: var(--text-base);
  font-style: italic;
  line-height: 1.6;
  color: var(--stone);
  opacity: 0.75;
}
.pr-enfoque__cierre em { color: var(--fuchsia); }

/* Tile de valor compartido — usado en "Mi enfoque" (home, con numeral y
   sobre fondo claro) y en "Mi filosofía" (página directora, sin numeral,
   variante --panel sobre fondo oscuro vía el modificador .light). Sustituye
   a los antiguos .pr-enfoque__item y .pr-valor, que repetían la misma
   estructura título+texto dos veces con solo el color distinto. */
.pr-value-tile {
  position: relative;
}

.pr-value-tile--panel {
  padding: var(--space-19);
  background: var(--stone);
  transition: background 0.3s;
}
.pr-value-tile--panel:hover { background: rgba(255,255,255,0.04); }

.pr-value-tile__num {
  font-family: var(--serif);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--fuchsia);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
}

.pr-value-tile__divider {
  width: 2rem;
  height: 1px;
  background: var(--fuchsia);
  margin-bottom: var(--space-11);
  margin-top: var(--space-13);
  position: relative;
  z-index: 1;
}

.pr-value-tile__title {
  font-family: var(--serif);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--stone);
  margin-bottom: var(--space-10);
  position: relative;
  z-index: 1;
}
.pr-value-tile__title.light { color: var(--blush); }

.pr-value-tile__text {
  font-family: var(--body);
  font-size: var(--text-xs);
  line-height: 1.9;
  color: var(--stone);
  opacity: 0.62;
  position: relative;
  z-index: 1;
}
.pr-value-tile__text.light { color: white; opacity: 0.45; }

/* ── QUOTE BREAK ───────────────────────────────────────────── */
.pr-quote-break {
  padding: var(--space-26) var(--space-22);
  background: var(--blush-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pr-quote-break::before {
  content: '"';
  font-family: var(--serif);
  font-size: 20rem;
  color: var(--fuchsia);
  opacity: 0.05;
  position: absolute;
  top: -5rem;
  left: 3rem;
  line-height: 1;
  pointer-events: none;
}

.pr-quote-break blockquote {
  font-family: var(--serif);
  font-size: var(--text-fluid-quote);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--stone);
  max-width: 780px;
  margin: 0 auto var(--space-15);
  position: relative;
  z-index: 1;
  border: none;
  padding: 0;
}

.pr-quote-break cite {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fuchsia);
  font-style: normal;
  position: relative;
  z-index: 1;
}

/* ── SERVICIOS ─────────────────────────────────────────────── */
.pr-servicios {
  padding: var(--space-27) var(--space-22);
  background: var(--stone);
}

.pr-servicios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 1px;
}

.pr-servicio {
  padding: var(--space-20) var(--space-19);
  background: var(--stone);
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}

.pr-servicio::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--fuchsia);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pr-servicio:hover::after { transform: scaleX(1); }
.pr-servicio:hover { background: rgba(255,255,255,0.04); }

.pr-servicio--featured {
  background: rgba(214,63,163,0.08) !important;
  border: 1px solid rgba(214,63,163,0.2);
}
.pr-servicio--featured .pr-servicio__name { color: var(--blush); }

.pr-servicio__tag {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: var(--space-15);
  display: block;
}

.pr-servicio__name {
  font-family: var(--serif);
  font-size: var(--text-md);
  font-style: italic;
  color: white;
  margin-bottom: var(--space-11);
  line-height: 1.2;
}

/* Frase-promesa que abre cada tarjeta de servicio */
.pr-servicio__promise {
  font-family: var(--serif);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--blush);
  margin-bottom: var(--space-11);
  line-height: 1.5;
}

/* Cita textual de clienta dentro de la tarjeta */
.pr-servicio__quote {
  border-left: 2px solid var(--fuchsia);
  padding: var(--space-8) var(--space-11);
  margin: 0 0 var(--space-15);
  font-family: var(--serif);
  font-size: var(--text-xs);
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}
.pr-servicio__quote cite {
  display: block;
  margin-top: var(--space-4);
  font-family: var(--ui);
  font-size: var(--text-2xs);
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.75;
}

.pr-servicio__desc {
  font-family: var(--body);
  font-size: var(--text-xs);
  line-height: 1.9;
  color: white;
  opacity: 0.42;
  margin-bottom: var(--space-18);
}

.pr-servicio__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-18);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.pr-servicio__includes li {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  letter-spacing: 0.08em;
  color: white;
  opacity: 0.55;
  padding-left: var(--space-10);
  position: relative;
}
.pr-servicio__includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--fuchsia);
  opacity: 0.8;
}

.pr-servicio__price {
  font-family: var(--serif);
  font-size: var(--text-lg);
  color: var(--blush);
  font-weight: 300;
}
.pr-servicio__price small {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-left: var(--space-4);
  font-style: normal;
}
.pr-servicio__price.consulta {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.5);
}

.pr-servicios__cta {
  text-align: center;
  padding: var(--space-19) 0 0;
  font-family: var(--serif);
  font-size: var(--text-base);
  font-style: italic;
  color: white;
  opacity: 0.45;
}
.pr-servicios__cta em {
  color: var(--fuchsia);
  opacity: 1;
  font-style: italic;
}
.pr-servicios__cta a { color: var(--fuchsia); }

/* ── PROCESO ───────────────────────────────────────────────── */
.pr-proceso { padding: var(--space-27) var(--space-22); }

.pr-proceso__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pr-step {
  padding: var(--space-19);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.pr-step:nth-child(2n) { border-right: none; }
.pr-step:nth-last-child(-n+2) { border-bottom: none; }
.pr-step:hover { background: var(--blush-light); }

.pr-step__num {
  font-family: var(--serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--fuchsia);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-13);
  display: block;
  transition: opacity 0.3s;
}
.pr-step:hover .pr-step__num { opacity: 0.6; }

.pr-step__tag {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: var(--space-5);
  display: block;
}

.pr-step__title {
  font-family: var(--serif);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--stone);
  margin-bottom: var(--space-8);
  line-height: 1.3;
}

.pr-step__desc {
  font-family: var(--body);
  font-size: var(--text-xs);
  line-height: 1.9;
  color: var(--stone);
  opacity: 0.58;
}

/* ── PORTFOLIO ─────────────────────────────────────────────── */
.pr-portfolio { padding: 0 0 var(--space-27); }

.pr-portfolio__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: var(--space-24) var(--space-22) var(--space-21);
}

.pr-portfolio__link {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.45;
  display: flex;
  align-items: center;
  gap: var(--space-7);
  transition: opacity 0.3s;
  border-bottom: 1px solid rgba(61,43,56,0.2);
  padding-bottom: var(--space-1);
}
.pr-portfolio__link:hover { opacity: 0.9; color: var(--stone); }

.pr-portfolio__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 380px 320px;
  gap: 4px;
  padding: 0 var(--space-22);
}

.pr-portfolio__item {
  position: relative;
  overflow: hidden;
}
.pr-portfolio__item:first-child { grid-row: 1 / 3; }

.pr-portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pr-portfolio__item:hover img { transform: scale(1.05); }

.pr-portfolio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,16,24,0);
  transition: background 0.4s;
}
.pr-portfolio__item:hover .pr-portfolio__overlay {
  background: rgba(26,16,24,0.25);
}

.pr-portfolio__label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--ui);
  font-size: var(--text-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.pr-portfolio__label::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: white;
  display: block;
}
.pr-portfolio__item:hover .pr-portfolio__label { opacity: 0.9; }

/* Equivalente táctil del hover (main.js añade .touch-hover en touchstart) */
.pr-portfolio__item.touch-hover img { transform: scale(1.05); }
.pr-portfolio__item.touch-hover .pr-portfolio__overlay { background: rgba(26,16,24,0.25); }
.pr-portfolio__item.touch-hover .pr-portfolio__label { opacity: 0.9; }

/* ── TESTIMONIOS ───────────────────────────────────────────── */
.pr-testimonios {
  padding: var(--space-27) var(--space-22);
  background: var(--stone);
}

.pr-tgrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

/* Componente de testimonio compartido — usado en la home (oscuro/grande y
   oscuro/pequeño) y en la página de la directora (variante --light, más abajo
   junto a .pr-testimonial__stars). Sustituye a los antiguos .pr-tcard,
   .pr-tcard--small y .pr-tcard-dir, que repetían la misma estructura
   (cita + autor) tres veces con solo el color y el tamaño distintos. */
.pr-testimonial {
  padding: var(--space-20);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--fuchsia);
}

.pr-testimonial blockquote {
  font-family: var(--serif);
  font-size: var(--text-base);
  font-style: italic;
  line-height: 1.85;
  color: white;
  opacity: 0.8;
  margin-bottom: var(--space-16);
  border: none;
  padding: 0;
}

.pr-testimonial--small {
  padding: var(--space-17);
  border-top-width: 1px;
}

.pr-testimonial--small blockquote {
  font-size: var(--text-sm);
  opacity: 0.65;
}

.pr-testimonial--light {
  background: white;
  border: none;
  border-top: 2px solid var(--fuchsia);
  padding: var(--space-18);
}
.pr-testimonial--light blockquote {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--stone);
  opacity: 1;
  margin-bottom: var(--space-13);
}

.pr-testimonial__stars {
  color: var(--fuchsia);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-10);
}

.pr-t-secondary {
  display: flex;
  flex-direction: column;
  gap: var(--space-13);
}

.pr-tauthor {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.pr-tauthor strong {
  display: block;
  color: var(--blush);
  font-weight: 400;
  margin-bottom: var(--space-1);
  letter-spacing: 0.15em;
}

.pr-testimonios__footer {
  text-align: center;
  margin-top: var(--space-21);
  font-family: var(--serif);
  font-size: var(--text-base);
  font-style: italic;
  color: white;
  opacity: 0.35;
}
.pr-testimonios__footer em { color: var(--fuchsia); opacity: 1; }

/* ── CONTACTO ──────────────────────────────────────────────── */
.pr-contact {
  padding: var(--space-27) var(--space-22);
  background: var(--blush-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-25);
  align-items: start;
}

.pr-contact__title {
  font-family: var(--serif);
  font-size: var(--text-fluid-contact);
  font-weight: 400;
  line-height: 1.05;
  color: var(--stone);
  margin-bottom: var(--space-13);
}
.pr-contact__title em { font-style: italic; color: var(--fuchsia); }

.pr-contact__info { display: flex; flex-direction: column; gap: 0; }

.pr-contact__row {
  display: flex;
  align-items: center;
  gap: var(--space-13);
  padding: var(--space-11) 0;
  border-bottom: 1px solid var(--line);
}

.pr-contact__icon {
  width: 38px;
  height: 38px;
  background: var(--fuchsia);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.pr-contact__label {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: var(--space-1);
  display: block;
}

.pr-contact__val {
  font-family: var(--body);
  font-size: var(--text-xs);
  color: var(--stone);
}

/* ── FORMULARIO ────────────────────────────────────────────── */
.pr-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-11);
}

.pr-form-notice {
  padding: var(--space-10) var(--space-11);
  margin-bottom: var(--space-11);
  font-family: var(--body);
  font-size: var(--text-xs);
  line-height: 1.6;
  border-left: 2px solid;
}
.pr-form-notice--success {
  background: var(--blush-light);
  border-color: var(--fuchsia);
  color: var(--stone);
}
.pr-form-notice--error {
  background: rgba(214,63,163,0.08);
  border-color: var(--fuchsia-d);
  color: var(--stone);
}
.pr-form-notice a { color: var(--fuchsia-d); text-decoration: underline; }

.pr-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pr-field label {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.5;
}

.pr-field input,
.pr-field textarea,
.pr-field select {
  background: white;
  border: 1px solid rgba(61,43,56,0.15);
  padding: var(--space-9) var(--space-11);
  font-family: var(--body);
  font-size: var(--text-xs);
  color: var(--stone);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.pr-field input:focus,
.pr-field textarea:focus,
.pr-field select:focus { border-color: var(--fuchsia); }

.pr-field input:focus-visible,
.pr-field textarea:focus-visible,
.pr-field select:focus-visible {
  outline: 2px solid var(--fuchsia);
  outline-offset: 2px;
}

.pr-field input:disabled,
.pr-field textarea:disabled,
.pr-field select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--blush-light);
}

.pr-field textarea { resize: vertical; min-height: 110px; }

.pr-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-10); }

/* ── FOOTER ────────────────────────────────────────────────── */
.pr-footer {
  background: var(--ink);
  padding: var(--space-21) var(--space-22) var(--space-18);
}

.pr-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-22);
  padding-bottom: var(--space-20);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--space-16);
}

.pr-footer__logo-wrap {
  margin-bottom: var(--space-12);
}
.pr-footer__logo-wrap img {
  height: 54px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.pr-footer__tagline {
  font-family: var(--body);
  font-size: var(--text-xs);
  line-height: 1.85;
  color: white;
  opacity: 0.3;
  max-width: 270px;
}

.pr-footer__col h4 {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: var(--space-15);
}

.pr-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-9);
}

.pr-footer__col ul li a {
  font-family: var(--body);
  font-size: var(--text-xs);
  color: white;
  opacity: 0.35;
  transition: opacity 0.3s;
}
.pr-footer__col ul li a:hover { opacity: 0.9; }

.pr-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pr-footer__copy {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  color: white;
  opacity: 0.18;
  letter-spacing: 0.08em;
}

.pr-footer__social {
  display: flex;
  gap: var(--space-15);
}
.pr-footer__social a {
  font-family: var(--ui);
  font-size: var(--text-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  opacity: 0.28;
  transition: opacity 0.3s;
}
.pr-footer__social a:hover { opacity: 1; color: white; }

/* ── ANIMACIONES entrada ───────────────────────────────────── */
@keyframes prFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pr-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.pr-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.pr-hero__content .pr-eyebrow   { animation: prFadeUp 1s ease 0.2s forwards; opacity: 0; }
.pr-hero__content .pr-h1        { animation: prFadeUp 1s ease 0.38s forwards; opacity: 0; }
.pr-hero__content .pr-body      { animation: prFadeUp 1s ease 0.55s forwards; opacity: 0; }
.pr-hero__content .pr-btn-group { animation: prFadeUp 1s ease 0.72s forwards; opacity: 0; }

/* ── BLUR-UP DE IMÁGENES ──────────────────────────────────────
   El contenedor .pr-lqip lleva una miniatura base64 (~1KB) como
   background; mientras la foto real descarga se ve esa versión
   borrosa en lugar de un hueco gris. Al terminar la carga, el JS
   añade .pr-loaded a la <img> y esta se funde encima.
   Sin JS (no existe .pr-js en <html>) la imagen se muestra normal. */
.pr-lqip {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* El fundido solo se aplica a las imágenes lazy (bajo el pliegue). Las
   eager (hero, retrato de la página Sobre mí) se pintan progresivamente
   sobre su miniatura — ocultarlas hasta el final dispararía el LCP. */
.pr-js .pr-lqip img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.pr-js .pr-lqip img[loading="lazy"].pr-loaded {
  opacity: 1;
}

/* ── PREFERENCIAS DE MOVIMIENTO ───────────────────────────────
   Respeta prefers-reduced-motion: detiene el pulso infinito del
   scroll-hint, muestra .pr-animate y las animaciones de entrada del
   hero sin esperar, y reduce cualquier otra transición/animación a
   una duración casi nula. Ver también assets/js/main.js. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .pr-hero__scroll-line { animation: none; }

  .pr-strip__track { animation: none; flex-wrap: wrap; width: auto; padding: 0 var(--space-13); }
  /* Sin animación, la copia duplicada del marquee (aria-hidden) se vería
     repetida — la ocultamos */
  .pr-strip__track > [aria-hidden="true"] { display: none; }

  .pr-animate { opacity: 1; transform: none; }

  .pr-hero__content .pr-eyebrow,
  .pr-hero__content .pr-h1,
  .pr-hero__content .pr-body,
  .pr-hero__content .pr-btn-group {
    animation: none;
    opacity: 1;
  }
}

/* ── UTILIDADES Y MODIFICADORES ───────────────────────────────
   Sustituye a los style="" que antes iban sueltos en las plantillas
   PHP, para que todo el sistema visual viva en un solo sitio. */
.pr-body--full { max-width: 100%; }
.pr-body--emphasis { font-style: italic; opacity: 0.85; }
.pr-body--narrow-cta { max-width: 480px; }
.pr-mt-loose { margin-top: var(--space-16); }
.pr-mt-xl { margin-top: var(--space-21); }
.pr-body--empty-state { text-align: center; opacity: 0.5; }
.pr-body--compact { font-size: var(--text-xs); margin-bottom: var(--space-11); }
.pr-btn--block { width: 100%; text-align: center; display: block; }

.pr-h2--portfolio { font-size: var(--text-2xl); margin-bottom: 0; }
.pr-h2--center { text-align: center; }

.pr-section-label--center { justify-content: center; }
.pr-section-header--flush { border: none; padding-bottom: 0; margin-bottom: var(--space-21); }

.pr-centered-block { text-align: center; margin-bottom: var(--space-21); }

.pr-price-num--md { font-size: var(--text-md); }

.pr-step--flush { border-bottom: none; }
.pr-step--cta {
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush-light);
}
.pr-step__cta-inner { text-align: center; padding: var(--space-10); }
.pr-step__cta-quote {
  font-family: var(--serif);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--stone);
  margin-bottom: var(--space-13);
  line-height: 1.5;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pr-portfolio__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .pr-portfolio__item:first-child { grid-row: auto; min-height: 280px; }
  .pr-portfolio__item { min-height: 220px; }
  .pr-servicios__grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .pr-header { padding: var(--space-8) var(--space-13); }
  .pr-nav { display: none; flex-direction: column; position: fixed; top: 66px; left: 0; right: 0; background: rgba(253,248,251,0.98); padding: var(--space-16) var(--space-13); gap: var(--space-13); border-bottom: 1px solid var(--line); }
  .pr-nav.open { display: flex; }
  .pr-menu-toggle { display: flex; }
  .pr-hero__content { padding: 0 var(--space-13); }
  .pr-hero__scroll { display: none; }
  .pr-strip { padding: var(--space-11) 0; }
  .pr-filosofia, .pr-directora, .pr-contact { grid-template-columns: 1fr; }
  .pr-filosofia__content, .pr-directora__content { padding: var(--space-21) var(--space-13); }
  .pr-section { padding: var(--space-22) var(--space-13); }
  .pr-enfoque, .pr-servicios, .pr-proceso, .pr-portfolio, .pr-testimonios, .pr-contact { padding: var(--space-22) var(--space-13); }
  .pr-section-header, .pr-grid-2 { grid-template-columns: 1fr; gap: var(--space-16); }
  .pr-grid-3 { grid-template-columns: 1fr; }
  .pr-proceso__steps { grid-template-columns: 1fr; }
  .pr-step { border-right: none; }
  .pr-portfolio__grid { grid-template-columns: 1fr 1fr; gap: 3px; padding: 0 var(--space-13); }
  .pr-portfolio__header { padding: var(--space-19) var(--space-13) var(--space-16); flex-direction: column; gap: var(--space-10); align-items: flex-start; }
  .pr-tgrid { grid-template-columns: 1fr; }
  .pr-stats { grid-template-columns: 1fr; }
  .pr-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .pr-footer__top { grid-template-columns: 1fr; gap: var(--space-19); }
  .pr-footer__bottom { flex-direction: column; gap: var(--space-11); text-align: center; }
  .pr-row { grid-template-columns: 1fr; }
  .pr-servicios__grid { grid-template-columns: 1fr; }
}

/* ── REDES SOCIALES (Instagram + TikTok, portada) ──────────── */
.pr-redes__header {
  text-align: center;
  margin-bottom: var(--space-23);
}
.pr-redes__header .pr-section-label {
  justify-content: center;
}
.pr-redes__header .pr-section-label::before {
  display: none;
}

.pr-redes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-22);
  max-width: 820px;
  margin: 0 auto;
  align-items: start;
}

.pr-redes__col {
  display: flex;
  flex-direction: column;
}

.pr-redes__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-11);
  font-family: var(--ui, 'Jost', sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}
.pr-redes__label span {
  color: var(--ink);
  font-weight: 500;
}
.pr-redes__label a {
  color: var(--fuchsia);
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.pr-redes__label a:hover { opacity: 0.65; }

.pr-redes__embed {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  min-height: 480px;
}
.pr-redes__embed iframe,
.pr-redes__embed .tiktok-embed {
  display: block;
  width: 100% !important;
  border: 0;
}

@media (max-width: 780px) {
  .pr-redes__grid {
    grid-template-columns: 1fr;
    gap: var(--space-19);
    max-width: 420px;
  }
}
