    @font-face {
      font-family: 'ShinyMarker';
      src: url('../Shiny_Marker_Regular.otf') format('opentype');
    }
    @font-face {
      font-family: 'SundayMorning';
      src: url('../SUNDAY_MORNING.OTF') format('opentype');
    }
 
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --beige: #f2e2c4;
      --verde-oscuro: #627356;
      --verde-claro: #b6bf93;
      --naranja: #bf612a;
      --marron: #733a19;
      --marron-texto: #3d2010;
    }
 
    html { scroll-behavior: smooth; }
 
    body {
      font-family: 'Lato', sans-serif;
      background: var(--beige);
      color: var(--marron-texto);
      overflow-x: hidden;
    }
 
    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: center;
      padding: 24px 48px;
      background: var(--beige);
      backdrop-filter: blur(8px);
      border-bottom: 0.5px solid rgba(61,32,16,0.08);
    }
 
    nav ul { list-style: none; display: flex; gap: 48px; }
 
    nav a {
      text-decoration: none;
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      font-size: 13px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--marron-texto);
      transition: opacity 0.2s;
    }
 
    nav a:hover { opacity: 0.5; }
 
    .hamburger {
      display: none;
      position: fixed;
      top: 20px; right: 24px;
      z-index: 200;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
 
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--marron);
      border-radius: 2px;
    }
 
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--beige);
      z-index: 150;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }
 
    .mobile-menu.open { display: flex; }
 
    .mobile-menu a {
      font-size: 20px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--marron-texto);
    }
 
    .close-btn {
      position: absolute;
      top: 28px; right: 28px;
      background: none; border: none;
      font-size: 28px; cursor: pointer;
      color: var(--marron-texto);
    }
 
    /* ── HERO DEL POST ── */
    .post-hero {
      padding-top: 90px;
      background: var(--verde-oscuro);
      position: relative;
      overflow: hidden;
    }
 
    /* ilustraciones en el hero */
    .post-hero-ilu {
      position: absolute;
      opacity: 0.25;
      pointer-events: none;
    }
 
    .post-hero-ilu--sol {
      width: 120px;
      right: 8%;
      top: 20%;
      animation: spinSlow 18s linear infinite;
      transform-origin: center center;
    }
 
    .post-hero-ilu--hoja {
      width: 80px;
      left: 5%;
      bottom: 20%;
      animation: sway 5s ease-in-out infinite;
      transform-origin: bottom center;
    }
 
    .post-hero-inner {
      max-width: 780px;
      margin: 0 auto;
      padding: 48px 40px 0;
    }

    
 
    .post-categoria {
      font-family: 'ShinyMarker', serif;
      font-size: 16px;
      letter-spacing: 0.12em;
      color: var(--verde-claro);
      margin-bottom: 16px;
      display: block;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
 
    .post-categoria.visible { opacity: 1; transform: translateY(0); }
 
    .post-titulo {
      font-family: 'new-spirit', 'Playfair Display', serif;
      font-size: clamp(30px, 5vw, 52px);
      font-weight: 400;
      color: var(--beige);
      line-height: 1.2;
      margin-bottom: 24px;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
    }
 
    .post-titulo.visible { opacity: 1; transform: translateY(0); }
 
    .post-fecha {
      font-family: 'Lato', sans-serif;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(242,226,196,0.5);
      margin-bottom: 40px;
      display: block;
      opacity: 0;
      transition: opacity 0.6s ease 0.2s;
    }
 
    .post-fecha.visible { opacity: 1; }
 
    /* portada */
    .post-cover {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      border-radius: 16px 16px 0 0;
      display: block;
      opacity: 0;
      transition: opacity 0.9s ease 0.3s;
    }
 
    .post-cover.visible { opacity: 1; }
 
    /* ── CONTENIDO ── */
    .post-wrap {
      max-width: 780px;
      margin: 0 auto;
      padding: 60px 40px 80px;
      position: relative;
    }
 
    /* ilustraciones inline entre secciones */
    .post-ilu-break {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin: 40px 0;
      opacity: 0;
      transition: opacity 0.8s ease;
    }
 
    .post-ilu-break.visible { opacity: 1; }
 
    .post-ilu-break img {
      width: 40px;
      animation: floatGentle 4s ease-in-out infinite;
    }
 
    .post-ilu-break img:nth-child(2) {
      width: 28px;
      animation-delay: 0.5s;
      animation: spinSlow 12s linear infinite;
      transform-origin: center;
    }
 
    .post-ilu-break img:nth-child(3) {
      width: 36px;
      animation-delay: 1s;
      animation: floatGentle 5s ease-in-out 1s infinite;
    }
 
    .post-ilu-break-line {
      flex: 1;
      height: 0.5px;
      background: var(--verde-claro);
      opacity: 0.6;
    }
 
    /* párrafos */
    .post-content p {
      font-family: 'Lato', sans-serif;
      font-size: 17px;
      line-height: 1.9;
      color: var(--marron-texto);
      margin-bottom: 24px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
 
    .post-content p.visible { opacity: 1; transform: translateY(0); }
 
    /* h2 con underline animado */
    .post-content h2 {
      font-family: 'new-spirit', 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 500;
      color: var(--marron-texto);
      margin: 40px 0 16px;
      position: relative;
      display: inline-block;
      opacity: 0;
      transform: translateX(-16px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
 
    .post-content h2::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--verde-claro);
      transition: width 0.6s ease 0.3s;
    }
 
    .post-content h2.visible { opacity: 1; transform: translateX(0); }
    .post-content h2.visible::after { width: 100%; }
 
    .post-content strong { font-weight: 700; color: var(--marron-texto); }
    .post-content em { font-style: italic; }
 
    /* cita */
    .post-quote {
      border-left: 3px solid transparent;
      padding: 20px 28px;
      margin: 32px 0;
      background: rgba(98,115,86,0.0);
      border-radius: 0 12px 12px 0;
      opacity: 0;
      transform: scale(0.97);
      transition: opacity 0.7s ease, transform 0.7s ease,
                  border-color 0.6s ease 0.3s,
                  background 0.6s ease 0.3s;
    }
 
    .post-quote.visible {
      opacity: 1;
      transform: scale(1);
      border-color: var(--verde-oscuro);
      background: rgba(98,115,86,0.08);
    }
 
   .post-quote p {
  font-family: 'ShinyMarker', serif !important;
  font-style: normal;
  font-size: 22px !important;
  color: var(--verde-oscuro) !important;
  margin: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  line-height: 1.6 !important;
  min-height: 1.6em;
}
 
    /* concepto */
    .post-concepto {
      background: var(--verde-claro);
      border-radius: 16px;
      padding: 24px 28px;
      margin: 32px 0;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.6s ease, transform 0.6s ease;
      position: relative;
      overflow: hidden;
    }
 
    .post-concepto::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px;
      height: 100%;
      background: var(--verde-oscuro);
      border-radius: 4px 0 0 4px;
    }
 
    .post-concepto.visible { opacity: 1; transform: translateY(0); }
 
.post-concepto-term {
  font-family: 'ShinyMarker', serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--verde-oscuro);
  margin-bottom: 16px;
  display: block; /* para que se comporte como bloque */
}
    .post-concepto p {
      font-size: 15px !important;
      margin: 0 !important;
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
 
    /* footer */
    .post-footer {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 56px;
      padding-top: 32px;
      border-top: 0.5px solid #c8b89a;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
 
    .post-footer.visible { opacity: 1; transform: translateY(0); }
 
    .post-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 24px;
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-decoration: none;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
 
    .post-btn:hover { transform: translateY(-2px); }
    .post-btn--blog { background: #627356; color: #f2e2c4; }
    .post-btn--blog:hover { background: #4e5c43; }
    .post-btn--inicio { border: 0.5px solid #627356; color: #627356; }
    .post-btn--inicio:hover { background: #627356; color: #f2e2c4; }
 
    /* ── KEYFRAMES ── */
    @keyframes spinSlow {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    @keyframes sway {
      0%, 100% { transform: rotate(-6deg); }
      50%       { transform: rotate(6deg); }
    }
    @keyframes floatGentle {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-8px); }
    }
 
    @media (max-width: 768px) {
      nav { display: none; }
      .hamburger { display: flex; }
      .post-wrap { padding: 40px 24px 60px; }
      .post-hero-inner { padding: 40px 24px 0; }
      .post-hero-ilu--sol { width: 70px; right: 4%; }
      .post-hero-ilu--hoja { width: 50px; left: 2%; }
    }


    .post-lista {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-lista li {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #5a3e2a;
  padding-left: 20px;
  position: relative;
}

.post-lista li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--verde-oscuro);
  font-size: 20px;
  line-height: 1.4;
}


/* ── MEDIA — fotos y videos dentro del post ── */
.post-media-full {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin: 32px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.post-media-full.visible {
  opacity: 1;
  transform: translateY(0);
}

.post-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.post-media-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

.post-media-grid img,
.post-media-grid video {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.post-media-caption {
  margin: 32px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.post-media-caption.visible {
  opacity: 1;
  transform: translateY(0);
}

.post-media-caption img,
.post-media-caption video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 10px;
}

.post-caption-text {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: #8a6a50;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .post-media-grid { grid-template-columns: 1fr; }
}