/* =========================================================
   Aroma & Arte — Academia de Jabones Artesanales
   Estilo: Warm Minimal · Artisan · Organic
   Paleta:
     --c1 #121d12  verde profundo (texto)
     --c2 #124f64  teal (acento)
     --c3 #159f1c  verde vivo (primario)
     --c4 #c1de4a  lima (highlight)
     --c5 #f8efb4  crema (superficie cálida)
   ========================================================= */

:root {
  --c1: #121d12;
  --c2: #124f64;
  --c3: #159f1c;
  --c4: #c1de4a;
  --c5: #f8efb4;

  --bg:        #fbfaf4;
  --surface:   #ffffff;
  --surface-2: var(--c5);
  --ink:       var(--c1);
  --ink-soft:  #3d4a3d;
  --ink-mute:  #6b7568;
  --line:      rgba(18, 29, 18, 0.12);
  --line-soft: rgba(18, 29, 18, 0.06);

  --primary:   var(--c3);
  --primary-2: #0f7f16;
  --accent:    var(--c2);
  --highlight: var(--c4);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(18,29,18,.06), 0 1px 3px rgba(18,29,18,.04);
  --shadow:    0 6px 20px rgba(18,29,18,.08), 0 2px 6px rgba(18,29,18,.05);
  --shadow-lg: 0 20px 50px rgba(18,29,18,.14), 0 8px 18px rgba(18,29,18,.06);

  --ff-display: "Fraunces", "Playfair Display", Georgia, serif;
  --ff-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1200px;
  --ease:      cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
:focus-visible { outline: 3px solid var(--c4); outline-offset: 2px; border-radius: 4px; }

/* ---------- Tipografía ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4.25rem); font-weight: 400; }
h2 { font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.6rem); }
p  { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-body);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1.5px; background: var(--accent); display: block;
}

/* ---------- Contenedor ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 244, .85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-display); font-size: 1.35rem; font-weight: 500;
  color: var(--ink);
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--c4), var(--c3) 65%, var(--c2));
  box-shadow: inset 0 -3px 6px rgba(0,0,0,.12);
  flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 2rem; align-items: center;
}
.nav-links a {
  font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  transition: color .2s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--primary); border-radius: 2px;
}
.nav-cta {
  display: inline-flex;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 10px;
}
.nav-toggle span {
  position: relative; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.5rem;
  min-height: 48px;
  font-size: .95rem; font-weight: 600;
  border-radius: 999px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 6px 16px rgba(21, 159, 28, .28);
}
.btn-primary:hover { background: var(--primary-2); box-shadow: 0 10px 22px rgba(21, 159, 28, .32); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn-dark {
  background: var(--c1); color: var(--c5);
}
.btn-dark:hover { background: #1f2d1f; }
.btn-block { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 92% 0%, rgba(193,222,74,.32), transparent 60%),
    radial-gradient(600px 380px at 0% 100%, rgba(18,79,100,.10), transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-text h1 .accent {
  font-style: italic; color: var(--primary); font-weight: 400;
}
.hero-sub {
  font-size: clamp(1.05rem, .3vw + 1rem, 1.2rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex; gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.hero-stats div strong {
  font-family: var(--ff-display); font-size: 1.8rem; color: var(--ink); display: block; line-height: 1;
}
.hero-stats div span {
  font-size: .85rem; color: var(--ink-mute); margin-top: .3rem; display: block;
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--c5);
  box-shadow:
    8px 14px 0 rgba(193,222,74,.28),
    0 28px 64px rgba(18,29,18,.18),
    0 6px 16px rgba(18,29,18,.08);
}
.hero-media video,
.hero-media img,
.hero-media iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0;
}
.hero-media .play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .3s var(--ease), background .2s var(--ease);
}
.hero-media .play-btn:hover { transform: scale(1.08); background: #fff; }
.hero-media .play-btn svg { color: var(--primary); margin-left: 4px; }

.hero-badge {
  position: absolute; left: -16px; bottom: 24px;
  background: var(--surface); color: var(--ink);
  padding: .9rem 1.1rem; border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .8rem;
  font-size: .9rem; font-weight: 500;
  max-width: 240px;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(21,159,28,.18); }

/* ---------- Secciones ---------- */
section { padding: clamp(56px, 8vw, 112px) 0; }
.section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 2rem;
  margin-bottom: clamp(32px, 4vw, 56px); flex-wrap: wrap;
}
.section-head .text { max-width: 640px; }
.section-head h2 { margin-top: .6rem; }
.section-head p { margin: .5rem 0 0; color: var(--ink-mute); }

/* ---------- Courses grid ---------- */
.courses {
  background: linear-gradient(180deg, transparent 0%, var(--surface-2) 40%, var(--surface-2) 80%, transparent 100%);
}
.courses-grid {
  display: grid; gap: clamp(20px, 2.5vw, 32px);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.course-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid var(--line-soft);
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.course-cover {
  aspect-ratio: 1 / 1; background: var(--c5); position: relative; overflow: hidden;
}
.course-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.course-card:hover .course-cover img { transform: scale(1.05); }
.course-tag {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(255,255,255,.95);
  color: var(--ink); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
}
.course-tag.is-new { background: var(--c4); color: var(--c1); }
.course-body {
  padding: 1.3rem 1.3rem 1.5rem;
  display: flex; flex-direction: column; flex: 1; gap: .8rem;
}
.course-body h3 { margin: 0; font-size: 1.25rem; line-height: 1.25; }
.course-body .meta { color: var(--ink-mute); font-size: .85rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.course-body .meta span { display: inline-flex; align-items: center; gap: .35rem; }
.course-foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-top: .8rem;
}
.course-price {
  font-family: var(--ff-display); font-size: 1.6rem; color: var(--ink); line-height: 1;
}
.course-price small { font-family: var(--ff-body); font-size: .8rem; color: var(--ink-mute); font-weight: 500; margin-left: .2rem; }
.course-btn {
  padding: .7rem 1rem; min-height: 42px; font-size: .82rem; letter-spacing: .08em;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid; gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.feature {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { transform: translateY(-3px); border-color: var(--primary); }
.feature .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--c5); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.feature p { font-size: .92rem; margin: 0; color: var(--ink-mute); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--c1); color: #eaefdf; position: relative; overflow: hidden; }
.testimonials::before {
  content: ""; position: absolute; right: -140px; top: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(193,222,74,.18), transparent 70%);
}
.testimonials h2 { color: #fff; }
.testimonials .eyebrow { color: var(--c4); }
.testimonials .eyebrow::before { background: var(--c4); }
.testimonials p { color: #c8d3c2; }
.testimonials-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  backdrop-filter: blur(6px);
}
.testimonial .quote {
  font-family: var(--ff-display); font-size: 1.1rem; line-height: 1.5;
  color: #f0f3e6; margin-bottom: 1.4rem;
}
.testimonial-person { display: flex; align-items: center; gap: .8rem; }
.testimonial-person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-person strong { color: #fff; font-weight: 600; display: block; font-size: .95rem; }
.testimonial-person span { color: #9aa893; font-size: .82rem; }
.stars { color: var(--c4); margin-bottom: .8rem; display: flex; gap: 2px; }

/* ---------- Instructor ---------- */
.instructor-grid {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.instructor-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--c5);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.instructor-photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor-photo .tag {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,.95);
  padding: 1rem 1.2rem; border-radius: 14px;
  display: flex; align-items: center; gap: .8rem;
}
.instructor-photo .tag svg { color: var(--primary); flex-shrink: 0; }
.instructor-photo .tag span { font-size: .85rem; color: var(--ink-soft); }
.instructor-bio .credentials {
  display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0 1.8rem;
}
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--c5); color: var(--c2);
  padding: .4rem .8rem; border-radius: 999px;
  font-size: .82rem; font-weight: 500;
}

/* ---------- Newsletter / CTA ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--c2) 0%, #0e3d4f 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 120%, rgba(193,222,74,.28), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 50ch; margin: 0 auto 2rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c1); color: #c8d3c2;
  padding: clamp(48px, 6vw, 80px) 0 2rem;
  margin-top: clamp(48px, 6vw, 80px);
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.6fr repeat(2, 1fr);
  margin-bottom: 3rem;
}
.site-footer h4 {
  color: #fff; font-family: var(--ff-body); font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.2rem;
}
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer p { color: #9aa893; font-size: .92rem; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: #c8d3c2; font-size: .92rem; transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--c4); }
.social { display: flex; gap: .8rem; margin-top: 1rem; }
.social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: #c8d3c2; transition: background .2s var(--ease), color .2s var(--ease);
}
.social a:hover { background: var(--c4); color: var(--c1); }
.newsletter { display: flex; gap: .5rem; margin-top: 1rem; }
.newsletter input {
  flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: .7rem .9rem; color: #fff; font: inherit; font-size: .9rem;
}
.newsletter input::placeholder { color: #9aa893; }
.newsletter input:focus { outline: 2px solid var(--c4); outline-offset: 0; }
.newsletter button { padding: .7rem 1.1rem; border-radius: 10px; background: var(--c4); color: var(--c1); font-weight: 600; font-size: .88rem; }
.newsletter button:hover { background: #d3ef63; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .85rem; color: #9aa893;
}
.footer-bottom a:hover { color: var(--c4); }

/* =========================================================
   PÁGINA DE CURSO
   ========================================================= */
.course-hero {
  padding: clamp(40px, 5vw, 72px) 0 clamp(24px, 4vw, 48px);
  background: linear-gradient(180deg, var(--c5) 0%, transparent 100%);
}
.breadcrumb {
  display: flex; gap: .5rem; align-items: center; font-size: .85rem;
  color: var(--ink-mute); margin-bottom: 1.5rem; flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb svg { opacity: .5; }

.course-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.course-main > img,
.course-main > .cover {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius-lg); margin-bottom: 2rem;
  background: var(--c5);
}
.course-main h1 {
  font-size: clamp(1.8rem, 3vw + 1rem, 3rem);
  margin-bottom: 1rem;
}
.course-intro {
  font-size: 1.15rem; color: var(--ink-soft); max-width: 65ch;
}
.course-meta-row {
  display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 1.5rem 0 2rem;
  padding: 1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.course-meta-row > div { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--ink-soft); }
.course-meta-row svg { color: var(--primary); }

.syllabus { margin: 3rem 0; }
.syllabus h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.module {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: .8rem;
  overflow: hidden;
  background: var(--surface);
}
.module summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-weight: 600; color: var(--ink);
  transition: background .2s var(--ease);
}
.module summary::-webkit-details-marker { display: none; }
.module summary:hover { background: var(--c5); }
.module .mod-num {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%; background: var(--c5); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 600;
}
.module .mod-title { flex: 1; }
.module .mod-count { font-size: .82rem; color: var(--ink-mute); font-weight: 500; }
.module .mod-chevron { transition: transform .3s var(--ease); color: var(--ink-mute); }
.module[open] .mod-chevron { transform: rotate(180deg); }
.module ul { padding: 0 1.3rem 1.3rem 4.2rem; }
.module li {
  padding: .5rem 0; font-size: .95rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: .6rem;
  border-bottom: 1px solid var(--line-soft);
}
.module li:last-child { border-bottom: 0; }
.module li svg { color: var(--primary); flex-shrink: 0; }
.module li.check::before,
.benefits li.check::before {
  content: ""; width: 14px; height: 14px; flex-shrink: 0; margin-top: 5px;
  background: var(--primary);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='m5 12 5 5L20 7'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='m5 12 5 5L20 7'/></svg>") center/contain no-repeat;
}
.buy-card li.check::before {
  content: ""; width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px;
  background: var(--primary);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='m5 12 5 5L20 7'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='m5 12 5 5L20 7'/></svg>") center/contain no-repeat;
}

.benefits {
  background: var(--c5); border-radius: var(--radius-lg); padding: 2rem;
  margin: 3rem 0;
}
.benefits h2 { font-size: 1.5rem; margin-bottom: 1.2rem; }
.benefits ul { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.benefits li { display: flex; gap: .8rem; font-size: .95rem; color: var(--ink-soft); }
.benefits li svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }

.bonus-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 1.5rem 0;
}
.bonus {
  padding: 1.2rem; border: 1.5px dashed var(--primary);
  border-radius: var(--radius); background: #fff;
  display: flex; gap: .9rem; align-items: start;
}
.bonus .tag-gift {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--c4); color: var(--c1);
  display: flex; align-items: center; justify-content: center;
}
.bonus strong { display: block; margin-bottom: .2rem; font-family: var(--ff-display); font-size: 1.1rem; }
.bonus span { font-size: .88rem; color: var(--ink-mute); }

/* Sidebar sticky */
.buy-card {
  position: sticky; top: 92px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.buy-card .price-block {
  padding-bottom: 1.2rem; margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.buy-card .price {
  font-family: var(--ff-display); font-size: 2.4rem; color: var(--ink); line-height: 1;
}
.buy-card .price-old {
  color: var(--ink-mute); text-decoration: line-through;
  font-size: 1.1rem; margin-left: .5rem;
}
.buy-card .save {
  display: inline-block; margin-top: .5rem;
  background: var(--c4); color: var(--c1);
  padding: .25rem .6rem; border-radius: 999px;
  font-size: .78rem; font-weight: 600;
}
.buy-card ul { margin-bottom: 1.2rem; }
.buy-card li {
  display: flex; gap: .6rem; font-size: .92rem; color: var(--ink-soft);
  padding: .4rem 0;
}
.buy-card li svg { color: var(--primary); flex-shrink: 0; }
.students-badge {
  display: flex; align-items: center; gap: .7rem;
  margin-top: 1.2rem; padding: .9rem;
  background: var(--c5); border-radius: 12px;
}
.avatars { display: flex; }
.avatars img {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--c5); margin-left: -8px; object-fit: cover;
}
.avatars img:first-child { margin-left: 0; }
.students-badge .count { font-weight: 600; color: var(--ink); font-size: .9rem; }
.students-badge .count small { display: block; font-weight: 500; font-size: .78rem; color: var(--ink-mute); }

/* =========================================================
   BLOG
   ========================================================= */
.blog-hero {
  padding: clamp(48px, 6vw, 88px) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--c5) 0%, transparent 100%);
}
.blog-hero h1 { max-width: 18ch; margin-inline: auto; }
.blog-hero p { max-width: 60ch; margin: 1rem auto 0; color: var(--ink-mute); font-size: 1.1rem; }

.blog-filters {
  display: flex; gap: .6rem; flex-wrap: wrap;
  justify-content: center; margin: 2rem 0 0;
}
.chip-btn {
  padding: .5rem 1rem; border-radius: 999px;
  border: 1.5px solid var(--line);
  font-size: .88rem; font-weight: 500; color: var(--ink-soft);
  transition: all .2s var(--ease);
}
.chip-btn:hover { border-color: var(--ink); }
.chip-btn.is-active { background: var(--c1); color: var(--c4); border-color: var(--c1); }

.blog-grid {
  display: grid; gap: clamp(24px, 3vw, 40px);
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  padding-block: clamp(32px, 4vw, 64px);
}
.post-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-cover { aspect-ratio: 16/10; overflow: hidden; background: var(--c5); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-cover img { transform: scale(1.04); }
.post-body { padding: 1.4rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; gap: .7rem; }
.post-cat {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--accent);
}
.post-body h3 {
  font-size: 1.3rem; line-height: 1.25; margin: 0;
}
.post-body p { font-size: .92rem; color: var(--ink-mute); margin: 0; }
.post-foot {
  display: flex; align-items: center; gap: .6rem;
  margin-top: auto; padding-top: .8rem;
  font-size: .82rem; color: var(--ink-mute);
}
.post-foot img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.post-foot .sep::before { content: "·"; margin: 0 .4rem; }
.post-card.is-featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1.2fr 1fr;
}
.post-card.is-featured .post-cover { aspect-ratio: auto; }
.post-card.is-featured .post-body { padding: clamp(1.5rem, 3vw, 3rem); justify-content: center; }
.post-card.is-featured h3 { font-size: clamp(1.5rem, 2vw + 1rem, 2.2rem); }

/* =========================================================
   TESTIMONIOS — carrusel sobre fondo verde
   ========================================================= */
.testimonial-featured {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative; z-index: 1;
}
.testimonial-featured__media {
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(193,222,74,.15);
  background: #000;
  position: relative;
}
.testimonial-featured__media video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.testimonial-featured__copy { color: #eaefdf; }
.testimonial-featured__copy .eyebrow { color: var(--c4); }
.testimonial-featured__copy .eyebrow::before { background: var(--c4); }
.testimonial-featured__copy h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw + 1rem, 2.6rem);
  margin: .8rem 0 1.2rem;
  line-height: 1.15;
}
.testimonial-featured__copy > p {
  color: #c8d3c2; font-size: 1.02rem; line-height: 1.6;
  max-width: 52ch;
}
.testimonial-featured__quote {
  margin-top: 2rem; padding: 1.4rem 1.6rem;
  background: rgba(193,222,74,.08);
  border-left: 3px solid var(--c4);
  border-radius: 0 14px 14px 0;
  display: flex; gap: 1rem; align-items: flex-start;
}
.testimonial-featured__quote svg { color: var(--c4); flex-shrink: 0; opacity: .85; }
.testimonial-featured__quote p {
  margin: 0; color: #f0f3e6;
  font-family: var(--ff-display); font-size: 1.1rem; line-height: 1.4;
  font-style: italic;
}

@media (max-width: 760px) {
  .testimonial-featured { grid-template-columns: 1fr; }
  .testimonial-featured__media { max-width: 320px; margin: 0 auto; aspect-ratio: 9/16; }
}

.testimonials .section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.testimonials-nav { display: flex; gap: .6rem; }
.testimonials-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer;
  transition: all .2s var(--ease);
  backdrop-filter: blur(4px);
}
.testimonials-nav button:hover:not(:disabled) {
  background: var(--c4); color: var(--c1); border-color: var(--c4);
  transform: translateY(-2px);
}
.testimonials-nav button:disabled { opacity: .3; cursor: not-allowed; }

.testimonials-track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: .5rem;
  position: relative; z-index: 1;
  scroll-padding-inline: 8px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track .testimonial-card {
  flex: 0 0 calc((100% - 2 * clamp(16px, 2vw, 28px)) / 3);
  scroll-snap-align: start;
}
.testimonial-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 32px rgba(0,0,0,.25);
  aspect-ratio: 9/16;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0,0,0,.35);
}
.testimonial-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.testimonials-dots {
  display: flex; justify-content: center; gap: .6rem;
  margin-top: 2rem;
  position: relative; z-index: 1;
}
.testimonials-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.22);
  transition: all .2s var(--ease);
}
.testimonials-dots button.is-active {
  background: var(--c4); width: 28px; border-radius: 6px;
}

/* =========================================================
   POST DETAIL — páginas individuales del blog
   ========================================================= */
.post-article {
  padding: clamp(48px, 6vw, 96px) 0 clamp(48px, 6vw, 96px);
}
.post-article .container { max-width: 760px; }
.post-article .breadcrumb {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--ink-mute);
  margin-bottom: 2rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.post-article .breadcrumb a { color: var(--ink-mute); }
.post-article .breadcrumb a:hover { color: var(--c3); }
.post-article .breadcrumb span { color: var(--ink); }

.post-hero-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
  display: block;
}
.post-article header { margin-bottom: 2.5rem; }
.post-article header .post-cat {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c3); margin-bottom: 1rem;
}
.post-article h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.4vw + 1rem, 3.4rem);
  line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 1.2rem;
}
.post-article .post-lead {
  font-size: clamp(1.05rem, .6vw + 1rem, 1.25rem);
  color: var(--ink-soft); line-height: 1.55;
  max-width: 60ch;
}
.post-article .post-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .9rem; color: var(--ink-mute);
}
.post-article .post-meta img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
}
.post-article .post-meta strong { color: var(--ink); display: block; }

.post-body-content {
  font-size: 1.06rem; line-height: 1.7; color: var(--ink-soft);
}
.post-body-content > * + * { margin-top: 1.4rem; }
.post-body-content h2 {
  font-family: var(--ff-display); font-size: 1.7rem;
  color: var(--ink); line-height: 1.2;
  margin-top: 3rem !important;
}
.post-body-content h3 {
  font-family: var(--ff-display); font-size: 1.3rem;
  color: var(--ink); line-height: 1.3;
  margin-top: 2.2rem !important;
}
.post-body-content strong { color: var(--ink); }
.post-body-content ul, .post-body-content ol {
  padding-left: 1.4rem;
}
.post-body-content li { margin-bottom: .8rem; }
.post-body-content li::marker { color: var(--c3); }

.formula-box {
  background: linear-gradient(180deg, var(--c5), #fdf6c8);
  border: 1px solid rgba(193,222,74,.4);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  margin: 2.5rem 0 !important;
  position: relative;
}
.formula-box h3 {
  margin-top: 0 !important;
  font-size: 1.4rem !important;
  color: var(--c1) !important;
  display: flex; align-items: center; gap: .6rem;
}
.formula-box h3::before {
  content: ""; width: 28px; height: 28px;
  background: var(--c3); border-radius: 50%;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M5 7h14v2H5V7zm0 4h14v2H5v-2zm0 4h14v2H5v-2z'/%3E%3C/svg%3E");
  background-size: 18px; background-position: center; background-repeat: no-repeat;
}
.formula-box ul { list-style: none; padding: 0; }
.formula-box ul li {
  padding: .8rem 0;
  border-bottom: 1px dashed rgba(18,29,18,.18);
}
.formula-box ul li:last-child { border-bottom: 0; }
.formula-box ul li strong {
  display: block; font-size: 1rem; color: var(--c1); margin-bottom: .2rem;
}

.warning-box {
  background: rgba(18,79,100,.06);
  border-left: 4px solid var(--c2);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.6rem;
  margin: 2rem 0 !important;
}
.warning-box h3 {
  margin-top: 0 !important;
  font-size: 1.15rem !important;
  color: var(--c2) !important;
  display: flex; align-items: center; gap: .5rem;
}
.warning-box h3::before { content: "⚠"; font-size: 1.3rem; }

.whatsapp-cta {
  margin-top: 4rem;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: var(--radius-xl);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 48px rgba(37,211,102,.25);
}
.whatsapp-cta h3 {
  color: #fff !important;
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 1.5vw + 1rem, 2rem);
  margin: 0 0 .6rem !important;
  margin-top: 0 !important;
}
.whatsapp-cta p { color: rgba(255,255,255,.92); margin-bottom: 1.6rem; }
.whatsapp-cta .btn {
  background: #fff; color: #128C7E;
  padding: 1rem 1.8rem;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: .6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.whatsapp-cta .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.18); }

.post-back {
  margin-top: 3rem; text-align: center;
}
.post-back a {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .92rem; color: var(--ink-mute);
}
.post-back a:hover { color: var(--c3); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 4 / 4.5; order: -1; max-height: 520px; }
  .instructor-grid { grid-template-columns: 1fr; }
  .instructor-photo { max-width: 480px; margin-inline: auto; }
  .course-layout { grid-template-columns: 1fr; }
  .buy-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .post-card.is-featured { grid-template-columns: 1fr; }
  .testimonials-track .testimonial-card { flex: 0 0 calc((100% - clamp(16px, 2vw, 28px)) / 2); }
}
@media (max-width: 600px) {
  .testimonials-track .testimonial-card { flex: 0 0 100%; }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.is-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg);
    padding: 1.5rem clamp(16px, 4vw, 40px) 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    align-items: stretch;
  }
  .site-header.is-open .nav-links a { font-size: 1.1rem; padding: .5rem 0; }
  .site-header.is-open .nav-cta { display: inline-flex; margin-top: .5rem; }

  .hero-actions .btn { flex: 1; min-width: 0; }
  .hero-badge { left: 12px; right: 12px; bottom: 12px; max-width: none; }

  .section-head { flex-direction: column; align-items: start; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: start; }
  .newsletter { flex-direction: column; }
}

@media (max-width: 420px) {
  .buy-card { padding: 1.2rem; }
  .benefits { padding: 1.4rem; }
  .hero-stats { gap: 1.2rem; }
  .hero-stats div strong { font-size: 1.5rem; }
}

/* =========================================================
   Ilustraciones CSS (jabón artesanal) — covers auto-contenidos
   ========================================================= */
.cover-art {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  display: block;
}
.cover-art::before,
.cover-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(.4px);
}

/* Hero: instructora + jabones (verde cálido con flores) */
.cover-art--hero {
  background:
    radial-gradient(120% 80% at 20% 10%, rgba(255,255,255,.35), transparent 60%),
    linear-gradient(160deg, #d8e89a 0%, #9ec47a 45%, #5a8a4a 100%);
}
.cover-art--hero::before {
  width: 70%; aspect-ratio: 1; left: 8%; top: 12%;
  background: radial-gradient(circle at 35% 35%, #fff7cc, #e6c96a 55%, #a87a2e 100%);
  box-shadow: inset -14px -18px 30px rgba(0,0,0,.18), 0 20px 40px rgba(0,0,0,.15);
}
.cover-art--hero::after {
  width: 42%; aspect-ratio: 1; right: 6%; bottom: 12%;
  background: radial-gradient(circle at 40% 40%, #fff, #f8efb4 60%, #c1de4a 100%);
  box-shadow: inset -10px -14px 24px rgba(0,0,0,.15), 0 14px 28px rgba(0,0,0,.18);
}
.cover-art--hero .leaf {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 40px 12px at 75% 28%, #2f6b2a 20%, transparent 60%),
    radial-gradient(ellipse 55px 18px at 28% 80%, #3a7a35 25%, transparent 65%),
    radial-gradient(ellipse 30px 10px at 60% 75%, #4c8f45 25%, transparent 60%);
  transform: rotate(-6deg);
  opacity: .8;
}

/* Variantes para cards — misma idea con paletas distintas */
.cover-art--lavender {
  background: linear-gradient(150deg, #e9d5ff 0%, #c084fc 60%, #7e3ffa 100%);
}
.cover-art--lavender::before { width: 60%; aspect-ratio: 1; left: 20%; top: 15%;
  background: radial-gradient(circle at 35% 35%, #fff, #f8efb4 60%, #c1de4a 100%);
  box-shadow: inset -12px -16px 28px rgba(0,0,0,.15), 0 16px 30px rgba(0,0,0,.18); }

.cover-art--marble {
  background:
    radial-gradient(100% 60% at 10% 0%, #fff 0%, transparent 50%),
    linear-gradient(135deg, #f8efb4 0%, #c1de4a 45%, #159f1c 100%);
}
.cover-art--marble::before { width: 66%; aspect-ratio: 1.1; left: 17%; top: 18%;
  background:
    conic-gradient(from 120deg, #f8efb4, #c1de4a, #124f64, #f8efb4);
  border-radius: 18px;
  box-shadow: inset -10px -14px 26px rgba(0,0,0,.18), 0 14px 28px rgba(0,0,0,.2);
  filter: blur(.3px);
}

.cover-art--herbal {
  background:
    radial-gradient(120% 80% at 90% 10%, rgba(255,255,255,.3), transparent 55%),
    linear-gradient(160deg, #cfe6a6 0%, #5aa06a 60%, #124f64 100%);
}
.cover-art--herbal::before {
  width: 64%; aspect-ratio: 1; left: 18%; top: 18%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #f8efb4 40%, #9ec47a 75%, #4a7a42 100%);
  box-shadow: inset -10px -14px 26px rgba(0,0,0,.2), 0 14px 28px rgba(0,0,0,.2);
}
.cover-art--herbal::after {
  width: 30%; aspect-ratio: 1; right: 12%; bottom: 14%;
  background: radial-gradient(circle, #3a6b33 0%, transparent 65%);
  opacity: .6;
}

.cover-art--charcoal {
  background: linear-gradient(155deg, #3c4a3c 0%, #121d12 100%);
}
.cover-art--charcoal::before { width: 62%; aspect-ratio: 1; left: 19%; top: 18%;
  background: radial-gradient(circle at 30% 30%, #5a6b58, #1b2a1b 55%, #000 100%);
  box-shadow: inset -10px -14px 26px rgba(0,0,0,.5), 0 12px 30px rgba(0,0,0,.3); }
.cover-art--charcoal::after { width: 30%; aspect-ratio: 1; right: 8%; bottom: 12%;
  background: radial-gradient(circle, #c1de4a 0%, transparent 60%);
  opacity: .25; }

.cover-art--clay {
  background: linear-gradient(160deg, #f8efb4 0%, #e8a67f 60%, #b25c3f 100%);
}
.cover-art--clay::before { width: 65%; aspect-ratio: 1; left: 17%; top: 16%;
  background: radial-gradient(circle at 35% 35%, #fffbe6, #f0d8b4 50%, #c88968 100%);
  box-shadow: inset -12px -16px 26px rgba(0,0,0,.18), 0 14px 28px rgba(0,0,0,.2); }

.cover-art--brand {
  background:
    radial-gradient(100% 70% at 10% 0%, rgba(255,255,255,.4), transparent 55%),
    linear-gradient(140deg, #124f64 0%, #0e3a4a 100%);
}
.cover-art--brand::before {
  width: 55%; aspect-ratio: 1.3; left: 22%; top: 22%;
  background: linear-gradient(160deg, #f8efb4 0%, #c1de4a 100%);
  border-radius: 12px; transform: rotate(-6deg);
  box-shadow: 0 18px 30px rgba(0,0,0,.25);
}
.cover-art--brand::after {
  width: 45%; aspect-ratio: 1.3; right: 16%; bottom: 16%;
  background: linear-gradient(160deg, #fff 0%, #f8efb4 100%);
  border-radius: 12px; transform: rotate(8deg);
  box-shadow: 0 18px 30px rgba(0,0,0,.2);
}

/* Instructora — retrato estilizado */
.cover-art--portrait {
  background: linear-gradient(170deg, #f8efb4 0%, #c1de4a 100%);
}
.cover-art--portrait::before {
  width: 56%; aspect-ratio: 1; left: 22%; top: 14%;
  background: radial-gradient(circle at 50% 40%, #e8c8a6 0%, #c49875 60%, #8a5e3f 100%);
  box-shadow: inset -8px -12px 22px rgba(0,0,0,.15);
}
.cover-art--portrait::after {
  width: 90%; height: 45%; left: 5%; bottom: 0;
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
  background: linear-gradient(180deg, #124f64 0%, #0e3a4a 100%);
}

/* Posts del blog */
.cover-art--calendula {
  background: linear-gradient(160deg, #f8efb4 0%, #f2c94c 55%, #c88968 100%);
}
.cover-art--calendula::before { width: 55%; aspect-ratio: 1; left: 22%; top: 22%;
  background: radial-gradient(circle at 35% 35%, #fffbe6, #f2c94c 55%, #a87a2e 100%);
  box-shadow: inset -10px -14px 22px rgba(0,0,0,.18), 0 14px 28px rgba(0,0,0,.2); }

.cover-art--trace {
  background: linear-gradient(150deg, #e8f1d6 0%, #c1de4a 60%, #159f1c 100%);
}
.cover-art--trace::before { width: 60%; aspect-ratio: 1; left: 20%; top: 18%;
  background: conic-gradient(from 90deg, #fff, #f8efb4, #c1de4a, #fff);
  box-shadow: inset -10px -14px 22px rgba(0,0,0,.12); }

.cover-art--rose {
  background: linear-gradient(150deg, #fde0e4 0%, #f29aa6 60%, #c45a6a 100%);
}
.cover-art--rose::before { width: 60%; aspect-ratio: 1; left: 20%; top: 16%;
  background: radial-gradient(circle at 30% 30%, #fff, #fde0e4 55%, #d47a86 100%);
  box-shadow: inset -10px -14px 22px rgba(0,0,0,.15); }

.cover-art--winter {
  background: linear-gradient(160deg, #dfe8df 0%, #8fa48f 100%);
}
.cover-art--winter::before { width: 58%; aspect-ratio: 1; left: 21%; top: 18%;
  background: radial-gradient(circle at 30% 30%, #fff, #d4ddd4 50%, #6c7d6c 100%);
  box-shadow: inset -10px -14px 22px rgba(0,0,0,.15); }

.cover-art--market {
  background: linear-gradient(155deg, #f8efb4 0%, #e4b96a 100%);
}
.cover-art--market::before { width: 55%; aspect-ratio: 1; left: 10%; top: 18%;
  background: linear-gradient(160deg, #c1de4a, #159f1c);
  border-radius: 14px; transform: rotate(-8deg);
  box-shadow: 0 14px 24px rgba(0,0,0,.2); }
.cover-art--market::after { width: 45%; aspect-ratio: 1; right: 10%; bottom: 14%;
  background: linear-gradient(160deg, #fff, #f8efb4);
  border-radius: 14px; transform: rotate(6deg);
  box-shadow: 0 14px 24px rgba(0,0,0,.18); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
