@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Roboto+Slab:wght@400;500;600;700&family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swapp");
/* ============================================================
 PROX25 â€” sistema visual
 Marca: trabajo, madurez y vida plena
 ============================================================ */
img, .has-image {
  max-width: 100% !important;
}
:root {
  /* Brand colors (del manual) */
  --teal: #16bec0;
  --teal-deep: #0fa3a5;
  --teal-soft: #d6f3f3;
  --teal-tint: #ebf8f8;
  /* Neutrals */
  --ink: #0e1a2b;
  /* near-black con tinte azul marino */
  --ink-2: #2a3949;
  --ink-3: #5c6a7a;
  --ink-4: #8a95a2;
  --rule: #dee3e8;
  --paper: #ffffff;
  --paper-2: #f5f7f8;
  --paper-3: #eef1f3;
  /* Type */
  --f-display: "Audiowide", system-ui, sans-serif;
  --f-serif: "Roboto Slab", Georgia, serif;
  --f-sans: "IBM Plex Sans", system-ui, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, monospace;
  /* Scale */
  --max: 1280px;
  --gut: clamp(20px, 4vw, 56px);
}
/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}
.disabled {
  cursor: default !important;
  pointer-events: none !important;
}
html, body {
  margin: 0;
  padding: 0;
}
img, svg {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  cursor: default;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--teal);
}
::-webkit-scrollbar-track {
  background: var(--paper);
  border: none;
  border-bottom: none !important;
  border-left: 0.0625rem solid #888;
  border-top: none !important;
}
/* ===== Layout ===== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}
.wrap-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}
.wrap-wide {
  max-width: 1480px;
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}
section {
  padding: clamp(64px, 9vw, 120px) 0;
}
section.tight {
  padding: clamp(40px, 6vw, 72px) 0;
}
.band-soft {
  background: var(--paper-2);
}
.band-ink {
  background: var(--ink);
  color: #fff;
}
.band-ink * {
  color: inherit;
}
.band-teal {
  background: var(--teal);
  color: #fff;
}
/* ===== Type ===== */
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
h1 > a, h2 > a, h3 > a, h4 > a {
  color: inherit;
  text-decoration: none;
}
h1 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.05;
}
h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
}
h4 {
  font-size: 19px;
}
.band-ink h1, .band-ink h2, .band-ink h3, .band-ink h4 {
  color: #fff;
}
.band-teal h1, .band-teal h2, .band-teal h3 {
  color: #fff;
}
p {
  margin: 0 0 1em;
}
p.lead {
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 60ch;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 500;
}
.kicker.on-dark {
  color: var(--teal);
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: lowercase;
}
.num {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--teal);
}
/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.btn svg {
  transition: transform 0.2s ease;
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--teal-deep);
}
.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover {
  background: var(--teal-deep);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover {
  color: var(--teal-deep);
}
.band-ink .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.band-ink .btn-outline:hover {
  background: #fff;
  color: var(--ink);
}
/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-header.on-dark {
  background: rgba(14, 26, 43, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.nav-logo .lockup {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo .lockup small {
  display: block;
  font-family: var(--f-sans);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--ink-3);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.on-dark .nav-logo .lockup small {
  color: rgba(255, 255, 255, 0.6);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover {
  color: var(--teal-deep);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--teal);
}
.nav-cta {
  padding: 12px 28px;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  background: var(--teal-deep);
}
.on-dark .nav-cta {
  background: var(--teal);
}
.on-dark .nav-cta:hover {
  background: #fff;
  color: var(--ink);
}
.nav-burger {
  display: none;
}
.nav-mobile {
  background: #fff;
  display: none !important;
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 10000;
}
@media (max-width: 880px) {
  body:has(.nav-burger.open) {
    overflow: hidden;
    position: relative;
  }
  body:has(.nav-burger.open)::before {
    background: #0003;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100vw;
    z-index: 49;
  }
  .nav:has(.nav-burger.open) + .nav-mobile {
    display: block !important;
  }
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 1px solid var(--rule);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: inherit;
  }
  .nav-burger.open {
    background: #16bec0;
  }
  .on-dark .nav-burger {
    border-color: rgba(255, 255, 255, 0.3);
  }
  .nav-mobile {
    display: none;
    padding: 16px 10px 24px;
    border-top: 1px solid var(--rule);
  }
  .nav-mobile a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: inherit;
    font-size: 18px;
    font-family: var(--f-serif);
  }
}
/* ===== The Wave (firma visual) ===== */
/* Basado en las 5 barras del logo. Reutilizado como inline SVG. */
.wave-rule {
  display: inline-flex;
  align-items: end;
  gap: 6px;
  height: 28px;
}
.wave-rule i {
  display: block;
  width: 4px;
  background: var(--teal);
}
.wave-rule i:nth-child(1) {
  height: 50%;
}
.wave-rule i:nth-child(2) {
  height: 90%;
}
.wave-rule i:nth-child(3) {
  height: 35%;
}
.wave-rule i:nth-child(4) {
  height: 70%;
}
.wave-rule i:nth-child(5) {
  height: 55%;
}
.wave-divider {
  display: flex;
  gap: 8px;
  align-items: end;
  height: 64px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.wave-divider i {
  display: block;
  width: 5px;
  background: var(--ink);
}
/* ===== Cards ===== */
.card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease, transform 0.25s ease;
}
.card:hover {
  border-color: var(--ink);
}
.card .num {
  font-size: 36px;
}
/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}
.site-footer h3 {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer-grid a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: block;
  padding: 6px 0;
  font-size: 15px;
}
.footer-grid a:hover {
  color: var(--teal);
}
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
/* ===== Misc utilities ===== */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}
.split-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.split-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .split-2, .split-3, .split-4 {
    grid-template-columns: 1fr;
  }
}
.hairline {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 0;
}
.hairline-thick {
  border: 0;
  height: 2px;
  background: var(--ink);
  margin: 0;
}
/* Section header */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 64px);
}
/* Tag chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  background: #fff;
}
.chip.teal {
  border-color: var(--teal);
  color: var(--teal-deep);
  background: var(--teal-tint);
}
/* Photo placeholder (Estrella) */
.portrait-placeholder {
  background: var(--paper-3);
  background-image: linear-gradient(135deg, transparent 49%, rgba(14, 26, 43, 0.06) 50%, transparent 51%);
  background-size: 14px 14px;
  border: 1px solid var(--rule);
  position: relative;
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.portrait-placeholder::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid var(--ink-4);
  pointer-events: none;
}
/* Animated section underline reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
/* Mark */
mark {
  background: linear-gradient(180deg, transparent 60%, var(--teal-soft) 60%);
  color: inherit;
  padding: 0 2px;
}
/* Big quote */
.pullquote {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.pullquote-cite {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 24px;
}
/* Index counter for ordered cards */
.idx {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--teal);
  display: inline-block;
}
/* Two-column body text */
.cols-2 {
  columns: 2;
  column-gap: 56px;
  column-rule: 1px solid var(--rule);
}
@media (max-width: 760px) {
  .cols-2 {
    columns: 1;
  }
}
/* ===== Real photography ===== */
/* Photo slot â€” self-contained. Uses CSS background-image so a missing file falls back gracefully to a tinted placeholder + label. Provide a 4:5 or 4:3 image; recommended >1200px wide. */
.photo-slot {
  position: relative;
  background: linear-gradient(135deg, var(--teal-tint) 0%, #fbf3e9 100%);
  background-size: cover;
  background-position: 50% 25%;
  background-repeat: no-repeat;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.photo-slot::before {
  /* Subtle wave watermark visible when no image is present (covered when image loads) */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(22, 190, 192, 0.08) 100%), repeating-linear-gradient(90deg, transparent 0 22px, rgba(14, 26, 43, 0.04) 22px 24px);
  pointer-events: none;
  z-index: 0;
}
.photo-slot--variantB {
  background-image: linear-gradient(135deg, #fdf1e5 0%, var(--teal-tint) 100%);
}
.photo-slot--variantC {
  background-image: linear-gradient(135deg, #f4ecfb 0%, var(--paper-2) 100%);
}
.photo-slot--variantD {
  background-image: linear-gradient(135deg, #e8f4f2 0%, #fbf3e9 100%);
}
.photo-slot--variantE {
  background-image: linear-gradient(135deg, #e8f4f2 0%, #f4ecfb 100%);
}
/* When the background image successfully loads, decorations soften */
.photo-slot.has-image::before {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.photo-slot-label {
  position: absolute;
  left: 16px;
  top: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 4px 8px;
  border: 1px dashed var(--ink-4);
  background: rgba(255, 255, 255, 0.65);
  z-index: 2;
}
.photo-slot.has-image .photo-slot-label {
  display: none;
}
.photo-slot-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  z-index: 2;
}
.photo-slot.has-image .photo-slot-caption {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}
/* Variants of photo-slot for sizing convenience */
.photo-slot--portrait {
  aspect-ratio: 0.8;
}
.photo-slot--landscape {
  aspect-ratio: 1.3333333333;
}
.photo-slot--wide {
  aspect-ratio: 1.7777777778;
}
.photo-slot--square {
  aspect-ratio: 1;
}
/* Estrella portrait â€” framed, with a teal hairline accent that echoes the wave */
.portrait-photo {
  position: relative;
  aspect-ratio: 0.8;
  width: 100%;
  background: var(--paper-2);
  overflow: hidden;
}
.portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}
.portrait-photo::after {
  content: "";
  position: absolute;
  left: -10px;
  right: 22px;
  bottom: -10px;
  height: 1px;
  background: var(--teal);
}
.portrait-photo .photo-tag {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
/* Circular small portrait â€” used in the CTA / inline */
.portrait-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--teal);
}
.portrait-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}
/* Real book cover image */
.book-photo {
  display: block;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 0.6666666667;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, -14px 14px 0 -1px rgba(22, 190, 192, 0.18), 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
  margin: 0 auto;
}
.book-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.book-photo:hover {
  transform: rotate(0deg) scale(1.02);
}
.book-photo--lg {
  max-width: 380px;
  box-shadow: -16px 16px 0 -1px rgba(22, 190, 192, 0.22), 0 40px 80px -24px rgba(14, 26, 43, 0.18);
  transform: rotate(-2deg);
}
.nav .nav-cta {
  padding: 12px 28px !important;
  background: #16bec0 !important;
  color: #fff !important;
  white-space: nowrap;
  border-radius: 0 !important;
}
.nav .nav-cta:hover {
  background: #0f9c9e !important;
}
.on-dark .nav .nav-cta {
  background: #16bec0 !important;
  color: #fff !important;
}
.on-dark .nav .nav-cta:hover {
  background: #fff !important;
  color: #0e1a2b !important;
}
/* END NAV FIX */
/* NEWSLETTER FORM */
@media (max-width: 880px) {
  .nl-grid {
    grid-template-columns: 1fr !important;
  }
}
.nl-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.nl-form input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 16px 18px;
  font-family: var(--f-sans);
  font-size: 15px;
}
.nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.nl-form input:focus {
  outline: none;
  border-color: var(--teal);
}
@media (max-width: 600px) {
  .nl-form {
    flex-direction: column;
  }
}
/* END NEWSLETTER FORM */
/* BLOG FILTERS */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .filters {
    justify-content: center;
  }
}
.filter {
  background: transparent;
  border: 1px solid var(--rule);
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: var(--f-sans);
  font-weight: 500;
  transition: all 0.15s ease;
  color: var(--ink-2);
  text-decoration: none;
  cursor: pointer;
}
.filter:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.filter.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.f-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.f-num {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  padding: 2px 6px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  margin-left: 2px;
}
.filter.is-on .f-num {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.25);
}
/* END BLOG FILTERS */
/* SLIDES */
.hero-slider {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.slides {
  position: relative;
}
.slide {
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 80px);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  transition: opacity 0.55s ease;
}
.slide.is-on {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.slide-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.slide-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
/* Slide 1 wave (kept from original hero) */
.hero-wave {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 380px;
}
.hero-wave i {
  display: block;
  width: 9px;
  background: var(--ink);
  animation: wave-pulse 2.6s ease-in-out infinite;
  transform-origin: bottom;
}
.hero-wave i:nth-child(1) {
  height: 36%;
  animation-delay: 0s;
}
.hero-wave i:nth-child(2) {
  height: 64%;
  animation-delay: -0.2s;
}
.hero-wave i:nth-child(3) {
  height: 22%;
  animation-delay: -0.5s;
}
.hero-wave i:nth-child(4) {
  height: 88%;
  animation-delay: -0.7s;
  background: var(--teal);
}
.hero-wave i:nth-child(5) {
  height: 48%;
  animation-delay: -0.9s;
}
.hero-wave i:nth-child(6) {
  height: 100%;
  animation-delay: -1.1s;
  background: var(--teal);
}
.hero-wave i:nth-child(7) {
  height: 30%;
  animation-delay: -1.3s;
}
.hero-wave i:nth-child(8) {
  height: 75%;
  animation-delay: -1.5s;
}
.hero-wave i:nth-child(9) {
  height: 55%;
  animation-delay: -1.7s;
  background: var(--teal);
}
.hero-wave i:nth-child(10) {
  height: 40%;
  animation-delay: -1.9s;
}
.hero-wave i:nth-child(11) {
  height: 92%;
  animation-delay: -2.1s;
}
.hero-wave i:nth-child(12) {
  height: 25%;
  animation-delay: -2.3s;
}
.hero-wave i:nth-child(13) {
  height: 60%;
  animation-delay: -2.5s;
}
.hero-wave i:nth-child(14) {
  height: 38%;
  animation-delay: -2.7s;
}
.hero-wave i:nth-child(15) {
  height: 70%;
  animation-delay: -2.9s;
}
@keyframes wave-pulse {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.65);
  }
}
.hero-tag {
  position: absolute;
  right: 0;
  bottom: -16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 2px solid var(--ink);
  padding-top: 12px;
}
.hero-tag .num {
  font-size: 64px;
  line-height: 1;
}
.hero-tag small {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
/* Slide 2 — book */
.slide-book-cover {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 0.6666666667;
  box-shadow: -16px 16px 0 -1px rgba(22, 190, 192, 0.22), 0 40px 80px -24px rgba(14, 26, 43, 0.25);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.slide-book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-book-cover:hover {
  transform: rotate(0) scale(1.02);
}
/* Slide 3-4 — ideas */
.slide-idea-cover {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1.3333333333;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 60px -30px rgba(14, 26, 43, 0.3);
}
.slide-idea-cover svg {
  width: 100%;
  height: 100%;
  display: block;
}
.slide-idea-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
}
.slide-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ink);
  padding: 8px 12px;
}
/* Controls */
.slider-controls {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 56px;
  border-top: 1px solid var(--rule);
}
.slider-progress {
  height: 2px;
  background: var(--rule);
  position: relative;
  overflow: hidden;
}
.sp-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--teal);
  transition: width 0.1s linear;
}
.slider-dots {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.slider-dot {
  background: transparent;
  border: 0;
  font-family: var(--f-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-3);
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: color 0.15s ease;
}
.slider-dot span {
  font-family: var(--f-display);
  font-size: 11px;
  color: var(--ink-4);
}
.slider-dot:hover {
  color: var(--ink);
}
.slider-dot.is-on {
  color: var(--ink);
}
.slider-dot.is-on span {
  color: var(--teal-deep);
}
.slider-arrows {
  display: flex;
  gap: 8px;
}
.slider-arrow {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--rule);
  font-size: 16px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.15s ease;
}
.slider-arrow:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
@media (max-width: 880px) {
  .slide-inner {
    grid-template-columns: 1fr;
  }
  .slide-visual {
    min-height: 280px;
  }
  .hero-wave {
    height: 240px;
    gap: 7px;
  }
  .hero-wave i {
    width: 7px;
  }
  .slider-controls {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .slider-controls > * {
    width: 100%;
  }
  .slider-dots {
    justify-content: flex-start;
  }
  .slider-arrows {
    justify-content: flex-end;
  }
}
/* END SLIDES */
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) {
  .method-grid {
    display: flex;
    flex-direction: column;
  }
}
.method-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
.method-card .idx {
  font-size: 28px;
}
.method-card h3 {
  margin: 0;
}
.method-card p {
  color: var(--ink-2);
  font-size: 15.5px;
  margin: 0;
}
/* Compass mini-viz */
.compass {
  position: relative;
  height: 180px;
  margin-top: 8px;
}
.compass-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.compass-ring::after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px dashed var(--teal);
  border-radius: 50%;
}
.compass-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 12px;
}
.compass-label {
  position: absolute;
  left: 50%;
  top: 50%;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  transform: translate(-50%, -50%) rotate(calc(var(--a) * 1deg)) translateY(-90px) rotate(calc(var(--a) * -1deg));
  white-space: nowrap;
}
/* Bienestar bars */
.bw {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bw li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: center;
  font-size: 13px;
}
.bw li i {
  display: block;
  height: 6px;
  background: var(--rule);
  position: relative;
}
.bw li i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--w, 60%);
  background: var(--teal);
}
/* Proto */
.proto {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.proto > div {
  padding: 16px;
  border: 1px solid var(--rule);
}
.proto b {
  display: block;
  font-family: var(--f-serif);
  font-size: 16px;
}
.proto span {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 880px) {
  .proto {
    grid-template-columns: 1fr;
  }
}
/* PAP */
.pap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pap-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: center;
}
.pap-q {
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--teal);
}
.pap-row i {
  display: block;
  height: 18px;
  background: var(--ink);
  width: 100%;
}
.pap-row:nth-child(2) i {
  background: var(--teal);
}
.context-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.cs {
  background: var(--ink);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cs-num {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--teal);
  line-height: 1;
  letter-spacing: 0.01em;
}
.cs-txt {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  line-height: 1.45;
  max-width: 26ch;
}
@media (max-width: 880px) {
  .context-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .context-stats {
    grid-template-columns: 1fr;
  }
}
.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 880px) {
  .paths {
    grid-template-columns: 1fr;
  }
}
.path-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.path-card:hover {
  border-color: var(--ink);
}
.path-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--teal);
  transition: width 0.3s ease;
}
.path-card:hover::before {
  width: 8px;
}
.path-personas {
  background: linear-gradient(180deg, #fff 0%, #fff 100%);
}
.path-empresas {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.path-empresas h3, .path-empresas p {
  color: #fff !important;
}
.path-empresas ul li {
  color: rgba(255, 255, 255, 0.85);
}
.path-empresas .chip {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.path-empresas::before {
  background: var(--teal);
}
.path-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.path-idx {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--teal);
}
.path-cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.path-card:hover .path-cta svg {
  transform: translateX(6px);
}
.path-cta svg {
  transition: transform 0.25s ease;
}
.tick-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tick-list li {
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--teal);
}
.who-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) {
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}
.who-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
}
.who-card:hover {
  transform: translateY(-3px);
}
.who-tag {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
  line-height: 1.2;
}
.who-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}
.who-card:hover .who-tag {
  color: var(--teal-deep);
}
@media (max-width: 880px) {
  .book-grid {
    grid-template-columns: 1fr !important;
  }
  .book-photo {
    margin: 0 auto;
  }
}
@media (max-width: 880px) {
  .estrella-grid {
    grid-template-columns: 1fr !important;
  }
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.post {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease;
}
.post:hover {
  transform: translateY(-4px);
}
.post-cover {
  aspect-ratio: 1.3333333333;
  background-color: var(--ink);
  background-image: var(--image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.post-cover a.image {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.post-cover a.category {
  background: var(--bg-color);
  border: 1px solid transparent;
  bottom: 14px;
  color: #fff;
  left: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  padding: 6px 10px;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.2s background;
  z-index: 3;
}
.post-cover a.category:hover {
  background: var(--ink);
}
.post-cover-1 {
  background: repeating-linear-gradient(90deg, var(--teal) 0 4px, transparent 4px 12px), var(--ink);
}
.post-cover-2 {
  background: radial-gradient(circle at 30% 30%, var(--teal) 0 60px, transparent 60px), radial-gradient(circle at 70% 70%, rgba(22, 190, 192, 0.4) 0 80px, transparent 80px), var(--ink);
}
.post-cover-3 {
  background: linear-gradient(180deg, transparent 0 50%, var(--teal) 50% 52%, transparent 52% 100%), var(--ink);
}
.post-meta {
  display: flex;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.post h3 {
  font-size: 22px;
  line-height: 1.2;
}
.post p {
  color: var(--ink-2);
  font-size: 14.5px;
}
.post:hover h3 {
  color: var(--teal-deep);
}
.cta-final {
  padding: 0;
}
.cta-box {
  background: var(--ink);
  color: #fff;
  padding: clamp(48px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-text {
  position: relative;
  z-index: 2;
}
.cta-meta {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.cta-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-text .btn {
  margin-top: 36px;
}
.cta-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
}
.cta-visual svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  opacity: 0.95;
}
@media (max-width: 880px) {
  .cta-box {
    grid-template-columns: 1fr;
    padding: 48px 32px;
  }
  .cta-visual {
    display: none;
  }
}
@media (max-width: 880px) {
  .ph-grid {
    grid-template-columns: 1fr !important;
  }
}
.ph-photo {
  position: relative;
  aspect-ratio: 1.3333333333;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 60px -30px rgba(14, 26, 43, 0.25);
}
.ph-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hl {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}
.hl-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  align-items: baseline;
}
.hl-row .num {
  font-size: 36px;
  line-height: 1;
}
.hl-row span:last-child {
  font-family: var(--f-serif);
  font-size: 17px;
  color: var(--ink-2);
}
.profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1100px) {
  .profiles {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .profiles {
    grid-template-columns: 1fr;
  }
}
.profile {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.profile-photo {
  aspect-ratio: 1.3333333333;
  border: 0 !important;
  border-bottom: 1px solid var(--rule) !important;
}
.pp-mark {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--teal-deep);
  letter-spacing: 0.02em;
  z-index: 2;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.8);
}
.profile-photo.has-image .pp-mark {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.profile > h3, .profile > p, .profile > span {
  padding-left: 24px;
  padding-right: 24px;
}
.profile > h3 {
  font-size: 22px;
  margin-top: 22px;
}
.profile-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--teal-deep);
  margin-top: 6px;
  font-style: normal;
}
.profile > p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 12px 0 16px;
}
.profile-foot {
  margin-top: auto;
  padding: 14px 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.timeline li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: background 0.2s ease;
}
.timeline li:hover {
  background: var(--paper-2);
}
.t-num {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--teal);
}
.t-when {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.t-body h3 {
  margin: 8px 0 12px;
}
.t-body p {
  color: var(--ink-2);
  max-width: 64ch;
  margin: 0;
}
@media (max-width: 700px) {
  .timeline li {
    grid-template-columns: 60px 1fr;
    gap: 18px;
  }
  .t-num {
    font-size: 24px;
  }
}
.pact {
  background: linear-gradient(180deg, #fbf8f2 0%, var(--paper) 100%);
  padding: clamp(64px, 9vw, 120px) 0;
}
.pact-header {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.pact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) {
  .pact-cols {
    grid-template-columns: 1fr;
  }
}
.pact-col {
  background: #fff;
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--rule);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pact-col-me::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 4px;
  background: var(--teal);
}
.pact-col-you {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.pact-col-you::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 4px;
  background: var(--teal);
}
.pact-col-head {
  display: flex;
  gap: 18px;
  align-items: center;
}
.pact-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--teal);
}
.pact-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}
.pact-circle-you {
  display: grid;
  place-items: center;
  background: var(--teal);
  font-family: var(--f-display);
  font-size: 22px;
  color: #fff;
  border: 2px solid var(--teal);
}
.pact-col h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 6px 0 0;
}
.pact-col-you h3 {
  color: #fff;
}
.pact-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: block;
}
.pact-col-you .pact-eyebrow {
  color: var(--teal);
}
.pact-list {
  list-style: none;
  counter-reset: pact;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pact-list li {
  counter-increment: pact;
  padding-left: 44px;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.pact-list li::before {
  content: counter(pact,decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--teal-deep);
  width: 32px;
  border-top: 2px solid var(--teal);
  padding-top: 6px;
}
.pact-list li strong {
  color: var(--ink);
  font-weight: 600;
  font-family: var(--f-serif);
  font-size: 17px;
  display: block;
  margin-bottom: 4px;
}
.pact-col-you .pact-list li {
  color: rgba(255, 255, 255, 0.78);
}
.pact-col-you .pact-list li strong {
  color: #fff;
}
.pact-col-you .pact-list li::before {
  color: var(--teal);
  border-top-color: var(--teal);
}
.pact-foot {
  margin-top: clamp(32px, 4vw, 56px);
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 68ch;
}
.pact-foot em {
  font-style: italic;
}
.lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}
@media (max-width: 880px) {
  .lines {
    grid-template-columns: 1fr;
  }
}
.line {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.line:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--teal);
  transition: width 0.25s ease;
}
.line:hover::before {
  width: 8px;
}
.line-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.line-dark h3, .line-dark p {
  color: #fff !important;
}
.line-dark p {
  color: rgba(255, 255, 255, 0.85) !important;
}
.line-idx {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.line-dark .line-idx {
  color: var(--teal);
}
.line h3 {
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
}
.line p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.line-cta {
  margin-top: auto;
  padding-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.line:hover .line-cta svg {
  transform: translateX(6px);
}
.line-cta svg {
  transition: transform 0.25s ease;
}
.line-anchor {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: 0;
}
.line-anchor-head {
  max-width: 64ch;
}
.line-pill {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  border: 1px solid var(--teal);
  padding: 6px 12px;
  margin-bottom: 20px;
}
.line-anchor-head h2 {
  margin-bottom: 14px;
  max-width: 22ch;
}
.line-pill.dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.forces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .forces {
    grid-template-columns: 1fr;
  }
}
.force {
  padding: 36px 32px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease;
}
.force:hover {
  border-color: var(--ink);
}
.force .num {
  font-size: 64px;
  line-height: 1;
}
.force h3 {
  font-size: 24px;
}
.force p {
  color: var(--ink-2);
  font-size: 15px;
  margin: 0;
}
.multigen-photo {
  display: flex;
  align-items: end;
  padding: clamp(32px, 5vw, 56px);
  min-height: 360px;
}
.multigen-quote {
  position: relative;
  z-index: 2;
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.3;
  max-width: 32ch;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  padding: 24px 28px;
  border-left: 3px solid var(--teal);
}
.multigen-photo.has-image .multigen-quote {
  background: rgba(14, 26, 43, 0.85);
  color: #fff;
  border-left-color: var(--teal);
}
.levers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 880px) {
  .levers {
    grid-template-columns: 1fr;
  }
}
.lever {
  background: #fff;
  padding: 36px;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--teal);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lever-num {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--teal);
}
.lever h3 {
  font-size: 26px;
}
.lever p {
  color: var(--ink-2);
  font-size: 15.5px;
  margin: 0;
}
.kpi-list {
  display: flex;
  flex-direction: column;
}
.kpi {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.kpi:first-child {
  border-top: 1px solid var(--rule);
}
.kpi .num {
  font-size: 28px;
}
.kpi b {
  font-family: var(--f-serif);
  font-size: 18px;
}
.kpi-d {
  font-size: 13px;
  color: var(--ink-3);
}
@media (max-width: 600px) {
  .kpi {
    grid-template-columns: 60px 1fr;
  }
  .kpi-d {
    grid-column: 2;
  }
}
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1000px) {
  .formats {
    grid-template-columns: 1fr;
  }
}
.fmt {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fmt-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
}
.fmt-head .num {
  font-size: 26px;
}
.fmt-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.fmt p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
}
.fmt-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-3);
  font-style: italic;
}
.offb-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .offb-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.offb-intro h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  max-width: 22ch;
}
.offb-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 18px;
}
.offb-points li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}
.offb-points li span {
  font-family: var(--f-display);
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.04em;
}
.offb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 1000px) {
  .offb-grid {
    grid-template-columns: 1fr;
  }
}
.offb-card {
  background: #18263a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s ease, transform 0.25s ease;
}
.offb-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}
.offb-card-premium {
  background: transparent;
  border-color: var(--teal);
}
.offb-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.offb-card h4 {
  font-family: var(--f-serif);
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
}
.offb-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.offb-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.offb-quote {
  margin-top: 56px;
  max-width: 56ch;
  font-family: var(--f-serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  border-left: 3px solid var(--teal);
  padding-left: 22px;
}
@media (max-width: 880px) {
  .lb-grid {
    grid-template-columns: 1fr !important;
  }
}
.thesis-grid {
  columns: 3;
  column-gap: 56px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.6;
}
.thesis-grid p {
  break-inside: avoid;
  margin-bottom: 1em;
}
@media (max-width: 900px) {
  .thesis-grid {
    columns: 1;
  }
}
.book-process {
  padding: clamp(64px, 9vw, 120px) 0;
  background: linear-gradient(180deg, var(--paper) 0%, #fbf8f2 100%);
}
.bp-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .bp-grid {
    grid-template-columns: 1fr;
  }
}
.bp-body {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 62ch;
}
.bp-sign {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.bp-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--teal);
  flex-shrink: 0;
}
.bp-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}
.bp-name {
  display: block;
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 17px;
}
.bp-role {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}
.bp-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.bp-stat {
  background: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bp-num {
  font-family: var(--f-display);
  font-size: clamp(52px, 6.5vw, 78px);
  color: var(--teal-deep);
  line-height: 1;
}
.bp-txt {
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 28ch;
}
.btn-buy {
  font-size: 16px;
  padding: 18px 34px;
}
@media (max-width: 880px) {
  .sb-grid {
    grid-template-columns: 1fr !important;
  }
}
.principles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.prin {
  padding: 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prin .num {
  font-size: 22px;
}
.prin h3 {
  font-size: 19px;
  line-height: 1.2;
}
.prin p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 1100px) {
  .principles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .principles {
    grid-template-columns: 1fr;
  }
}
/* CV strip — hitos */
.cv-strip {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  background: #fff;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  align-items: start;
}
.cv-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cv-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal);
}
.cv-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cv-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.4;
  padding-left: 18px;
  border-left: 1px solid var(--rule);
}
.cv-item strong {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.cv-item span {
  font-size: 13px;
  color: var(--ink-3);
}
@media (max-width: 900px) {
  .cv-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cv-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cv-item {
    padding-left: 14px;
  }
}
/* Formación académica */
.edu-block {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}
.edu-head {
  max-width: 60ch;
  margin-bottom: 36px;
}
.edu-head h3 {
  margin-top: 12px;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.2;
}
.edu-head p {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}
.edu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
}
.edu-list li {
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: baseline;
}
.edu-list li:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--rule);
  padding-left: 0;
}
.edu-list li:nth-child(even) {
  padding-left: 32px;
}
.edu-tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  border-left: 2px solid var(--teal);
  padding-left: 10px;
  align-self: start;
  padding-top: 4px;
}
.edu-list li strong {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  display: block;
  line-height: 1.3;
}
.edu-org {
  display: block;
  font-size: 13.5px;
  color: var(--ink-3);
  margin-top: 4px;
  line-height: 1.4;
  grid-column: 2;
}
@media (max-width: 900px) {
  .edu-list {
    grid-template-columns: 1fr;
  }
  .edu-list li, .edu-list li:nth-child(odd), .edu-list li:nth-child(even) {
    padding: 18px 0;
    border-right: 0;
  }
}
@media (max-width: 540px) {
  .edu-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .edu-org {
    grid-column: 1;
  }
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.stats > div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stats .num {
  font-size: 56px;
  line-height: 1;
  color: var(--teal);
}
.stats b {
  font-family: var(--f-serif);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 600px) {
  .stats {
    grid-template-columns: 1fr;
  }
}
.ct-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .ct-grid {
    grid-template-columns: 1fr;
  }
}
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid var(--rule);
  padding: 36px;
  background: #fff;
  position: relative;
}
.ct-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--rule);
  margin: -36px -36px 12px;
  padding: 12px 12px 0;
  flex-wrap: wrap;
}
.ct-tab {
  background: transparent;
  border: 0;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--f-sans);
  color: var(--ink-3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.ct-tab.is-on {
  color: var(--ink);
  border-bottom-color: var(--teal);
}
.ct-tab:hover {
  color: var(--ink);
}
.ct-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.ct-form .hint {
  color: var(--ink-4);
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}
.ct-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .ct-form .row {
    grid-template-columns: 1fr;
  }
}
.ct-form input, .ct-form textarea {
  font-family: var(--f-sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}
.ct-form input:focus, .ct-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.ct-form textarea {
  resize: vertical;
}
.ct-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ct-form legend {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
  padding: 0;
}
.rb, .cb {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
  align-items: center;
  cursor: pointer;
}
.rb span, .cb span {
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--ink-2);
  text-transform: none;
  letter-spacing: 0;
}
.rb input, .cb input {
  width: 18px;
  height: 18px;
  padding: 0;
}
.ct-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.ct-priv {
  font-size: 12px;
  color: var(--ink-4);
  max-width: 32ch;
}
.ct-success {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  padding: 36px;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: center;
}
.ct-success .num {
  font-size: 56px;
  color: var(--teal);
}
.ct-form.sent .ct-success {
  display: flex;
}
.ct-aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ct-block {
  padding: 24px;
  border: 1px solid var(--rule);
}
.ct-block h4 {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.ct-block p {
  margin: 6px 0;
  font-size: 15px;
}
.ct-block a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--teal);
}
.dotlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.dotlist li {
  padding-left: 18px;
  position: relative;
}
.dotlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--teal);
}
.ct-quote {
  background: var(--ink);
  color: #fff;
}
.ct-quote .pullquote {
  color: #fff;
}
.ct-quote .pullquote-cite {
  color: rgba(255, 255, 255, 0.5);
}
.nl-form-light {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.nl-form-light input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--rule);
  color: var(--ink);
  padding: 16px 18px;
  font-family: var(--f-sans);
  font-size: 15px;
}
.nl-form-light input:focus {
  outline: none;
  border-color: var(--ink);
}
@media (max-width: 500px) {
  .nl-form-light {
    flex-direction: column;
  }
}
.featured-post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  text-decoration: none;
  color: inherit;
  align-items: center;
  padding: 24px 0;
}
.featured-post .lead {
  max-width: initial;
}
.featured-post:has(.fp-cover) {
  gap: 56px;
  grid-template-columns: 1.1fr 1fr;
}
@media screen and (max-width: 1024px) {
  .featured-post:has(.fp-cover) {
    grid-template-columns: 1fr;
  }
  .featured-post:has(.fp-cover) .lead {
    max-width: 100% !important;
  }
}
.featured-post:has(.fp-cover) .lead {
  max-width: 60ch;
}
.fp-cover {
  aspect-ratio: 1.3333333333;
  background-color: var(--ink);
  background-image: var(--image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.fp-cover > img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1.3333333333;
}
.fp-cover a.image {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.fp-cover a.category {
  background: var(--bg-color);
  border: 1px solid transparent;
  bottom: 14px;
  color: #fff;
  left: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  padding: 6px 10px;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.2s background;
  z-index: 3;
}
.fp-cover a.category:hover {
  background: var(--ink);
}
.fp-illu {
  width: 100%;
  height: 100%;
  display: block;
}
.fp-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(14, 26, 43, 0.85);
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
}
.fp-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.featured-post:hover h2 {
  color: var(--teal-deep);
}
@media (max-width: 880px) {
  .featured-post {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}
@media (max-width: 1000px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}
.post {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .post {
    margin: 0 0 30px;
  }
}
.post:hover {
  transform: translateY(-3px);
}
.post .post-cover {
  aspect-ratio: 1.3333333333;
  position: relative;
  overflow: hidden;
}
.post .post-cover svg {
  width: 100%;
  height: 100%;
  display: block;
}
.post-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--tag, var(--ink));
  padding: 6px 10px;
  z-index: 3;
}
.post-cover-photo {
  display: flex;
  align-items: end;
  justify-content: flex-start;
}
.post-cover-photo .photo-slot-label {
  left: 14px;
  top: 14px;
}
.post h3 {
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -0.005em;
}
.post p {
  color: var(--ink-2);
  font-size: 14.5px;
  margin: 0;
}
.post:hover h3 {
  color: var(--teal-deep);
}
.pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.pager-nav {
  display: flex;
  gap: 8px;
}
.pager-nav button {
  background: transparent;
  border: 1px solid var(--rule);
  padding: 10px 18px;
  font-size: 13px;
  font-family: var(--f-sans);
  cursor: pointer;
}
.pager-nav button:not([disabled]):hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.pager-nav button[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}
div:has(> a.load-more) {
  margin: 40px auto 0;
  padding: 0;
  text-align: center;
}
div:has(> a.load-more) a.load-more {
  color: #fff;
  background: var(--ink);
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  padding: 16px 26px;
  display: inline-block;
  margin: 0;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
div:has(> a.load-more) a.load-more.loading {
  pointer-events: none !important;
}
div:has(> a.load-more) a.load-more.loading, div:has(> a.load-more) a.load-more:hover {
  background: var(--teal-deep);
}
.page > div .content {
  color: var(--ink-2);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.5;
}
.page > div .content p {
  margin: 0 0 20px;
}
.page > div .content a {
  border-bottom: 2px dotted var(--teal);
  color: var(--teal);
  text-decoration: none;
  transition: 0.2s all;
}
.page > div .content a:hover {
  border-bottom: 2px solid var(--teal);
}
.page > div .content *:last-child {
  margin-bottom: 0;
}
.page > div h1 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 24px;
}
@media screen and (max-width: 1024px) {
  .page > div h1 {
    font-size: 40px;
  }
}
.page > div h2 {
  font-size: 32px;
  margin: 0 0 20px;
}
.page > div h3 {
  font-size: 24px;
  margin: 0 0 20px;
}
.page > div table {
  border-collapse: collapse;
  margin: 30px auto;
  width: 100%;
}
.page > div table th {
  background: #ddd;
}
.page > div table td, .page > div table th {
  border: 1px solid #000;
  padding: 10px;
}
.page > div ul {
  list-style: square;
}
.post-single {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 320px;
}
@media screen and (max-width: 1024px) {
  .post-single {
    grid-template-columns: 1fr;
  }
}
.post-single > div h1 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 24px;
}
@media screen and (max-width: 1024px) {
  .post-single > div h1 {
    font-size: 40px;
  }
}
.post-single > div .excerpt {
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: normal;
  color: var(--ink-2);
  margin: 0 0 24px;
}
.post-single > div .image {
  background: var(--ink);
  margin: 0 0 24px;
  position: relative;
}
.post-single > div .image img {
  aspect-ratio: 1.3333333333;
  border: 1px solid var(--rule);
  height: auto;
  object-fit: cover;
  width: 100%;
}
.post-single > div .video {
  margin: 0 0 24px;
}
.post-single > div .video iframe {
  aspect-ratio: 1.7777777778;
  height: auto;
  width: 100%;
}
.post-single > div .post-meta {
  align-items: center;
  margin: 0 0 24px;
}
.post-single > div .post-meta a.category {
  background: var(--color);
  border: 1px solid transparent;
  color: #fff;
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 6px 10px;
  vertical-align: middle;
}
.post-single > div .post-meta a.category:hover {
  background: var(--ink);
}
.post-single > div .content {
  color: var(--ink-2);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.5;
}
.post-single > div .content p {
  margin: 0 0 20px;
}
.post-single > div .content a {
  border-bottom: 2px dotted var(--teal);
  color: var(--teal);
  text-decoration: none;
  transition: 0.2s all;
}
.post-single > div .content a:hover {
  border-bottom: 2px solid var(--teal);
}
.post-single > div .content *:last-child {
  margin-bottom: 0;
}
.post-single > div nav.post-navigation {
  margin: 40px auto;
  text-align: center;
}
.post-single > div nav.post-navigation .nav-links {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.post-single > div nav.post-navigation .nav-links:has(.nav-next:first-child) {
  justify-content: flex-end;
}
.post-single > div nav.post-navigation .nav-links a {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: 45px;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.post-single > div nav.post-navigation .nav-links a:hover span {
  background: transparent !important;
}
.post-single > div nav.post-navigation .nav-links a span {
  align-items: center;
  background: var(--ink);
  display: flex;
  height: 45px;
  justify-content: center;
  transition: 0.2s background;
  width: 45px;
}
.post-single > div nav.post-navigation .nav-links .nav-previous a span::before {
  color: var(--teal);
  content: "";
  font-family: "Font Awesome 7 Free";
  font-size: 25px;
  font-weight: 900;
}
.post-single > div nav.post-navigation .nav-links .nav-next a span::before {
  color: var(--teal);
  content: "";
  font-family: "Font Awesome 7 Free";
  font-size: 25px;
  font-weight: 900;
}
.wrap.search-results {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
.wrap.search-results h1 {
  font-size: clamp(38px, 6vw, 58px);
  margin: 20px 0 60px;
  line-height: 0;
}
aside .widget {
  border-bottom: 1px solid var(--rule);
  margin: 0 0 20px;
  padding: 0 0 20px;
}
aside .widget:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}
aside .widget.widget_search form > div {
  position: relative;
}
aside .widget.widget_search form > div input {
  border: 1px solid #0e1a2b;
  border-radius: 3px;
  box-shadow: none !important;
  color: #0e1a2b;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  outline: none !important;
  padding: 10px 45px 10px 20px;
  width: 100%;
}
aside .widget.widget_search form > div i.fa-solid {
  color: #16bec0;
  font-size: 25px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
aside .widget.widget_media_gallery .gallery-images-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
aside .widget.widget_media_gallery .gallery-images-wrapper a.gallery-item {
  border: 1px solid var(--rule);
  background-color: transparent;
  background-image: var(--image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100px;
  width: 100px;
  transition: 0.2s transform;
}
aside .widget.widget_media_gallery .gallery-images-wrapper a.gallery-item:hover {
  transform: scale(1.1);
}
aside .widget.widget_recent_entries ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
aside .widget.widget_recent_entries ul li {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 0 0 10px;
  gap: 10px;
}
aside .widget.widget_recent_entries ul li .post-thumbnail {
  background-color: transparent;
  background-image: var(--image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid var(--rule);
  height: 90px;
  transition: 0.2s all;
  width: 90px;
}
aside .widget.widget_recent_entries ul li .post-thumbnail:has(+ .post-content a:hover) {
  transform: scale(1.1);
}
aside .widget.widget_recent_entries ul li .post-thumbnail:hover {
  transform: scale(1.1);
}
aside .widget.widget_recent_entries ul li .post-thumbnail:hover + .post-content a {
  color: var(--teal);
}
aside .widget.widget_recent_entries ul li .post-thumbnail a {
  display: block;
  height: 100%;
  width: 100%;
}
aside .widget.widget_recent_entries ul li .post-content {
  width: calc(100% - 100px);
}
aside .widget.widget_recent_entries ul li .post-content a {
  display: block;
  line-height: 1.1;
  margin: 0 0 2px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.2s color;
}
aside .widget.widget_recent_entries ul li .post-content a:hover {
  color: var(--teal);
}
aside .widget.widget_recent_entries ul li .post-content .post-date {
  font-size: 11px;
  font-weight: 600;
  margin: 7px 0 0;
}
aside .widget h2.widget-title {
  font-size: 20px;
  margin: 0 0 15px;
  padding: 0;
}
.shortcode-boton {
  margin: 40px auto;
  text-align: center;
  width: 100%;
}
.shortcode-boton a {
  background: var(--teal);
  border: none !important;
  border-radius: 0;
  color: #fff !important;
  display: inline-block;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  text-decoration: none !important;
  transition: 0.2s background;
}
.shortcode-boton a:hover {
  background: var(--ink);
}
/*# sourceMappingURL=https://prox25.com/wp-content/build/scss_library/d10595a406224821dd3e2a8d6a90417c6af369d3.css.map */