/* ==========================================================
   PackReformas Premium
   Ruta: /assets/css/styles.css
   Estilo: moderno profesional, sobrio y sector reformas
   ========================================================== */

/* ------------------------------
   Reset
-------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

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

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: #111815;
  background:
    radial-gradient(circle at 8% 0%, rgba(180, 111, 52, 0.08), transparent 30%),
    radial-gradient(circle at 94% 8%, rgba(25, 56, 45, 0.10), transparent 32%),
    linear-gradient(180deg, #fbfcfa 0%, #f3f6f2 46%, #f5f7f4 100%);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
  outline: none;
}

textarea {
  resize: vertical;
}

::selection {
  background: #19382d;
  color: #ffffff;
}

/* ------------------------------
   Variables
-------------------------------- */

:root {
  --pr-bg: #f5f7f4;
  --pr-bg-light: #fbfcfa;
  --pr-bg-alt: #edf1ea;
  --pr-bg-strong: #dfe6dc;

  --pr-white: #ffffff;
  --pr-ink: #111815;
  --pr-ink-2: #24332c;
  --pr-muted: #5c6861;
  --pr-muted-2: #7b847e;

  --pr-green: #19382d;
  --pr-green-dark: #101f19;
  --pr-green-2: #245544;
  --pr-green-soft: #e6eee8;

  --pr-copper: #b46f34;
  --pr-copper-dark: #8e5427;
  --pr-copper-soft: rgba(180, 111, 52, 0.11);

  --pr-line: rgba(17, 24, 21, 0.10);
  --pr-line-strong: rgba(17, 24, 21, 0.18);
  --pr-line-dark: rgba(255, 255, 255, 0.16);

  --pr-danger: #9b2c2c;
  --pr-success: #287344;

  --pr-shadow-sm: 0 8px 24px rgba(17, 24, 21, 0.055);
  --pr-shadow-md: 0 16px 42px rgba(17, 24, 21, 0.085);
  --pr-shadow-lg: 0 24px 70px rgba(17, 24, 21, 0.11);

  --pr-radius-xs: 10px;
  --pr-radius-sm: 14px;
  --pr-radius-md: 20px;
  --pr-radius-lg: 26px;
  --pr-radius-xl: 32px;

  --pr-container: 1180px;
  --pr-header-height: 80px;
}

/* ------------------------------
   Estructura comun
-------------------------------- */

.pr-container {
  width: min(var(--pr-container), calc(100% - 44px));
  margin-inline: auto;
}

.pr-narrow {
  max-width: 930px;
}

.pr-section {
  padding: 92px 0;
}

.pr-section-alt {
  background: var(--pr-bg-alt);
  border-top: 1px solid var(--pr-line);
  border-bottom: 1px solid var(--pr-line);
}

.pr-section-intro {
  padding-top: 86px;
  padding-bottom: 90px;
  background: rgba(255, 255, 255, 0.50);
  border-bottom: 1px solid var(--pr-line);
}

.pr-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 7px 12px;
  color: var(--pr-green);
  background: #ffffff;
  border: 1px solid var(--pr-line);
  border-radius: 999px;
  box-shadow: var(--pr-shadow-sm);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.105em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pr-section-head {
  max-width: 880px;
  margin-bottom: 46px;
}

.pr-section-head h2,
.pr-narrow h2,
.pr-dark-title h2,
.pr-ecosystem-content h2,
.pr-image-content h2,
.pr-final-content h2 {
  margin: 0;
  color: var(--pr-ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-size: clamp(2rem, 4vw, 3.28rem);
  font-weight: 880;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.pr-section-head p,
.pr-narrow p,
.pr-ecosystem-content p,
.pr-image-content p,
.pr-final-content p {
  margin: 18px 0 0;
  color: var(--pr-muted);
  font-size: 1.06rem;
  line-height: 1.68;
}

.pr-narrow p {
  font-size: 1.10rem;
}

.pr-narrow p + p,
.pr-ecosystem-content p + p,
.pr-image-content p + p,
.pr-final-content p + p {
  margin-top: 17px;
}

/* ------------------------------
   Botones
-------------------------------- */

.pr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
  white-space: nowrap;
}

.pr-btn:hover {
  transform: translateY(-1px);
}

.pr-btn-primary {
  color: #ffffff;
  background: var(--pr-green);
  border-color: var(--pr-green);
  box-shadow: 0 12px 28px rgba(25, 56, 45, 0.18);
}

.pr-btn-primary:hover {
  background: var(--pr-green-2);
  border-color: var(--pr-green-2);
  box-shadow: 0 16px 34px rgba(25, 56, 45, 0.22);
}

.pr-btn-secondary {
  color: var(--pr-green);
  background: #ffffff;
  border-color: var(--pr-line-strong);
  box-shadow: var(--pr-shadow-sm);
}

.pr-btn-secondary:hover {
  color: var(--pr-green);
  background: var(--pr-green-soft);
  border-color: rgba(25, 56, 45, 0.24);
}

.pr-btn-header {
  min-height: 42px;
  padding-inline: 17px;
  color: #ffffff;
  background: var(--pr-green);
  border-color: var(--pr-green);
  box-shadow: none;
}

.pr-btn-header:hover {
  background: var(--pr-green-2);
  border-color: var(--pr-green-2);
}

.pr-btn-full {
  width: 100%;
}

/* ------------------------------
   Cabecera
-------------------------------- */

.pr-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(251, 252, 250, 0.92);
  border-bottom: 1px solid var(--pr-line);
  box-shadow: 0 8px 24px rgba(17, 24, 21, 0.045);
  backdrop-filter: blur(14px);
}

.pr-header-scrolled {
  background: rgba(251, 252, 250, 0.98);
}

.pr-header-inner {
  width: min(1260px, calc(100% - 44px));
  min-height: var(--pr-header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.pr-logo,
.pr-footer-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.pr-logo img,
.pr-footer-logo img {
  width: 188px;
  height: auto;
}

.pr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--pr-muted);
  font-size: 0.91rem;
  font-weight: 750;
}

.pr-nav a {
  position: relative;
  padding: 7px 0;
}

.pr-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--pr-copper);
  transition: width 180ms ease;
}

.pr-nav a:hover {
  color: var(--pr-ink);
}

.pr-nav a:hover::after {
  width: 100%;
}

.pr-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.pr-header-phone {
  color: var(--pr-green);
  font-size: 0.93rem;
  font-weight: 850;
  white-space: nowrap;
}

.pr-header-phone:hover {
  color: var(--pr-copper-dark);
}

.pr-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--pr-line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--pr-shadow-sm);
}

.pr-nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--pr-ink);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

body.pr-menu-open .pr-nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.pr-menu-open .pr-nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.pr-menu-open .pr-nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ------------------------------
   Hero
-------------------------------- */

.pr-hero {
  position: relative;
  padding: 84px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(180, 111, 52, 0.10), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(25, 56, 45, 0.12), transparent 34%),
    linear-gradient(180deg, #fbfcfa 0%, #f3f6f2 100%);
  border-bottom: 1px solid var(--pr-line);
}

.pr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 21, 0.030) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 24, 21, 0.024) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 80%);
  pointer-events: none;
}

.pr-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 56px;
}

.pr-hero-content h1 {
  max-width: 860px;
  margin: 0;
  color: var(--pr-ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-size: clamp(2.6rem, 5.8vw, 5.05rem);
  font-weight: 920;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.pr-hero-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--pr-muted);
  font-size: clamp(1.06rem, 1.75vw, 1.20rem);
  line-height: 1.72;
}

.pr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.pr-hero-note {
  max-width: 700px;
  margin-top: 28px;
  padding: 20px 22px;
  color: var(--pr-muted);
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid var(--pr-line);
  border-radius: 18px;
  box-shadow: var(--pr-shadow-sm);
  font-size: 0.98rem;
  line-height: 1.62;
}

.pr-hero-note strong {
  color: var(--pr-ink);
}

.pr-hero-panel {
  position: relative;
}

.pr-hero-media {
  overflow: hidden;
  min-height: 540px;
  background: #d5cec0;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  box-shadow: var(--pr-shadow-lg);
}

.pr-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.pr-hero-card {
  margin-top: 16px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--pr-line);
  border-radius: 18px;
  box-shadow: var(--pr-shadow-sm);
  backdrop-filter: blur(8px);
}

.pr-hero-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--pr-copper-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.pr-hero-card p {
  max-width: 500px;
  margin: 0;
  color: var(--pr-ink-2);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ------------------------------
   Problemas
-------------------------------- */

.pr-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pr-problem-card {
  min-height: 292px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--pr-line);
  border-radius: 20px;
  box-shadow: var(--pr-shadow-sm);
  backdrop-filter: blur(8px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.pr-problem-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pr-shadow-md);
  background: #ffffff;
}

.pr-problem-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--pr-copper-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.10em;
}

.pr-problem-card h3 {
  margin: 0;
  color: var(--pr-ink);
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.pr-problem-card p {
  margin: 14px 0 0;
  color: var(--pr-muted);
  font-size: 0.96rem;
}

/* ------------------------------
   Servicios
-------------------------------- */

.pr-service-grid {
  display: grid;
  gap: 18px;
}

.pr-service-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.43fr) minmax(0, 0.57fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--pr-line);
  border-radius: 24px;
  box-shadow: var(--pr-shadow-sm);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.pr-service-image {
  overflow: hidden;
  min-height: 292px;
  background: #d5cec0;
}

.pr-service-image img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.pr-service-content {
  padding: 34px 38px;
}

.pr-service-content span {
  display: block;
  margin-bottom: 18px;
  color: var(--pr-copper-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pr-service-content h3 {
  max-width: 640px;
  margin: 0;
  color: var(--pr-ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.26rem);
  font-weight: 880;
  line-height: 1.10;
  letter-spacing: -0.04em;
}

.pr-service-content p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--pr-muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

/* ------------------------------
   Seccion oscura
-------------------------------- */

.pr-section-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 0%, rgba(180, 111, 52, 0.16), transparent 28%),
    linear-gradient(180deg, #17231d 0%, #101914 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pr-section-dark .pr-kicker {
  color: #f1d09a;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.pr-dark-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 64px;
  align-items: start;
}

.pr-dark-title h2 {
  color: #ffffff;
}

.pr-dark-content {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.72;
}

.pr-dark-content p {
  margin: 0;
}

.pr-dark-content p + p {
  margin-top: 18px;
}

.pr-check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.pr-check-list li {
  position: relative;
  padding: 15px 18px 15px 42px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}

.pr-check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 9px;
  height: 9px;
  background: #c79461;
  border-radius: 50%;
}

/* ------------------------------
   Packs
-------------------------------- */

.pr-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pr-pack-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--pr-line);
  border-radius: 24px;
  box-shadow: var(--pr-shadow-sm);
  backdrop-filter: blur(8px);
}

.pr-pack-featured {
  background:
    linear-gradient(180deg, rgba(25, 56, 45, 0.075), rgba(255, 255, 255, 0.88));
  border-color: rgba(25, 56, 45, 0.20);
  box-shadow: var(--pr-shadow-md);
}

.pr-pack-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pr-line);
}

.pr-pack-label {
  display: block;
  min-height: 38px;
  margin-bottom: 18px;
  color: var(--pr-copper-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.105em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pr-pack-head h3 {
  margin: 0;
  color: var(--pr-ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-size: clamp(2.2rem, 3.1vw, 2.95rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.pr-pack-head h3 small {
  color: var(--pr-muted);
  font-size: 0.94rem;
  font-weight: 750;
  letter-spacing: 0;
}

.pr-pack-head p {
  margin: 18px 0 0;
  color: var(--pr-muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.pr-pack-body,
.pr-pack-ideal {
  padding-top: 24px;
}

.pr-pack-body h4,
.pr-pack-ideal h4 {
  margin: 0 0 14px;
  color: var(--pr-ink);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pr-pack-body ul,
.pr-pack-ideal ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pr-pack-body li,
.pr-pack-ideal li {
  position: relative;
  padding-left: 20px;
  color: var(--pr-muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.pr-pack-body li::before,
.pr-pack-ideal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  background: var(--pr-copper);
  border-radius: 50%;
}

.pr-pack-ideal {
  margin-top: auto;
  padding-bottom: 24px;
}

.pr-pack-ideal h4 {
  color: var(--pr-copper-dark);
}

.pr-pack-note {
  margin-top: 28px;
  padding: 34px 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(180, 111, 52, 0.20), transparent 34%),
    linear-gradient(135deg, var(--pr-green) 0%, #17231d 100%);
  color: #ffffff;
  border-radius: 26px;
  box-shadow: var(--pr-shadow-lg);
}

.pr-pack-note h3 {
  max-width: 890px;
  margin: 0;
  color: #ffffff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.pr-pack-note p {
  max-width: 900px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  line-height: 1.66;
}

/* ------------------------------
   Ecosistema
-------------------------------- */

.pr-ecosystem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 56px;
  align-items: center;
}

.pr-ecosystem-media {
  overflow: hidden;
  background: #d5cec0;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  box-shadow: var(--pr-shadow-md);
}

.pr-ecosystem-media img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.pr-ecosystem-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pr-ecosystem-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  color: var(--pr-green);
  background: #ffffff;
  border: 1px solid var(--pr-line-strong);
  border-radius: 12px;
  box-shadow: var(--pr-shadow-sm);
  font-weight: 800;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.pr-ecosystem-links a:hover {
  color: #ffffff;
  background: var(--pr-green);
  border-color: var(--pr-green);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(25, 56, 45, 0.18);
}

/* ------------------------------
   Para quien es
-------------------------------- */

.pr-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pr-fit-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--pr-line);
  border-radius: 24px;
  box-shadow: var(--pr-shadow-sm);
}

.pr-fit-card h3 {
  margin: 0;
  color: var(--pr-ink);
  font-size: 1.65rem;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.pr-fit-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pr-fit-card li {
  position: relative;
  padding-left: 28px;
  color: var(--pr-muted);
  line-height: 1.55;
}

.pr-fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.pr-fit-yes li::before {
  background: var(--pr-green);
}

.pr-fit-no li::before {
  background: var(--pr-copper);
}

/* ------------------------------
   Pasos
-------------------------------- */

.pr-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pr-step {
  min-height: 260px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--pr-line);
  border-radius: 20px;
  box-shadow: var(--pr-shadow-sm);
}

.pr-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  color: #ffffff;
  background: var(--pr-green);
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.pr-step h3 {
  margin: 0;
  color: var(--pr-ink);
  font-size: 1.16rem;
  line-height: 1.24;
  letter-spacing: -0.025em;
}

.pr-step p {
  margin: 14px 0 0;
  color: var(--pr-muted);
  font-size: 0.96rem;
}

/* ------------------------------
   Bloque con imagen
-------------------------------- */

.pr-section-image {
  padding-top: 0;
  background: transparent;
}

.pr-image-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  gap: 54px;
  align-items: center;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--pr-line);
  border-radius: 30px;
  box-shadow: var(--pr-shadow-md);
}

.pr-image-media {
  overflow: hidden;
  background: #d5cec0;
  border-radius: 24px;
}

.pr-image-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

/* ------------------------------
   FAQ
-------------------------------- */

.pr-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pr-faq-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--pr-line);
  border-radius: 20px;
  box-shadow: var(--pr-shadow-sm);
}

.pr-faq-item h3 {
  margin: 0;
  color: var(--pr-ink);
  font-size: 1.08rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.pr-faq-item p {
  margin: 12px 0 0;
  color: var(--pr-muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

/* ------------------------------
   CTA final y formulario
-------------------------------- */

.pr-final-cta {
  padding: 96px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(180, 111, 52, 0.18), transparent 32%),
    linear-gradient(135deg, var(--pr-green) 0%, #17231d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pr-final-cta .pr-kicker {
  color: #f1d09a;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.pr-final-content h2,
.pr-final-content p {
  color: #ffffff;
}

.pr-final-content p {
  color: rgba(255, 255, 255, 0.78);
}

.pr-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  gap: 54px;
  align-items: start;
}

.pr-contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.pr-contact-lines a {
  width: fit-content;
  color: #f1d09a;
  font-weight: 850;
  border-bottom: 1px solid rgba(241, 208, 154, 0.45);
}

.pr-contact-lines a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.pr-form-wrap {
  padding: 28px;
  color: var(--pr-ink);
  background: #f8faf6;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow: var(--pr-shadow-md);
}

.pr-form {
  display: grid;
  gap: 16px;
}

.pr-form-row {
  display: grid;
  gap: 8px;
}

.pr-form-row label {
  color: var(--pr-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.pr-form-row input,
.pr-form-row textarea,
.pr-form-row select {
  width: 100%;
  border: 1px solid var(--pr-line-strong);
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--pr-ink);
  background: #ffffff;
  outline: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.pr-form-row select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--pr-green) 50%),
    linear-gradient(135deg, var(--pr-green) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 52%,
    calc(100% - 14px) 52%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.pr-form-row input:focus,
.pr-form-row textarea:focus,
.pr-form-row select:focus {
  border-color: var(--pr-green);
  box-shadow: 0 0 0 4px rgba(25, 56, 45, 0.11);
}

.pr-form-row textarea {
  resize: vertical;
  min-height: 132px;
}

.pr-form-legal {
  margin: -2px 0 0;
  color: var(--pr-muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.pr-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.pr-field-error {
  border-color: rgba(155, 44, 44, 0.8) !important;
  background: rgba(155, 44, 44, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(155, 44, 44, 0.10) !important;
}

.pr-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.pr-alert-success {
  color: var(--pr-success);
  background: rgba(40, 115, 68, 0.10);
  border: 1px solid rgba(40, 115, 68, 0.24);
}

.pr-alert-error {
  color: var(--pr-danger);
  background: rgba(155, 44, 44, 0.10);
  border: 1px solid rgba(155, 44, 44, 0.24);
}

/* ------------------------------
   Footer
-------------------------------- */

.pr-footer {
  padding: 68px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #101713;
}

.pr-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(0, 0.7fr));
  gap: 46px;
}

.pr-footer-brand p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.pr-footer-contact {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.pr-footer-contact a,
.pr-footer-column a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.pr-footer-contact a:hover,
.pr-footer-column a:hover {
  color: #d8a772;
}

.pr-footer-column h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
}

.pr-footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pr-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 54px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.pr-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.87rem;
}

.pr-footer-bottom p:last-child {
  text-align: right;
}

/* ==========================================================
   Paginas legales
   ========================================================== */

.pr-legal-hero {
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at 8% 0%, rgba(180, 111, 52, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfcfa 0%, #f3f6f2 100%);
  border-bottom: 1px solid var(--pr-line);
}

.pr-legal-hero h1 {
  margin: 0;
  color: var(--pr-ink);
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.pr-legal-hero p {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--pr-muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.pr-legal-section {
  padding: 82px 0 96px;
  background: rgba(255, 255, 255, 0.45);
}

.pr-legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.pr-legal-index {
  position: sticky;
  top: calc(var(--pr-header-height) + 24px);
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--pr-line);
  border-radius: 20px;
  box-shadow: var(--pr-shadow-sm);
}

.pr-legal-index h2 {
  margin: 0 0 18px;
  color: var(--pr-ink);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pr-legal-index nav {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--pr-line);
}

.pr-legal-index nav a {
  display: block;
  padding: 11px 0;
  color: var(--pr-muted);
  font-size: 0.92rem;
  line-height: 1.35;
  border-bottom: 1px solid var(--pr-line);
  transition:
    color 180ms ease,
    padding-left 180ms ease;
}

.pr-legal-index nav a:hover {
  color: var(--pr-green);
  padding-left: 6px;
}

.pr-legal-content {
  min-width: 0;
  padding: 42px;
  background: #ffffff;
  border: 1px solid var(--pr-line);
  border-radius: 24px;
  box-shadow: var(--pr-shadow-sm);
}

.pr-legal-content section {
  padding: 0 0 42px;
  margin: 0 0 42px;
  border-bottom: 1px solid var(--pr-line);
  scroll-margin-top: calc(var(--pr-header-height) + 28px);
}

.pr-legal-content section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.pr-legal-content h2 {
  margin: 0 0 18px;
  color: var(--pr-ink);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.pr-legal-content h3 {
  margin: 28px 0 12px;
  color: var(--pr-ink-2);
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.pr-legal-content p {
  margin: 0;
  color: var(--pr-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.pr-legal-content p + p {
  margin-top: 16px;
}

.pr-legal-content a {
  color: var(--pr-green);
  font-weight: 750;
  border-bottom: 1px solid rgba(25, 56, 45, 0.28);
}

.pr-legal-content a:hover {
  color: var(--pr-copper-dark);
  border-bottom-color: rgba(126, 77, 37, 0.42);
}

.pr-legal-content ul,
.pr-legal-content ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.pr-legal-content li {
  position: relative;
  padding-left: 24px;
  color: var(--pr-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.pr-legal-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--pr-copper);
  border-radius: 50%;
}

.pr-legal-table {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid var(--pr-line-strong);
  border-left: 1px solid var(--pr-line-strong);
  border-radius: 16px;
  overflow: hidden;
}

.pr-legal-table div {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 0.68fr);
  border-right: 1px solid var(--pr-line-strong);
  border-bottom: 1px solid var(--pr-line-strong);
}

.pr-legal-table strong {
  padding: 14px 16px;
  color: var(--pr-ink);
  background: var(--pr-bg-alt);
  font-size: 0.92rem;
  line-height: 1.45;
}

.pr-legal-table span {
  min-width: 0;
  padding: 14px 16px;
  color: var(--pr-muted);
  background: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.pr-legal-table a {
  word-break: break-word;
}

.pr-legal-notice {
  margin-top: 22px;
  padding: 18px 20px;
  color: var(--pr-ink-2);
  background: var(--pr-copper-soft);
  border-left: 4px solid var(--pr-copper);
  border-radius: 14px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.pr-legal-notice strong {
  color: var(--pr-ink);
}

/* ------------------------------
   Responsive
-------------------------------- */

@media (max-width: 1160px) {
  .pr-header-actions {
    display: none;
  }

  .pr-hero-grid,
  .pr-ecosystem-grid,
  .pr-final-grid {
    grid-template-columns: 1fr;
  }

  .pr-hero-content {
    max-width: 900px;
  }

  .pr-hero-panel {
    max-width: 780px;
  }

  .pr-problem-grid,
  .pr-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pr-pack-grid {
    grid-template-columns: 1fr;
  }

  .pr-pack-card {
    min-height: auto;
  }

  .pr-pack-label {
    min-height: auto;
  }

  .pr-pack-ideal {
    margin-top: 0;
  }

  .pr-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .pr-legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pr-legal-index {
    position: relative;
    top: auto;
  }

  .pr-legal-index nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
  }
}

@media (max-width: 920px) {
  :root {
    --pr-header-height: 72px;
  }

  .pr-header-inner {
    width: min(100% - 32px, 1260px);
  }

  .pr-nav-toggle {
    display: inline-block;
  }

  .pr-nav {
    position: fixed;
    top: calc(var(--pr-header-height) + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: auto;
    max-width: none;
    padding: 10px;
    background: #f8faf6;
    border: 1px solid var(--pr-line-strong);
    border-radius: 18px;
    box-shadow: var(--pr-shadow-md);
    backdrop-filter: blur(12px);
  }

  body.pr-menu-open .pr-nav {
    display: flex;
  }

  .pr-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--pr-line);
  }

  .pr-nav a:last-child {
    border-bottom: 0;
  }

  .pr-nav a::after {
    display: none;
  }

  .pr-section {
    padding: 76px 0;
  }

  .pr-hero {
    padding: 62px 0 72px;
  }

  .pr-service-card {
    grid-template-columns: 1fr;
  }

  .pr-service-content {
    padding: 30px;
  }

  .pr-fit-grid,
  .pr-faq,
  .pr-dark-grid,
  .pr-image-grid {
    grid-template-columns: 1fr;
  }

  .pr-image-grid {
    padding: 28px;
  }

  .pr-image-media {
    order: 2;
  }

  .pr-image-content {
    order: 1;
  }
}

@media (max-width: 680px) {
  .pr-container {
    width: min(100% - 30px, var(--pr-container));
  }

  .pr-header-inner {
    width: min(100% - 30px, 1260px);
  }

  .pr-logo img,
  .pr-footer-logo img {
    width: 154px;
  }

  .pr-hero-content h1 {
    font-size: clamp(2.28rem, 11vw, 3.28rem);
  }

  .pr-section-head h2,
  .pr-narrow h2,
  .pr-dark-title h2,
  .pr-ecosystem-content h2,
  .pr-image-content h2,
  .pr-final-content h2 {
    font-size: clamp(1.92rem, 9vw, 2.45rem);
  }

  .pr-hero-lead,
  .pr-section-head p,
  .pr-narrow p,
  .pr-ecosystem-content p,
  .pr-image-content p,
  .pr-final-content p {
    font-size: 0.98rem;
  }

  .pr-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pr-btn {
    width: 100%;
    white-space: normal;
  }

  .pr-hero-media,
  .pr-hero-media img {
    min-height: 340px;
  }

  .pr-problem-grid,
  .pr-steps {
    grid-template-columns: 1fr;
  }

  .pr-problem-card,
  .pr-step {
    min-height: auto;
  }

  .pr-service-image,
  .pr-service-image img {
    min-height: 230px;
  }

  .pr-service-content {
    padding: 24px 22px;
  }

  .pr-pack-card {
    padding: 26px 20px;
  }

  .pr-pack-note {
    padding: 28px 24px;
  }

  .pr-fit-card,
  .pr-faq-item {
    padding: 22px;
  }

  .pr-ecosystem-media img,
  .pr-image-media img {
    min-height: 310px;
  }

  .pr-final-grid {
    gap: 36px;
  }

  .pr-form-wrap {
    padding: 20px;
  }

  .pr-footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pr-footer-bottom {
    display: grid;
    gap: 12px;
  }

  .pr-footer-bottom p:last-child {
    text-align: left;
  }

  .pr-legal-hero {
    padding: 62px 0 56px;
  }

  .pr-legal-section {
    padding: 58px 0 74px;
  }

  .pr-legal-content {
    padding: 28px 22px;
  }

  .pr-legal-content section {
    padding-bottom: 34px;
    margin-bottom: 34px;
  }

  .pr-legal-index {
    padding: 20px;
  }

  .pr-legal-index nav {
    grid-template-columns: 1fr;
  }

  .pr-legal-table div {
    grid-template-columns: 1fr;
  }

  .pr-legal-table strong {
    border-bottom: 1px solid var(--pr-line);
  }
}

@media (max-width: 420px) {
  .pr-header-inner {
    width: min(100% - 24px, 1260px);
  }

  .pr-container {
    width: min(100% - 24px, var(--pr-container));
  }

  .pr-logo img,
  .pr-footer-logo img {
    width: 146px;
  }

  .pr-section {
    padding: 66px 0;
  }

  .pr-hero {
    padding: 58px 0 66px;
  }

  .pr-hero-note,
  .pr-hero-card,
  .pr-service-card,
  .pr-problem-card,
  .pr-step,
  .pr-pack-card,
  .pr-fit-card,
  .pr-faq-item,
  .pr-form-wrap,
  .pr-legal-content {
    border-radius: 18px;
  }

  .pr-image-grid,
  .pr-pack-note,
  .pr-hero-media,
  .pr-ecosystem-media,
  .pr-quote-box {
    border-radius: 22px;
  }

  .pr-pack-head h3 {
    font-size: 2.12rem;
  }

  .pr-image-grid {
    padding: 18px;
  }

  .pr-legal-content {
    padding: 24px 18px;
  }

  .pr-legal-hero h1 {
    font-size: 2.28rem;
  }
}
