:root {
  /* Identidad visual ADN */
  --green-975: #153f49; /* azul ADN profundo para contrastes puntuales */
  --green-950: #1b4a56; /* azul ADN principal */
  --green-800: #2c6570; /* azul medio */
  --green-700: #4f7f87; /* azul salvia */
  --sage: #b9c9c5;
  --nutri-sage: #a8c3a0;
  --sage-150: #dce7e3;
  --sage-100: #e9f0ec;
  --sage-50: #f4f8f6;
  --cream: #efe9de; /* beige suave */
  --warm-white: #f7f4ee; /* marfil cálido */
  --earth: #8a6a55;
  --terracotta: #d9a78c;
  --rose: #d8a7b1;
  --stone: #c9c9c9;
  --gold: #c8a35f; /* dorado suave elegante */
  --ink: #262b2a;
  --muted: #706b63; /* gris cálido para textos secundarios */
  --line: rgba(27, 74, 86, 0.15);
  --shadow: 0 26px 76px rgba(27, 74, 86, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: "Poppins", system-ui, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--green-950);
  color: var(--warm-white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-top: 0;
  background: rgba(251, 248, 242, 0.96);
  box-shadow: 0 10px 28px rgba(27, 74, 86, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.98);
  box-shadow: 0 12px 34px rgba(27, 74, 86, 0.1);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-950);
}

.brand-mark,
.brand-name {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.brand-mark {
  border-radius: 50%;
}

.brand-mark:focus-visible,
.brand-name:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(27, 74, 86, 0.08), 0 8px 18px rgba(18, 50, 58, 0.12);
}

.brand strong {
  display: block;
  font-family: "Cardo", Georgia, serif;
  font-size: 21px;
  line-height: 1;
}

.brand small {
  display: block;
  max-width: 250px;
  margin-top: 5px;
  font-size: 11px;
  letter-spacing: 0;
  opacity: 0.86;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(27, 74, 86, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
  color: var(--green-950);
  font-size: 13px;
  font-weight: 700;
}

.site-header.is-scrolled .nav-links {
  border-color: rgba(27, 74, 86, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.nav-links a {
  position: relative;
  white-space: nowrap;
}

.nav-links a:not(.nav-cta) {
  padding: 9px 12px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:not(.nav-cta)::after {
  display: none;
}

.nav-links a:not(.nav-cta):hover {
  background: rgba(229, 235, 224, 0.86);
}

.site-header.is-scrolled .nav-links a:not(.nav-cta):hover {
  background: rgba(229, 235, 224, 0.86);
}

.nav-cta {
  padding: 10px 15px;
  border: 0;
  border-radius: 999px;
  background: var(--green-950);
  color: var(--warm-white);
  box-shadow: 0 10px 22px rgba(18, 50, 58, 0.12);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-cta {
  background: var(--green-950);
  color: var(--warm-white);
}

.nav-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(27, 74, 86, 0.08);
  color: var(--green-950);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-icon:hover {
  background: rgba(27, 74, 86, 0.14);
  transform: translateY(-1px);
}

.nav-icon svg {
  width: 18px;
  height: 18px;
}

.nav-icon span {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(27, 74, 86, 0.24);
  border-radius: var(--radius);
  background: transparent;
  color: var(--green-950);
}

.site-header.is-scrolled .menu-toggle {
  border-color: rgba(27, 74, 86, 0.28);
  color: var(--green-950);
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-950);
  color: var(--warm-white);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  left: 0;
  right: 0;
  width: auto;
  background-image: url("assets/constelacion-ronda-amorosa.png");
  background-position: center 48%;
  background-size: cover;
  filter: saturate(0.95) sepia(0.02);
  transform: scale(1.01);
  animation: heroBreath 22s ease-in-out infinite alternate;
  border-bottom-left-radius: 0;
  box-shadow: none;
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 36%, rgba(184, 154, 94, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(27, 74, 86, 0.94), rgba(27, 74, 86, 0.72) 48%, rgba(27, 74, 86, 0.36)),
    linear-gradient(0deg, rgba(27, 74, 86, 0.28), rgba(27, 74, 86, 0.08));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(251, 248, 242, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 242, 0.035) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 86px;
  display: block;
}

.hero-text {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sage-100);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-800);
}

.eyebrow.gold {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cardo", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 700;
}

h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 600;
}

h3 {
  font-size: 25px;
  font-weight: 600;
}

h4 {
  margin: 0;
  color: inherit;
  font-family: "Cardo", Georgia, serif;
  font-size: 22px;
  line-height: 1.1;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 610px;
  margin-top: 20px;
  color: rgba(251, 248, 242, 0.88);
  font-size: clamp(16px, 1.65vw, 18px);
}

.hero-school {
  max-width: 720px;
  margin: 0 0 20px;
  color: rgba(251, 248, 242, 0.94);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.06;
}

.hero-emblem {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(251, 248, 242, 0.22);
  border-radius: 8px;
  background: rgba(251, 248, 242, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hero-emblem::before,
.hero-emblem::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(184, 154, 94, 0.38);
  border-radius: 999px;
  pointer-events: none;
}

.hero-emblem::before {
  width: 150px;
  height: 150px;
  top: -34px;
  right: -28px;
}

.hero-emblem::after {
  width: 88px;
  height: 88px;
  bottom: 26px;
  left: -28px;
}

.hero-emblem img {
  width: min(100%, 280px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 10px rgba(251, 248, 242, 0.09), 0 24px 70px rgba(0, 0, 0, 0.26);
}

.hero-emblem-copy {
  margin-top: 24px;
  text-align: center;
}

.hero-emblem-copy span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-emblem-copy p {
  margin-top: 8px;
  color: rgba(251, 248, 242, 0.9);
  font-family: "Cardo", Georgia, serif;
  font-size: 25px;
  line-height: 1.15;
}

.hero-notes {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.hero-notes span {
  padding: 10px 12px;
  border: 1px solid rgba(251, 248, 242, 0.18);
  border-radius: 999px;
  color: rgba(251, 248, 242, 0.86);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.hero-actions,
.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: var(--green-950);
  color: var(--warm-white);
}

.button-primary:hover {
  background: var(--green-800);
}

.button-accent {
  background: var(--gold);
  color: var(--green-950);
}

.button-accent:hover {
  background: #a8894c;
}

.button-ghost.light,
.button-outline.light {
  border-color: rgba(251, 248, 242, 0.76);
  color: var(--warm-white);
}

.hero .button-ghost.light {
  border-color: rgba(27, 74, 86, 0.22);
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.46);
}

.hero .button-primary {
  background: var(--green-950);
  color: var(--warm-white);
}

.hero .button-primary:hover {
  background: var(--green-800);
}

.button-ghost.light:hover,
.button-outline.light:hover {
  background: rgba(251, 248, 242, 0.12);
}

.hero .button-ghost.light:hover {
  background: var(--sage-100);
}

section {
  scroll-margin-top: 92px;
}

.intro-band,
.quote-strip,
.symbol-section,
.visual-story,
.pathways,
.agenda-section,
.constellation-method,
.experience,
.workshops,
.courses,
.multimedia,
.media-network,
.about,
.individual-sessions,
.resources,
.appointments,
.blog,
.testimonials,
.faq,
.contact {
  padding: 96px 0;
}

.intro-band {
  background: var(--cream);
}

.quote-strip {
  padding: 34px 0;
  background: var(--green-950);
  color: var(--warm-white);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(251, 248, 242, 0.16);
  background: rgba(251, 248, 242, 0.16);
}

.quote-grid p {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(251, 248, 242, 0.06);
  color: rgba(251, 248, 242, 0.9);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.12;
  text-align: center;
}

.symbol-section {
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
}

.visual-story {
  background:
    linear-gradient(180deg, var(--warm-white), var(--cream));
}

.visual-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.visual-copy {
  display: grid;
  gap: 18px;
}

.visual-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.visual-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.58fr);
  gap: 16px;
  align-items: end;
}

.visual-collage img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(27, 74, 86, 0.12);
}

.visual-collage img.large {
  height: 460px;
}

.symbol-section::before {
  content: "ADN";
  position: absolute;
  right: -28px;
  top: -18px;
  color: rgba(167, 184, 161, 0.16);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 700;
  line-height: 1;
}

.symbol-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.symbol-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
}

.symbol-mark::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(199, 130, 107, 0.16), rgba(184, 154, 94, 0.18));
}

.symbol-mark img {
  position: relative;
  width: min(260px, 72vw);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.symbol-copy {
  max-width: 780px;
  display: grid;
  gap: 18px;
}

.symbol-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.agenda-section {
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.88), rgba(244, 239, 230, 0.96)),
    radial-gradient(circle at 12% 20%, rgba(201, 130, 107, 0.14), transparent 32%);
}

.agenda-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.agenda-header > p {
  color: var(--muted);
  font-size: 18px;
}

.agenda-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.75fr));
  gap: 18px;
}

.agenda-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: 0 18px 45px rgba(27, 74, 86, 0.08);
}

.agenda-card.featured {
  background:
    linear-gradient(145deg, rgba(27, 74, 86, 0.94), rgba(47, 93, 74, 0.88)),
    url("assets/constelacion-ronda-amorosa.png");
  background-size: cover;
  background-position: center;
  color: var(--warm-white);
}

.agenda-card h3 {
  font-size: 31px;
}

.agenda-card p:not(.tag),
.agenda-card li {
  color: var(--muted);
}

.agenda-card.featured p:not(.tag),
.agenda-card.featured li {
  color: rgba(251, 248, 242, 0.82);
}

.agenda-card ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding-left: 18px;
}

.agenda-card a:not(.button) {
  margin-top: auto;
  color: var(--green-800);
  font-weight: 700;
}

.date-badge {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-950);
  font-family: "Cardo", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.date-badge.soft {
  background: var(--sage-100);
  color: var(--green-950);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}

.two-col.reversed {
  align-items: center;
}

.text-flow {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
}

.text-flow h2,
.text-flow .eyebrow {
  color: var(--ink);
}

blockquote {
  margin: 10px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--terracotta);
  color: var(--green-950);
  font-family: "Cardo", Georgia, serif;
  font-style: italic;
  font-size: 27px;
  line-height: 1.18;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 860px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.cards {
  display: grid;
  gap: 22px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.offer-card,
.article-card,
.founder-card,
.course-list article,
.membership-tiers article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 16px 45px rgba(27, 74, 86, 0.06);
}

.feature-card {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}

.feature-card svg {
  width: 34px;
  height: 34px;
  color: var(--green-800);
}

.feature-card.terracotta svg {
  color: var(--terracotta);
}

.feature-card.sage svg {
  color: #6f876a;
}

.feature-card p,
.article-card p,
.offer-card p,
.founder-card p,
.course-list p,
.membership-tiers p {
  color: var(--muted);
}

.feature-card a,
.offer-card a,
.article-card a {
  margin-top: auto;
  color: var(--green-800);
  font-weight: 700;
}

.offer-card a.button-primary,
.offer-card-featured a.button-primary {
  color: var(--warm-white) !important;
}

.offer-card a.button-primary:hover,
.offer-card-featured a.button-primary:hover {
  color: var(--warm-white) !important;
}

.approach {
  padding: 86px 0;
  background: var(--warm-white);
  color: var(--ink);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 560px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.approach-content {
  display: grid;
  gap: 22px;
}

.approach-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  padding: 9px 12px;
  border: 1px solid rgba(27, 74, 86, 0.14);
  border-radius: 999px;
  color: var(--green-950);
  font-weight: 700;
  background: var(--cream);
}

.formation {
  padding: 108px 0;
  background: var(--green-950);
  color: var(--warm-white);
}

.formation-intro {
  display: grid;
  gap: 20px;
  margin-bottom: 58px;
}

.formation-intro > p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(251, 248, 242, 0.82);
  font-size: 18px;
}

.formation-track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.formation-track {
  display: grid;
  gap: 14px;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(251, 248, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.08);
}

.formation-track.active {
  background: rgba(191, 137, 89, 0.18);
}

.formation-track span,
.bio-training-panel span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.formation-track h3 {
  max-width: 520px;
  color: var(--warm-white);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

.formation-track p {
  color: rgba(251, 248, 242, 0.78);
}

.formation-track a {
  align-self: end;
  color: var(--gold);
  font-weight: 800;
}

.formation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 54px;
  align-items: center;
}

.formation-copy {
  display: grid;
  gap: 22px;
}

.formation-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(251, 248, 242, 0.82);
  font-size: 18px;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(251, 248, 242, 0.9);
}

.check-list svg {
  width: 19px;
  margin-top: 3px;
  color: var(--gold);
}

.program-panel {
  padding: 34px;
  border: 1px solid rgba(251, 248, 242, 0.2);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.08);
}

.panel-label,
.tag {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.program-panel ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 22px;
}

.program-panel li {
  color: rgba(251, 248, 242, 0.86);
}

.program-panel li strong {
  color: var(--warm-white);
}

.program-outcomes {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(251, 248, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.08);
}

.program-outcomes span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.program-outcomes p {
  color: rgba(251, 248, 242, 0.82);
}

.formation-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.formation-details article {
  padding: 20px;
  border: 1px solid rgba(251, 248, 242, 0.18);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.08);
}

.formation-details span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.formation-details p {
  color: rgba(251, 248, 242, 0.8);
}

.bio-training {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.64fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 32px;
  padding: 34px;
  border: 1px solid rgba(251, 248, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.06);
}

.bio-training h3 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--warm-white);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1;
}

.bio-training p {
  max-width: 800px;
  color: rgba(251, 248, 242, 0.8);
}

.bio-training p + p {
  margin-top: 12px;
}

.bio-training-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.1);
}

.bio-training-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(251, 248, 242, 0.82);
}

.bio-training-panel .button {
  width: 100%;
}

.training-team {
  margin-top: 54px;
}

.training-team .section-heading {
  margin-bottom: 24px;
}

.training-team h3 {
  max-width: 760px;
  color: var(--warm-white);
}

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

.team-mini-grid article {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(251, 248, 242, 0.18);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.08);
}

.team-mini-grid p {
  margin-top: 8px;
  color: rgba(251, 248, 242, 0.78);
}

.team-photo {
  width: 104px;
  height: 124px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: rgba(251, 248, 242, 0.18);
}

.team-photo.gisel {
  background-image: url("assets/foto-gisel-ramos-cuello.jpeg?v=2");
  background-size: cover;
  background-position: center 16%;
}

.team-photo.cecilia {
  background-image: url("assets/foto-ceci-barra.jpg");
  background-size: 120% auto;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.experience {
  background:
    linear-gradient(180deg, var(--warm-white), rgba(229, 235, 224, 0.55));
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: start;
}

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

.experience-cards article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(27, 74, 86, 0.06);
}

.experience-cards svg {
  width: 34px;
  height: 34px;
  color: var(--terracotta);
}

.experience-cards p {
  color: var(--muted);
}

.constellation-method {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--warm-white), var(--cream));
}

.constellation-method::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(184, 154, 94, 0.16), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(167, 184, 161, 0.22), transparent 30%);
  pointer-events: none;
}

.constellation-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  gap: 64px;
  align-items: center;
}

.constellation-copy {
  display: grid;
  gap: 18px;
}

.constellation-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.constellation-steps {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.constellation-steps article {
  display: grid;
  grid-template-columns: 48px 0.28fr 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.78);
}

.constellation-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-950);
  color: var(--warm-white);
  font-family: "Cardo", Georgia, serif;
  font-weight: 700;
}

.constellation-steps h3 {
  font-size: 24px;
}

.constellation-steps p {
  color: var(--muted);
}

.constellation-map {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(27, 74, 86, 0.92), rgba(47, 93, 74, 0.84)),
    url("assets/constelacion-ronda-amorosa.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.constellation-map .ring,
.constellation-map .ring::before,
.constellation-map .ring::after {
  position: absolute;
  border: 1px solid rgba(251, 248, 242, 0.26);
  border-radius: 50%;
}

.constellation-map .ring {
  inset: 76px;
}

.constellation-map .ring::before {
  content: "";
  inset: 58px;
}

.constellation-map .ring::after {
  content: "";
  inset: 118px;
}

.node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 82px;
  min-height: 82px;
  padding: 10px;
  border: 1px solid rgba(251, 248, 242, 0.26);
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.12);
  color: var(--warm-white);
  text-align: center;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.node.main {
  left: 50%;
  top: 50%;
  min-width: 100px;
  min-height: 100px;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--green-950);
  font-family: "Cardo", Georgia, serif;
  font-size: 22px;
}

.node.n1 { left: 50%; top: 48px; transform: translateX(-50%); }
.node.n2 { right: 48px; top: 132px; }
.node.n3 { right: 62px; bottom: 104px; }
.node.n4 { left: 50%; bottom: 48px; transform: translateX(-50%); }
.node.n5 { left: 48px; bottom: 104px; }
.node.n6 { left: 62px; top: 132px; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--green-950);
  cursor: pointer;
  font-weight: 700;
}

.filter-button.active,
.filter-button:hover {
  background: var(--green-950);
  color: var(--warm-white);
}

.offer-card {
  overflow: hidden;
  display: grid;
  background: var(--warm-white);
}

.offer-card[hidden] {
  display: none;
}

.offer-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.offer-card div {
  min-height: 276px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.offer-card .tag {
  margin: 0;
  color: var(--terracotta);
}

.courses {
  background:
    radial-gradient(circle at 10% 10%, rgba(47, 96, 117, 0.14), transparent 34%),
    linear-gradient(145deg, var(--sage-150), var(--cream) 54%, var(--warm-white));
}

.courses-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.courses-head > p {
  color: var(--muted);
  font-size: 18px;
}

.course-list {
  display: grid;
  gap: 16px;
}

.course-library {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.course-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px;
  background: linear-gradient(180deg, var(--warm-white), var(--sage-50));
}

.course-list svg {
  width: 33px;
  height: 33px;
  color: var(--green-700);
}

.course-cta {
  margin-top: 28px;
}

.multimedia {
  background:
    linear-gradient(180deg, var(--warm-white), var(--sage-150)),
    radial-gradient(circle at 85% 18%, rgba(47, 96, 117, 0.16), transparent 30%);
}

.media-network {
  background:
    linear-gradient(180deg, rgba(223, 234, 237, 0.78), rgba(251, 248, 242, 0.96)),
    radial-gradient(circle at 18% 22%, rgba(47, 96, 117, 0.18), transparent 32%);
}

.media-grid,
.network-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.media-grid > div:first-child,
.network-intro {
  display: grid;
  gap: 18px;
}

.media-grid > div:first-child p:not(.eyebrow),
.network-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.media-cards,
.network-panel {
  display: grid;
  gap: 14px;
}

.media-cards article,
.network-panel article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.82);
  box-shadow: 0 14px 38px rgba(27, 74, 86, 0.07);
}

.media-cards svg,
.network-panel svg {
  width: 34px;
  height: 34px;
  color: var(--green-700);
}

.media-cards p,
.network-panel p {
  color: var(--muted);
}

.network-manifest {
  align-self: stretch;
  padding: 32px;
  border: 1px solid rgba(27, 74, 86, 0.14);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.86);
  box-shadow: 0 18px 48px rgba(27, 74, 86, 0.08);
}

.network-kicker {
  color: var(--green-950) !important;
  font-family: "Cardo", Georgia, serif;
  font-size: 31px !important;
  line-height: 1.12;
}

.network-manifest ul {
  display: grid;
  gap: 15px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.network-manifest li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 17px;
}

.network-manifest li svg {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--green-800);
}

.network-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button-outline {
  border-color: rgba(27, 74, 86, 0.28);
  color: var(--green-950);
  background: transparent;
}

.button-outline:hover {
  background: var(--cream);
}

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

.about .section-heading h2 {
  max-width: 620px;
  font-size: clamp(32px, 3.4vw, 46px);
}

.founder-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid rgba(27, 74, 86, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cream), var(--warm-white));
}

.founder-card:nth-child(2) {
  border-color: rgba(216, 167, 155, 0.32);
  background:
    linear-gradient(135deg, rgba(216, 167, 155, 0.18), rgba(243, 236, 226, 0.86) 42%, var(--warm-white)),
    radial-gradient(circle at 92% 8%, rgba(168, 195, 160, 0.24), transparent 30%);
}

.founder-photo {
  width: 170px;
  min-height: 230px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(184, 154, 94, 0.06), rgba(27, 74, 86, 0.16));
  mix-blend-mode: multiply;
}

.founder-photo.gisel {
  background-image: url("assets/foto-gisel-ramos-cuello.jpeg?v=2");
  background-size: cover;
  background-position: center 40%;
  background-color: #e7dfd2;
}

.founder-photo.cecilia {
  background-image: url("assets/foto-ceci-barra.jpg");
  background-size: cover;
  background-position: center 8%;
  background-color: var(--cream);
}

.founder-card div:last-child {
  display: grid;
  align-content: center;
  gap: 14px;
}

.founder-card a {
  justify-self: start;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(27, 74, 86, 0.08);
  color: var(--green-800);
  font-weight: 700;
}

.role-label {
  color: var(--green-800);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 2px;
  opacity: 0.82;
}

.resources {
  background:
    linear-gradient(120deg, var(--sage-100), var(--warm-white) 52%, rgba(184, 154, 94, 0.14));
}

.individual-sessions {
  background:
    linear-gradient(120deg, rgba(229, 235, 224, 0.82), rgba(251, 248, 242, 0.98)),
    radial-gradient(circle at 86% 20%, rgba(201, 130, 107, 0.14), transparent 28%);
}

.sessions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(520px, 1fr);
  gap: 54px;
  align-items: start;
}

.sessions-grid > div:first-child {
  display: grid;
  gap: 18px;
}

.sessions-grid p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.session-practitioners {
  display: grid;
  gap: 16px;
}

.session-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: 0 16px 45px rgba(27, 74, 86, 0.07);
}

.session-card > div:last-child {
  display: grid;
  gap: 12px;
  align-content: center;
}

.session-card p {
  color: var(--muted);
}

.session-card p strong {
  color: var(--green-800);
  font-weight: 800;
}

.session-photo {
  width: 170px;
  min-height: 230px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: #e7dfd2;
}

.session-photo.gisel {
  background-image: url("assets/foto-gisel-ramos-cuello.jpeg?v=2");
  background-position: center 14%;
}

.session-photo.cecilia {
  background-image: url("assets/foto-ceci-barra.jpg");
  background-size: cover;
  background-position: center 18%;
}

.profile-hero {
  padding: 150px 0 96px;
  background:
    linear-gradient(120deg, rgba(251, 248, 242, 0.96), rgba(229, 235, 224, 0.72)),
    radial-gradient(circle at 86% 22%, rgba(201, 130, 107, 0.16), transparent 28%);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.profile-copy {
  display: grid;
  gap: 18px;
}

.profile-copy p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.profile-photo {
  min-height: 560px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.profile-photo.cecilia {
  background-image: url("assets/foto-ceci-barra.jpg");
  background-size: 108% auto;
  background-position: center 18%;
  background-repeat: no-repeat;
  background-color: #e7dfd2;
}

.profile-topics {
  padding: 96px 0;
  background: var(--warm-white);
}

.clinic-invitation,
.clinic-method {
  padding: 96px 0;
  background: var(--cream);
}

.clinic-method {
  background: var(--warm-white);
}

.clinic-story {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: start;
}

.clinic-signals {
  padding: 96px 0;
  background: var(--warm-white);
}

.event-hero {
  padding: 150px 0 96px;
  background:
    linear-gradient(120deg, rgba(27, 74, 86, 0.96), rgba(47, 93, 74, 0.82)),
    url("assets/constelacion-ronda-amorosa.png");
  background-size: cover;
  background-position: center;
  color: var(--warm-white);
}

.event-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.58fr);
  gap: 54px;
  align-items: center;
}

.event-hero .profile-copy p:not(.eyebrow) {
  color: rgba(251, 248, 242, 0.84);
}

.event-details {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(251, 248, 242, 0.2);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.18);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.event-details p {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: rgba(251, 248, 242, 0.08);
  color: rgba(251, 248, 242, 0.88);
}

.event-details strong {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
}

.resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 54px;
  align-items: center;
}

.resource-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 28px;
}

.resource-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.ebook-mockup {
  min-height: 430px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(27, 74, 86, 0.92), rgba(47, 93, 74, 0.82)),
    url("assets/sesion-individual-amorosa.png");
  background-size: cover;
  background-position: center;
  color: var(--warm-white);
  box-shadow: var(--shadow);
}

.ebook-mockup span {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.ebook-mockup h3 {
  margin-top: 12px;
  font-size: 36px;
}

.ebook-mockup p {
  margin-top: 14px;
  color: rgba(251, 248, 242, 0.78);
}

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

.resource-library article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--warm-white), rgba(243, 236, 226, 0.72));
  box-shadow: 0 14px 38px rgba(27, 74, 86, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.resource-library article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 10px;
  background: linear-gradient(90deg, var(--green-950), var(--green-800));
}

.resource-library article::after {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 6px;
  border-radius: 0 999px 999px 0;
  background: var(--green-800);
}

.resource-library article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(27, 74, 86, 0.1);
}

.resource-card-sage::before {
  background: linear-gradient(90deg, var(--nutri-sage), var(--sage));
}

.resource-card-terra::before {
  background: linear-gradient(90deg, var(--terracotta), var(--rose));
}

.resource-card-gold::before {
  background: linear-gradient(90deg, var(--gold), #e1c47f);
}

.resource-card-green::before {
  background: linear-gradient(90deg, var(--green-950), var(--green-800));
}

.resource-card-sage::after {
  background: var(--nutri-sage);
}

.resource-card-terra::after {
  background: var(--terracotta);
}

.resource-card-gold::after {
  background: var(--gold);
}

.resource-card-green::after {
  background: var(--green-950);
}

.resource-library span {
  color: var(--green-800);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-library h3 {
  max-width: 95%;
  font-size: 28px;
  line-height: 1.05;
}

.resource-library p {
  color: var(--muted);
}

.resource-library a {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: start;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--green-950);
  color: var(--warm-white);
  font-weight: 800;
}

.resource-card-sage a {
  background: var(--nutri-sage);
  color: var(--green-950);
}

.resource-card-terra a {
  background: var(--terracotta);
  color: var(--green-950);
}

.resource-card-gold a {
  background: var(--gold);
  color: var(--green-950);
}

.resource-library .resource-card-green::before {
  background: linear-gradient(90deg, var(--green-950), var(--green-800));
}

.resource-library .resource-card-sage::before {
  background: linear-gradient(90deg, var(--nutri-sage), var(--sage));
}

.resource-library .resource-card-terra::before {
  background: linear-gradient(90deg, var(--terracotta), var(--rose));
}

.resource-library .resource-card-gold::before {
  background: linear-gradient(90deg, var(--gold), #e1c47f);
}

/* Comunidad: tarjetas claras con texto legible */
.community .membership-tiers article,
.community-inner .membership-tiers article {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.94) !important;
  border: 1px solid rgba(27, 74, 86, 0.14);
}

.community .membership-tiers h3,
.community-inner .membership-tiers h3 {
  color: var(--green-950) !important;
}

.community .membership-tiers p,
.community-inner .membership-tiers p {
  color: var(--muted) !important;
}

.appointments {
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 167, 155, 0.22), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(184, 154, 94, 0.18), transparent 26%),
    linear-gradient(120deg, rgba(27, 74, 86, 0.96), rgba(27, 74, 86, 0.86)),
    url("assets/sesion-individual-amorosa.png");
  background-size: cover;
  background-position: center;
  color: var(--warm-white);
}

.appointments-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: start;
}

.appointments-copy {
  display: grid;
  gap: 18px;
}

.appointments-copy p:not(.eyebrow) {
  color: rgba(251, 248, 242, 0.82);
  font-size: 18px;
}

.ethical-note {
  padding: 16px;
  border: 1px solid rgba(251, 248, 242, 0.2);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.08);
  font-size: 14px !important;
}

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

.appointment-options article {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(251, 248, 242, 0.2);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.13);
  backdrop-filter: blur(14px);
}

.appointment-options article:nth-child(2) {
  border-color: rgba(216, 167, 155, 0.36);
  background: rgba(216, 167, 155, 0.13);
}

.appointment-options article.wide {
  grid-column: 1 / -1;
  min-height: auto;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
}

.appointment-head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.appointment-avatar {
  flex-shrink: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: rgba(251, 248, 242, 0.18);
  box-shadow: 0 0 0 1px rgba(251, 248, 242, 0.28), 0 12px 26px rgba(15, 41, 31, 0.34);
}

.appointment-avatar.gisel {
  background-image: url("assets/foto-gisel-ramos-cuello.jpeg?v=2");
  background-size: 118% auto;
  background-position: center 24%;
  background-repeat: no-repeat;
}

.appointment-avatar.cecilia {
  background-image: url("assets/foto-ceci-barra.jpg");
  background-size: 130% auto;
  background-position: center 18%;
  background-repeat: no-repeat;
}

.appointment-head h3 {
  color: var(--warm-white);
}

.appointment-instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: rgba(251, 248, 242, 0.8);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.appointment-instagram:hover {
  color: var(--gold);
}

.appointment-instagram svg {
  width: 16px;
  height: 16px;
}

.appointment-options article:nth-child(2) .appointment-instagram:hover {
  color: var(--rose);
}

.appointment-options p {
  color: rgba(251, 248, 242, 0.78);
}

.appointment-options .button {
  margin-top: auto;
}

.community {
  padding: 100px 0;
  background:
    linear-gradient(90deg, rgba(27, 74, 86, 0.94), rgba(27, 74, 86, 0.78)),
    url("assets/constelacion-ronda-amorosa.png");
  background-size: cover;
  background-position: center;
  color: var(--warm-white);
}

.community-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.community-inner p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 620px;
  color: rgba(251, 248, 242, 0.82);
  font-size: 18px;
}

.membership-tiers {
  display: grid;
  gap: 14px;
}

.membership-tiers article {
  padding: 22px;
  border-color: rgba(251, 248, 242, 0.18);
  background: rgba(251, 248, 242, 0.09);
  box-shadow: none;
}

.membership-tiers p {
  color: rgba(251, 248, 242, 0.75);
}

.blog {
  background:
    radial-gradient(circle at 14% 0%, rgba(47, 96, 117, 0.14), transparent 32%),
    linear-gradient(180deg, var(--warm-white), rgba(223, 234, 237, 0.86));
}

.testimonials {
  background:
    linear-gradient(180deg, var(--warm-white), var(--sage-50));
}

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

.testimonial-grid figure {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(200, 163, 95, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(239, 233, 222, 0.62));
  box-shadow: 0 18px 48px rgba(27, 74, 86, 0.07);
}

.testimonial-grid figure::before {
  content: "“";
  position: absolute;
  right: 24px;
  top: 10px;
  color: rgba(27, 74, 86, 0.08);
  font-family: "Cardo", Georgia, serif;
  font-size: 96px;
  line-height: 1;
}

.testimonial-grid figure:nth-child(2) {
  background:
    radial-gradient(circle at 92% 12%, rgba(168, 195, 160, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(232, 240, 228, 0.68));
}

.testimonial-grid figure:nth-child(3) {
  background:
    radial-gradient(circle at 92% 12%, rgba(217, 167, 140, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(246, 232, 221, 0.7));
}

.testimonial-grid blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--green-950);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(24px, 2vw, 32px);
  font-style: italic;
  line-height: 1.18;
}

.testimonial-grid figcaption {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(27, 74, 86, 0.12);
  color: #a66d50;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-card {
  min-height: 248px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-top: 4px solid var(--gold);
  background: linear-gradient(180deg, var(--cream), var(--sage-150));
}

.article-card p {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.faq {
  background:
    radial-gradient(circle at 12% 14%, rgba(168, 195, 160, 0.2), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(200, 163, 95, 0.12), transparent 28%),
    linear-gradient(180deg, var(--warm-white), var(--sage-50));
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.faq .section-heading,
.faq-grid > div:first-child {
  position: sticky;
  top: 116px;
}

.faq-intro {
  max-width: 430px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
}

.accordion {
  counter-reset: faq;
  display: grid;
  gap: 12px;
}

.accordion details {
  counter-increment: faq;
  overflow: hidden;
  border: 1px solid rgba(27, 74, 86, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(239, 233, 222, 0.68));
  box-shadow: 0 14px 38px rgba(27, 74, 86, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.accordion details[open] {
  border-color: rgba(200, 163, 95, 0.32);
  box-shadow: 0 18px 50px rgba(27, 74, 86, 0.1);
  transform: translateY(-1px);
}

.accordion summary {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  padding: 18px 20px;
  color: var(--green-950);
  font-weight: 700;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before {
  content: counter(faq, decimal-leading-zero);
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(200, 163, 95, 0.22);
  font-size: 12px;
  font-weight: 800;
}

.accordion summary::after {
  content: "+";
  margin-left: auto;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  margin: 0;
  padding: 0 20px 20px 70px;
  color: var(--muted);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
}

.contact {
  background: var(--green-950);
  color: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.8fr);
  gap: 54px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 20px;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(251, 248, 242, 0.82);
  font-size: 18px;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.contact-options a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(251, 248, 242, 0.9);
  font-weight: 700;
}

.contact-options svg {
  width: 19px;
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(43, 42, 38, 0.18);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px 13px;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(201, 130, 107, 0.38);
  border-color: var(--terracotta);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.login-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.login-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 50, 58, 0.58);
  backdrop-filter: blur(10px);
}

.login-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(480px, 100%);
  padding: 34px;
  border: 1px solid rgba(27, 74, 86, 0.12);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--ink);
  box-shadow: 0 26px 80px rgba(18, 50, 58, 0.28);
}

.login-panel h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.login-panel p:not(.eyebrow) {
  color: var(--muted);
}

.login-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-950);
  cursor: pointer;
}

.login-close svg {
  width: 18px;
  height: 18px;
}

.login-form {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.login-form label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-size: 14px;
  font-weight: 700;
}

.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="text"] {
  width: 100%;
  border: 1px solid rgba(43, 42, 38, 0.18);
  border-radius: var(--radius);
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
}

.login-form input:focus {
  outline: 2px solid rgba(201, 130, 107, 0.38);
  border-color: var(--terracotta);
}

.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

.login-check {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 8px !important;
  color: var(--muted) !important;
  font-weight: 600 !important;
}

.login-row a {
  color: var(--green-800);
  font-weight: 700;
}

.login-note {
  color: var(--muted);
  font-size: 13px;
}

.login-panel {
  max-height: min(92vh, 720px);
  overflow-y: auto;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: var(--cream);
}

.auth-tab {
  padding: 10px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease;
}

.auth-tab.active {
  background: var(--green-950);
  color: var(--warm-white);
}

.button-google {
  border: 1px solid rgba(43, 42, 38, 0.18);
  background: #fff;
  color: var(--ink);
}

.button-google:hover {
  background: var(--sage-50);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.auth-message {
  min-height: 1em;
  color: var(--muted);
  font-size: 14px;
}

.auth-message.error {
  color: #a4472e;
}

.auth-message.success {
  color: var(--green-800);
}

.auth-note {
  color: var(--muted);
  font-size: 12px;
}

.account-view .account-greeting {
  color: var(--green-950);
  font-family: "Cardo", Georgia, serif;
  font-size: 28px;
}

.account-view .account-email {
  margin-top: -8px;
  font-size: 14px;
}

.account-view .button-outline {
  justify-self: start;
}

.nav-icon.is-logged {
  background: var(--green-950);
  color: var(--warm-white);
}

.thanks-page {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 110px;
  display: grid;
  gap: 26px;
}

.thanks-panel {
  display: grid;
  gap: 16px;
}

.thanks-panel h1 {
  color: var(--green-950);
  font-size: clamp(34px, 4.4vw, 52px);
}

.thanks-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.site-footer {
  padding: 34px 0 38px;
  background:
    linear-gradient(90deg, rgba(27, 74, 86, 0.06), rgba(200, 163, 95, 0.08), rgba(27, 74, 86, 0.06)),
    var(--ivory);
  color: var(--muted);
  border-top: 1px solid rgba(200, 163, 95, 0.28);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.site-footer strong {
  color: var(--adn-blue);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(27, 74, 86, 0.16);
  box-shadow: 0 10px 24px rgba(27, 74, 86, 0.08);
}

.footer-partner-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  opacity: 0.74;
  filter: saturate(0.9);
}

.site-footer p {
  max-width: 720px;
  margin: 0;
  color: rgba(42, 43, 39, 0.68);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.55;
}

.section-observe {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.section-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.anchor-target {
  position: relative;
  top: -96px;
  display: block;
  visibility: hidden;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #1f6f54;
  color: var(--warm-white);
  box-shadow: 0 18px 42px rgba(27, 74, 86, 0.22);
  font-weight: 700;
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
}

/* Color vitality layer: ADN deep green + NutriWellness warmth */
.intro-band {
  background:
    radial-gradient(circle at 92% 12%, rgba(216, 167, 155, 0.28), transparent 28%),
    linear-gradient(135deg, var(--warm-white), var(--cream) 52%, rgba(168, 195, 160, 0.26));
}

.quote-strip {
  background:
    linear-gradient(120deg, rgba(27, 74, 86, 0.96), rgba(27, 74, 86, 0.9)),
    radial-gradient(circle at 12% 18%, rgba(184, 154, 94, 0.26), transparent 28%);
}

.symbol-section,
.visual-story {
  background:
    radial-gradient(circle at 8% 14%, rgba(143, 108, 191, 0.12), transparent 26%),
    linear-gradient(180deg, var(--warm-white), rgba(243, 236, 226, 0.86));
}

.pathways,
.agenda-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(216, 167, 155, 0.2), transparent 28%),
    linear-gradient(135deg, var(--cream), var(--warm-white));
}

.experience {
  background:
    linear-gradient(180deg, var(--sage-50), var(--warm-white)),
    radial-gradient(circle at 18% 20%, rgba(168, 195, 160, 0.22), transparent 30%);
}

.workshops {
  background:
    linear-gradient(180deg, var(--warm-white), rgba(243, 236, 226, 0.9)),
    radial-gradient(circle at 88% 8%, rgba(217, 167, 140, 0.2), transparent 28%);
}

.workshop-grid .offer-card:nth-child(1) {
  border-top: 5px solid var(--rose);
}

.workshop-grid .offer-card:nth-child(2) {
  border-top: 5px solid var(--nutri-sage);
}

.workshop-grid .offer-card:nth-child(3) {
  border-top: 5px solid var(--green-700);
}

.offer-card,
.course-list article,
.media-cards article,
.network-panel article,
.founder-card,
.article-card,
.testimonial-grid figure {
  box-shadow: 0 18px 48px rgba(27, 74, 86, 0.08);
}

.offer-card .tag,
.role-label,
.resource-library span {
  color: var(--green-700);
}

.filter-button.active {
  background: var(--gold);
  color: var(--green-950);
}

.courses {
  background:
    radial-gradient(circle at 12% 10%, rgba(47, 96, 117, 0.18), transparent 34%),
    radial-gradient(circle at 90% 82%, rgba(216, 167, 155, 0.18), transparent 30%),
    linear-gradient(145deg, var(--sage-150), var(--cream) 48%, var(--warm-white));
}

.course-list article:nth-child(3n + 1) {
  border-left: 4px solid var(--nutri-sage);
}

.course-list article:nth-child(3n + 2) {
  border-left: 4px solid var(--rose);
}

.course-list article:nth-child(3n) {
  border-left: 4px solid var(--green-700);
}

.media-network {
  background:
    radial-gradient(circle at 80% 18%, rgba(184, 154, 94, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(223, 234, 237, 0.86), rgba(251, 248, 242, 0.96));
}

.network-manifest {
  border-color: rgba(143, 108, 191, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(216, 167, 155, 0.12)),
    var(--warm-white);
}

.about {
  background:
    radial-gradient(circle at 18% 4%, rgba(168, 195, 160, 0.2), transparent 26%),
    linear-gradient(180deg, var(--warm-white), var(--cream));
}

.resources {
  background:
    radial-gradient(circle at 88% 14%, rgba(143, 108, 191, 0.12), transparent 26%),
    linear-gradient(120deg, rgba(168, 195, 160, 0.28), var(--warm-white) 48%, rgba(184, 154, 94, 0.17));
}

.resource-card-green {
  background: linear-gradient(180deg, var(--warm-white), rgba(168, 195, 160, 0.16));
}

.resource-card-sage {
  background: linear-gradient(180deg, var(--warm-white), rgba(223, 234, 237, 0.72));
}

.resource-card-terra {
  background: linear-gradient(180deg, var(--warm-white), rgba(217, 167, 140, 0.18));
}

.resource-card-gold {
  background: linear-gradient(180deg, var(--warm-white), rgba(216, 167, 155, 0.17));
}

.appointments {
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 167, 155, 0.3), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(184, 154, 94, 0.22), transparent 26%),
    linear-gradient(120deg, rgba(27, 74, 86, 0.96), rgba(27, 74, 86, 0.9)),
    url("assets/sesion-individual-amorosa.png");
}

.blog {
  background:
    radial-gradient(circle at 10% 0%, rgba(143, 108, 191, 0.13), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(168, 195, 160, 0.22), transparent 26%),
    linear-gradient(180deg, var(--warm-white), rgba(223, 234, 237, 0.9));
}

.article-card:nth-child(1) {
  border-top-color: var(--green-700);
}

.article-card:nth-child(2) {
  border-top-color: var(--rose);
}

.article-card:nth-child(3) {
  border-top-color: var(--nutri-sage);
}

.testimonials {
  background:
    radial-gradient(circle at 82% 12%, rgba(217, 167, 140, 0.16), transparent 28%),
    linear-gradient(180deg, var(--warm-white), var(--sage-50));
}

.faq {
  background:
    linear-gradient(180deg, var(--cream), rgba(243, 236, 226, 0.72)),
    radial-gradient(circle at 15% 20%, rgba(168, 195, 160, 0.2), transparent 30%);
}

.contact {
  background:
    radial-gradient(circle at 86% 16%, rgba(216, 167, 155, 0.16), transparent 26%),
    linear-gradient(180deg, var(--warm-white), var(--cream));
}

/* Expanded palette pass: more visible ADN + NutriWellness identity across pages */
body {
  background:
    linear-gradient(180deg, var(--warm-white), var(--cream));
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 34%, rgba(184, 154, 94, 0.34), transparent 30%),
    radial-gradient(circle at 12% 80%, rgba(216, 167, 155, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(27, 74, 86, 0.96), rgba(27, 74, 86, 0.8) 48%, rgba(27, 74, 86, 0.38)),
    linear-gradient(0deg, rgba(27, 74, 86, 0.32), rgba(27, 74, 86, 0.08));
}

.intro-band,
.approach {
  background:
    radial-gradient(circle at 12% 16%, rgba(168, 195, 160, 0.32), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(216, 167, 155, 0.22), transparent 28%),
    linear-gradient(135deg, var(--warm-white), var(--cream));
}

.visual-story,
.symbol-section,
.constellation-method {
  background:
    radial-gradient(circle at 8% 18%, rgba(47, 96, 117, 0.16), transparent 30%),
    radial-gradient(circle at 92% 72%, rgba(184, 154, 94, 0.18), transparent 26%),
    linear-gradient(180deg, var(--warm-white), rgba(243, 236, 226, 0.92));
}

.agenda-section {
  background:
    linear-gradient(135deg, rgba(27, 74, 86, 0.05), rgba(216, 167, 155, 0.13)),
    var(--warm-white);
}

.agenda-card:nth-child(1),
.feature-card:nth-child(3n + 1) {
  border-top: 5px solid var(--nutri-sage);
}

.agenda-card:nth-child(2),
.feature-card:nth-child(3n + 2) {
  border-top: 5px solid var(--terracotta);
}

.agenda-card:nth-child(3),
.feature-card:nth-child(3n) {
  border-top: 5px solid var(--green-700);
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(243, 236, 226, 0.58));
}

.feature-card.terracotta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(217, 167, 140, 0.18));
}

.feature-card.sage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(168, 195, 160, 0.2));
}

.formation {
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 154, 94, 0.18), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(47, 96, 117, 0.34), transparent 32%),
    linear-gradient(135deg, var(--green-950), #12323a 50%, var(--green-975));
}

.formation-track {
  border-color: rgba(251, 248, 242, 0.22);
  background: rgba(251, 248, 242, 0.1);
}

.formation-track.active {
  background:
    linear-gradient(135deg, rgba(184, 154, 94, 0.22), rgba(216, 167, 155, 0.1)),
    rgba(251, 248, 242, 0.08);
}

.bio-training {
  background:
    radial-gradient(circle at 92% 8%, rgba(168, 195, 160, 0.16), transparent 24%),
    rgba(251, 248, 242, 0.08);
}

.bio-training-panel {
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.15), rgba(223, 234, 237, 0.1));
}

.experience,
.courses {
  background:
    radial-gradient(circle at 10% 10%, rgba(47, 96, 117, 0.2), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(216, 167, 155, 0.2), transparent 28%),
    linear-gradient(145deg, var(--sage-150), var(--warm-white) 45%, var(--cream));
}

.workshops {
  background:
    radial-gradient(circle at 86% 12%, rgba(217, 167, 140, 0.24), transparent 30%),
    radial-gradient(circle at 10% 88%, rgba(168, 195, 160, 0.2), transparent 28%),
    linear-gradient(180deg, var(--warm-white), var(--cream));
}

.offer-card:nth-child(3n + 1) {
  background:
    linear-gradient(180deg, var(--warm-white), rgba(216, 167, 155, 0.13));
}

.offer-card:nth-child(3n + 2) {
  background:
    linear-gradient(180deg, var(--warm-white), rgba(168, 195, 160, 0.14));
}

.offer-card:nth-child(3n) {
  background:
    linear-gradient(180deg, var(--warm-white), rgba(223, 234, 237, 0.78));
}

.multimedia,
.media-network {
  background:
    radial-gradient(circle at 14% 12%, rgba(143, 108, 191, 0.12), transparent 26%),
    radial-gradient(circle at 86% 22%, rgba(184, 154, 94, 0.17), transparent 28%),
    linear-gradient(180deg, var(--sage-150), var(--warm-white));
}

.media-cards article:nth-child(odd),
.network-panel article:nth-child(odd) {
  border-left: 4px solid var(--green-700);
}

.media-cards article:nth-child(even),
.network-panel article:nth-child(even) {
  border-left: 4px solid var(--rose);
}

.about,
.profile-topics {
  background:
    radial-gradient(circle at 10% 12%, rgba(168, 195, 160, 0.26), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(216, 167, 155, 0.2), transparent 26%),
    linear-gradient(180deg, var(--warm-white), var(--cream));
}

.resources {
  background:
    radial-gradient(circle at 10% 20%, rgba(168, 195, 160, 0.3), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(143, 108, 191, 0.15), transparent 26%),
    radial-gradient(circle at 74% 86%, rgba(184, 154, 94, 0.2), transparent 28%),
    linear-gradient(120deg, var(--warm-white), var(--cream));
}

.community {
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 154, 94, 0.24), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(216, 167, 155, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(27, 74, 86, 0.95), rgba(27, 74, 86, 0.82)),
    url("assets/constelacion-ronda-amorosa.png");
  background-size: cover;
  background-position: center;
}

.testimonials,
.faq {
  background:
    radial-gradient(circle at 16% 18%, rgba(217, 167, 140, 0.2), transparent 30%),
    radial-gradient(circle at 86% 82%, rgba(168, 195, 160, 0.2), transparent 28%),
    linear-gradient(180deg, var(--warm-white), var(--sage-50));
}

.profile-hero {
  background:
    radial-gradient(circle at 14% 22%, rgba(168, 195, 160, 0.26), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(216, 167, 155, 0.28), transparent 30%),
    linear-gradient(120deg, var(--warm-white), var(--cream));
}

.event-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(216, 167, 155, 0.24), transparent 28%),
    radial-gradient(circle at 16% 82%, rgba(184, 154, 94, 0.22), transparent 30%),
    linear-gradient(120deg, rgba(27, 74, 86, 0.96), rgba(27, 74, 86, 0.86)),
    url("assets/constelacion-ronda-amorosa.png");
  background-size: cover;
  background-position: center;
}

.clinic-invitation {
  background:
    radial-gradient(circle at 88% 18%, rgba(216, 167, 155, 0.24), transparent 28%),
    linear-gradient(135deg, var(--cream), var(--warm-white));
}

.clinic-signals {
  background:
    radial-gradient(circle at 12% 18%, rgba(168, 195, 160, 0.24), transparent 28%),
    linear-gradient(180deg, var(--warm-white), var(--sage-50));
}

.clinic-method {
  background:
    radial-gradient(circle at 84% 14%, rgba(47, 96, 117, 0.16), transparent 30%),
    linear-gradient(180deg, var(--warm-white), var(--cream));
}

.contact {
  background:
    radial-gradient(circle at 12% 22%, rgba(168, 195, 160, 0.2), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(216, 167, 155, 0.22), transparent 26%),
    linear-gradient(180deg, var(--warm-white), var(--cream));
}

.contact-form {
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.96), rgba(243, 236, 226, 0.86));
}

.button-primary {
  box-shadow: 0 12px 28px rgba(27, 74, 86, 0.16);
}

.button-accent {
  box-shadow: 0 12px 26px rgba(184, 154, 94, 0.24);
}

/* Main hero refinement: elegant, calm and deeply ADN */
.hero {
  min-height: min(92vh, 820px);
  background: var(--green-950);
}

.hero-media {
  filter: saturate(0.98) contrast(1.02) sepia(0.01);
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 24%, rgba(184, 154, 94, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(15, 41, 31, 0.92) 0%, rgba(27, 74, 86, 0.76) 44%, rgba(27, 74, 86, 0.24) 74%, rgba(27, 74, 86, 0.08)),
    linear-gradient(0deg, rgba(15, 41, 31, 0.3), rgba(15, 41, 31, 0.02));
}

.hero::after {
  display: none;
}

.hero-text {
  max-width: 860px;
  padding: 0;
  border-left: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-school {
  display: inline-flex;
  width: auto;
  margin-bottom: 20px;
  padding: 9px 13px;
  border: 1px solid rgba(251, 248, 242, 0.2);
  border-radius: 999px;
  color: rgba(251, 248, 242, 0.9);
  background: rgba(27, 74, 86, 0.34);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  color: var(--warm-white);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  text-wrap: balance;
  text-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.hero h1::after {
  content: "";
  display: block;
  width: min(190px, 42%);
  height: 3px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(168, 195, 160, 0.84), transparent);
}

.hero-copy {
  max-width: 640px;
  color: rgba(251, 248, 242, 0.9);
  font-size: clamp(17px, 1.65vw, 20px);
}

.hero .button-primary {
  background: var(--warm-white);
  color: var(--green-950);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.hero .button-primary:hover {
  background: var(--gold);
}

.hero .button-ghost.light {
  border-color: rgba(251, 248, 242, 0.55);
  color: var(--warm-white);
  background: rgba(27, 74, 86, 0.22);
}

.hero .button-ghost.light:hover {
  background: rgba(251, 248, 242, 0.18);
}

.contact {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 22%, rgba(168, 195, 160, 0.26), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(216, 167, 155, 0.24), transparent 26%),
    linear-gradient(135deg, var(--warm-white), var(--cream));
}

.contact .eyebrow.gold {
  color: var(--green-700);
}

.contact h2 {
  color: var(--green-950);
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
}

.contact-options a {
  width: fit-content;
  padding: 10px 13px;
  border: 1px solid rgba(27, 74, 86, 0.12);
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(251, 248, 242, 0.72);
}

.contact-options svg {
  color: var(--green-700);
}

.contact-form {
  border: 1px solid rgba(27, 74, 86, 0.12);
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.98), rgba(243, 236, 226, 0.92));
  box-shadow: 0 22px 70px rgba(27, 74, 86, 0.12);
}

.contact-form .button-accent {
  background: var(--green-950);
  color: var(--warm-white);
}

.blog-hero {
  padding: 150px 0 96px;
  color: var(--warm-white);
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 154, 94, 0.32), transparent 28%),
    radial-gradient(circle at 16% 78%, rgba(168, 195, 160, 0.2), transparent 30%),
    linear-gradient(135deg, var(--green-950), var(--green-975));
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 54px;
  align-items: center;
}

.blog-hero h1 {
  max-width: 820px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
}

.blog-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(251, 248, 242, 0.86);
  font-size: 19px;
}

.blog-note {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(251, 248, 242, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.14), rgba(216, 167, 155, 0.1));
  backdrop-filter: blur(12px);
}

.blog-note span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-index {
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(168, 195, 160, 0.24), transparent 30%),
    linear-gradient(180deg, var(--warm-white), var(--cream));
}

.blog-articles {
  padding: 96px 0;
  background:
    radial-gradient(circle at 86% 8%, rgba(47, 96, 117, 0.14), transparent 28%),
    linear-gradient(180deg, var(--sage-50), var(--warm-white));
}

.blog-article-list {
  display: grid;
  gap: 28px;
}

.blog-post {
  max-width: 900px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(27, 74, 86, 0.12);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.98), rgba(243, 236, 226, 0.84));
  box-shadow: 0 22px 70px rgba(27, 74, 86, 0.08);
}

.blog-post:nth-child(2n) {
  justify-self: end;
  border-left-color: var(--nutri-sage);
}

.blog-post:nth-child(3n) {
  border-left-color: var(--green-700);
}

.blog-post h2 {
  max-width: 760px;
  color: var(--green-950);
  font-size: clamp(30px, 3.2vw, 42px);
}

.blog-post p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

@keyframes heroBreath {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.5%, 0.8%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .section-observe,
  .hero-media,
  .button,
  .site-header,
  .nav-links a::after {
    animation: none;
    transition: none;
  }
}

/* Home ADN: paleta azul, dorado y marfil con contraste reforzado */
.home-page {
  --green-975: #123b45;
  --green-950: #1b4a56;
  --green-800: #2f6570;
  --green-700: #56777d;
  --sage: #e5ded1;
  --nutri-sage: #ddd3c3;
  --sage-150: #eee8dd;
  --sage-100: #f4efe6;
  --sage-50: #faf7f1;
  --cream: #f2ecdf;
  --warm-white: #fcfaf5;
  --earth: #746759;
  --terracotta: #c8a35f;
  --rose: #dfc98f;
  --gold: #c8a35f;
  --ink: #26343a;
  --muted: #625f58;
  --line: rgba(27, 74, 86, .18);
  background: #fcfaf5;
  color: #26343a;
}

.home-page :is(h1, h2, h3, h4, h5, h6) {
  color: #1b4a56;
}

.home-page :is(p, li, label, summary) {
  color: #26343a;
}

.home-page :is(.button-primary, .nav-cta, .floating-whatsapp) {
  background: #1b4a56;
  color: #fcfaf5;
}

.home-page :is(.button-primary, .nav-cta, .floating-whatsapp):hover {
  background: #c8a35f;
  color: #1b4a56;
}

.home-page :is(.card, article, .faq details) {
  border-color: rgba(27, 74, 86, .16);
}

.reveal-item:not(.is-visible):hover {
  transform: translateY(20px);
  box-shadow: inherit;
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(27, 74, 86, 0.12);
    border-radius: var(--radius);
    background: var(--warm-white);
    color: var(--green-950);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 13px 10px;
    border-bottom: 1px solid rgba(27, 74, 86, 0.08);
  }

  .nav-icon {
    display: flex;
    justify-content: flex-start;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: var(--green-950);
    box-shadow: none;
  }

  .nav-icon span {
    display: inline;
    margin-left: 9px;
  }

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

  .nav-cta {
    margin-top: 8px;
    background: var(--green-950);
    color: var(--warm-white);
    text-align: center;
  }

  .cards.three,
  .quote-grid,
  .blog-hero-grid,
  .visual-story-grid,
  .visual-collage,
  .founders,
  .formation-track-grid,
  .formation-grid,
  .formation-details,
  .bio-training,
  .team-mini-grid,
  .profile-grid,
  .event-grid,
  .approach-grid,
  .symbol-grid,
  .agenda-header,
  .agenda-grid,
  .constellation-grid,
  .experience-grid,
  .experience-cards,
  .courses-head,
  .course-library,
  .clinic-story,
  .media-grid,
  .network-grid,
  .appointments-grid,
  .appointment-options,
  .sessions-grid,
  .community-inner,
  .resource-grid,
  .resource-library,
  .contact-grid,
  .two-col,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    display: block;
  }

  .hero-emblem {
    max-width: 360px;
  }

  .image-panel,
  .image-panel img {
    min-height: 430px;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-shell {
    width: min(100% - 24px, 1240px);
    height: 70px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    inset: 70px 12px auto 12px;
  }

  .hero {
    min-height: auto;
    align-items: flex-end;
  }

  .hero-media {
    background-position: center 30%;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(27, 74, 86, 0.94), rgba(27, 74, 86, 0.56) 58%, rgba(27, 74, 86, 0.26)),
      linear-gradient(90deg, rgba(27, 74, 86, 0.82), rgba(27, 74, 86, 0.18));
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    margin: 0 auto;
    padding: 122px 0 48px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-school {
    margin-inline: auto;
  }

  .hero h1,
  .hero-copy {
    margin-inline: auto;
  }

  .hero h1::after {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-emblem {
    display: none;
  }

  h1 {
    font-size: clamp(34px, 9vw, 44px);
  }

  h2 {
    font-size: clamp(30px, 8.4vw, 39px);
  }

  h3 {
    font-size: 23px;
  }

  .hero-copy,
  .text-flow,
  .section-heading p:not(.eyebrow),
  .formation-copy p:not(.eyebrow),
  .approach-content p:not(.eyebrow),
  .resource-copy p:not(.eyebrow),
  .community-inner p:not(.eyebrow),
  .contact-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .intro-band,
  .quote-strip,
  .symbol-section,
  .visual-story,
  .pathways,
  .agenda-section,
  .constellation-method,
  .experience,
  .workshops,
  .courses,
  .multimedia,
  .media-network,
  .about,
  .individual-sessions,
  .resources,
  .appointments,
  .blog,
  .testimonials,
  .faq,
  .contact,
  .profile-hero,
  .profile-topics,
  .clinic-invitation,
  .clinic-signals,
  .clinic-method,
  .event-hero,
  .formation,
  .community,
  .approach {
    padding: 68px 0;
  }

  .symbol-mark {
    min-height: auto;
    padding: 8px 0;
  }

  .symbol-mark img {
    width: min(158px, 42vw);
  }

  .visual-collage img,
  .visual-collage img.large {
    height: 280px;
  }

  .symbol-mark::before {
    width: 178px;
    height: 178px;
  }

  .constellation-steps article {
    grid-template-columns: 42px 1fr;
  }

  .constellation-steps article p {
    grid-column: 1 / -1;
  }

  .constellation-map {
    min-height: 420px;
  }

  .constellation-map .ring {
    inset: 54px;
  }

  .node {
    min-width: 68px;
    min-height: 68px;
    font-size: 12px;
  }

  .node.main {
    min-width: 86px;
    min-height: 86px;
    font-size: 19px;
  }

  .feature-card {
    min-height: auto;
  }

  .quote-grid p,
  .experience-cards article,
  .team-mini-grid article,
  .testimonial-grid figure {
    min-height: auto;
  }

  .offer-card div {
    min-height: auto;
  }

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

  .founder-photo {
    width: 100%;
    min-height: 340px;
    aspect-ratio: 4 / 5;
  }

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

  .session-photo {
    width: 100%;
    min-height: 340px;
    aspect-ratio: 4 / 5;
  }

  .profile-photo {
    min-height: 430px;
  }

  .ebook-mockup {
    min-height: 360px;
    padding: 28px;
  }

  .ebook-mockup h3 {
    font-size: 31px;
  }

  .appointment-options article.wide {
    grid-template-columns: 1fr;
  }

  .team-mini-grid article {
    grid-template-columns: 82px 1fr;
  }

  .bio-training {
    padding: 22px 18px;
  }

  .bio-training-panel {
    padding: 20px 16px;
  }

  .team-photo {
    width: 82px;
    height: 104px;
  }

  .footer-inner {
    align-items: center;
    flex-direction: column;
  }

  .footer-partner-logo {
    width: 48px;
    height: 48px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

/* Revisión integral Home: escala coherente, contenido visible y contraste AA */
.home-page main > .section-observe,
.home-page main > .section-observe .reveal-item {
  opacity: 1 !important;
  transform: none !important;
}

.home-page :is(
  .intro-band,
  .visual-story,
  .symbol-section,
  .professional-network,
  .about,
  .appointments,
  .resources,
  .testimonials,
  .faq,
  .contact
) {
  padding: clamp(44px, 5.5vw, 68px) 0 !important;
}

.home-page :is(
  .intro-band,
  .visual-story,
  .symbol-section,
  .professional-network,
  .about,
  .appointments,
  .resources,
  .testimonials,
  .faq
) h2 {
  font-size: clamp(27px, 3vw, 40px) !important;
  line-height: 1.05 !important;
}

.home-page .section-heading,
.home-page .resource-copy {
  margin-bottom: 24px;
}

.home-page :is(
  .intro-map,
  .visual-story-grid,
  .network-grid,
  .founders,
  .appointment-options,
  .resource-library,
  .testimonial-grid,
  .faq-card-grid
) {
  gap: clamp(10px, 1.5vw, 16px) !important;
}

.home-page :is(
  .feature-card,
  .network-card,
  .founder-card,
  .appointment-card,
  .resource-card,
  .testimonial-card,
  .faq-card
) {
  min-height: 0 !important;
}

.home-page :is(
  .feature-card,
  .network-card,
  .resource-card,
  .faq-card
) {
  padding: clamp(16px, 1.8vw, 22px) !important;
}

.home-page :is(
  .network-card,
  .resource-card,
  .faq-card
) h3 {
  font-size: clamp(19px, 1.8vw, 24px) !important;
  line-height: 1.08 !important;
}

.home-page :is(
  .network-card,
  .resource-card,
  .faq-card
) p {
  color: #4e5659 !important;
  font-size: clamp(13px, 0.95vw, 14px) !important;
  line-height: 1.45 !important;
}

/* Sesiones: tarjetas más bajas y texto claramente legible */
.home-page .appointments-grid {
  gap: clamp(22px, 3vw, 38px) !important;
}

.home-page .appointments-copy {
  gap: 10px !important;
}

.home-page .appointments-copy h2 {
  max-width: 560px;
  font-size: clamp(28px, 2.8vw, 40px) !important;
}

.home-page .appointments-copy p:not(.eyebrow) {
  font-size: clamp(14px, 1vw, 16px) !important;
  line-height: 1.48 !important;
}

.home-page .appointments-copy .ethical-note {
  margin-top: 4px;
  padding: 11px 13px !important;
  font-size: 12.5px !important;
}

.home-page .appointment-options {
  gap: 10px !important;
  padding-top: 0;
}

.home-page .appointment-options .appointment-card {
  padding: clamp(15px, 1.7vw, 20px) !important;
  gap: 10px !important;
}

.home-page .appointment-options .appointment-head {
  min-height: 0 !important;
  grid-template-columns: 58px minmax(0, 1fr) !important;
  gap: 12px !important;
}

.home-page .appointment-options .appointment-head > div {
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column;
  gap: 5px;
}

.home-page .appointment-options .appointment-avatar {
  width: 58px !important;
  height: 58px !important;
}

.home-page .appointment-options .appointment-head h3 {
  font-size: clamp(21px, 2vw, 28px) !important;
  color: #173f49 !important;
}

.home-page .appointment-options .appointment-instagram {
  margin-top: 0 !important;
  color: #1b4a56 !important;
  font-size: 12px !important;
}

.home-page .appointment-body {
  display: grid;
  gap: 7px;
}

.home-page .appointment-body p {
  margin: 0 !important;
  color: #424b4e !important;
  font-size: 13px !important;
  line-height: 1.42 !important;
}

.home-page .appointment-options .button {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 12.5px;
}

/* Tienda: jerarquía más corta, clara y luminosa */
.home-page .shop {
  padding: clamp(40px, 5vw, 60px) max(14px, calc((100% - 1180px) / 2)) !important;
}

.home-page .shop-shell {
  gap: 14px;
}

.home-page .shop-copy h2 {
  max-width: 680px;
  font-size: clamp(28px, 3.2vw, 44px) !important;
  line-height: 1.02 !important;
}

.home-page .shop-copy p:not(.eyebrow) {
  color: #4e5659 !important;
  font-size: clamp(14px, 1vw, 16px) !important;
  line-height: 1.48 !important;
}

.home-page .shop-actions {
  margin-top: 14px;
}

.home-page .shop-actions .button {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 12.5px;
}

.home-page .shop-note {
  min-height: 0;
  padding: clamp(16px, 2vw, 22px);
}

.home-page .shop-note span {
  margin-bottom: 8px;
}

.home-page .shop-note h3 {
  color: #fffaf0 !important;
  font-size: clamp(21px, 2vw, 28px) !important;
  line-height: 1.06;
}

.home-page .shop-note p {
  margin-top: 8px;
  color: #f8f2e8 !important;
  font-size: 13px;
  line-height: 1.45;
}

.home-page .shop-grid {
  gap: 10px;
  margin-top: 12px;
}

.home-page .shop-card {
  min-height: 142px;
  padding: 17px;
}

.home-page .shop-number {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
}

.home-page .shop-card h3 {
  color: #26343a !important;
  font-size: clamp(20px, 1.8vw, 25px) !important;
}

.home-page .shop-card p {
  margin-top: 7px;
  color: #4e5659 !important;
  font-size: 13px;
  line-height: 1.42;
}

/* Equipo, recursos, testimonios y FAQ: reducir altura acumulada */
.home-page .founder-card {
  gap: 14px !important;
  padding: 16px !important;
}

.home-page .founder-card h3 {
  font-size: clamp(22px, 2vw, 27px) !important;
}

.home-page .founder-card p {
  color: #4e5659 !important;
  font-size: 13px !important;
  line-height: 1.42 !important;
}

.home-page .resource-card h3 {
  font-size: clamp(19px, 1.65vw, 23px) !important;
}

.home-page .testimonial-grid figure {
  min-height: 0 !important;
  padding: 18px !important;
}

.home-page .testimonial-grid blockquote {
  color: #173f49 !important;
  font-size: clamp(18px, 1.7vw, 23px) !important;
  line-height: 1.18 !important;
}

.home-page .testimonial-grid figcaption {
  margin-top: 14px;
}

.home-page .faq-card {
  min-height: 0 !important;
}

@media (max-width: 760px) {
  .home-page :is(
    .intro-band,
    .visual-story,
    .symbol-section,
    .professional-network,
    .about,
    .appointments,
    .resources,
    .testimonials,
    .faq,
    .contact
  ) {
    padding: 38px 0 !important;
  }

  .home-page .appointments-copy h2,
  .home-page .shop-copy h2 {
    font-size: 28px !important;
  }

  .home-page .shop-note {
    border-radius: 20px;
  }

  .home-page .shop-grid {
    grid-template-columns: 1fr;
  }

  .home-page .shop-card {
    min-height: 0;
  }

  .home-page .founder-photo {
    min-height: 230px !important;
  }
}

@media (max-width: 440px) {
  .button,
  .hero-actions,
  .button-row {
    width: 100%;
  }

  .team-mini-grid article {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
  }

  .button {
    min-height: 50px;
  }

  .program-panel,
  .contact-form {
    padding: 20px;
  }
}

/* ADN visual identity pass: azul ADN, dorado elegante, marfil y aire editorial */
body {
  background:
    radial-gradient(circle at 8% 0%, rgba(195, 161, 95, 0.1), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #f8f1e7 48%, #fffaf2 100%);
}

.site-header {
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(27, 74, 86, 0.08);
  box-shadow: 0 16px 42px rgba(27, 74, 86, 0.09);
}

.site-header.is-scrolled,
.site-header.always-scrolled {
  background: rgba(255, 250, 242, 0.98);
}

.brand strong,
h1,
h2,
h3,
.quote-strip p,
.metric strong,
.resource-title,
.ebook-mockup h3,
.thanks-panel h1 {
  font-family: "Cardo", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

body,
.nav-links,
.button,
input,
select,
textarea {
  font-family: "Poppins", system-ui, sans-serif;
}

.nav-links {
  background: rgba(255, 250, 242, 0.78);
  border-color: rgba(27, 74, 86, 0.13);
  box-shadow: 0 10px 26px rgba(27, 74, 86, 0.06);
}

.nav-links a:not(.nav-cta):hover {
  background: rgba(195, 161, 95, 0.13);
  color: var(--green-950);
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: var(--warm-white);
  box-shadow: 0 18px 36px rgba(27, 74, 86, 0.18);
}

.button-accent,
.button-gold {
  background: linear-gradient(135deg, #d0b16e, var(--gold));
  color: #173942;
  box-shadow: 0 16px 34px rgba(195, 161, 95, 0.22);
}

.button-outline {
  border-color: rgba(27, 74, 86, 0.24);
  color: var(--green-950);
  background: rgba(255, 250, 242, 0.7);
}

.hero,
.event-hero {
  background: var(--green-950);
}

.hero-overlay {
  background:
    linear-gradient(0deg, rgba(18, 50, 58, 0.92), rgba(27, 74, 86, 0.58) 58%, rgba(27, 74, 86, 0.18)),
    linear-gradient(90deg, rgba(18, 50, 58, 0.82), rgba(18, 50, 58, 0.12));
}

.hero h1::after,
.section-heading h2::after,
.formation-copy h2::after,
.contact-copy h2::after {
  background: linear-gradient(90deg, var(--gold), rgba(195, 161, 95, 0.15));
}

.intro-band,
.symbol-section,
.formation,
.courses,
.resources,
.blog,
.profile-topics,
.clinic-signals,
.thanks-page {
  background:
    radial-gradient(circle at 100% 0%, rgba(195, 161, 95, 0.12), transparent 26%),
    linear-gradient(180deg, var(--warm-white), var(--cream));
}

.approach,
.pathways,
.workshops,
.individual-sessions,
.appointments,
.faq,
.clinic-method,
.profile-hero {
  background:
    radial-gradient(circle at 0% 0%, rgba(79, 127, 135, 0.12), transparent 28%),
    linear-gradient(180deg, var(--sage-50), var(--warm-white));
}

.quote-strip,
.visual-story,
.experience,
.multimedia,
.media-network,
.community,
.contact {
  background:
    linear-gradient(135deg, rgba(27, 74, 86, 0.98), rgba(18, 50, 58, 0.96)),
    var(--green-950);
  color: var(--warm-white);
}

.contact,
.contact a,
.contact h2,
.contact p,
.contact label {
  color: var(--warm-white);
}

.contact .contact-copy p,
.contact .section-heading p {
  color: rgba(255, 250, 242, 0.82) !important;
}

.contact-form,
.login-modal,
.thanks-panel,
.feature-card,
.offer-card,
.program-panel,
.resource-card,
.blog-card,
.session-card,
.team-mini-grid article,
.testimonial-grid figure,
.faq-item,
.appointment-options article,
.profile-card,
.clinic-card,
.pathway-card {
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(27, 74, 86, 0.13);
  box-shadow: 0 24px 70px rgba(27, 74, 86, 0.1);
}

.contact-form {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.95);
  border-color: rgba(195, 161, 95, 0.24);
}

.contact-form label,
.contact-form .form-note {
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fffdf8;
  border-color: rgba(27, 74, 86, 0.18);
}

.eyebrow,
.eyebrow.dark,
.role-label,
.program-panel h3,
.resource-meta,
.blog-meta {
  color: var(--green-800);
  letter-spacing: 0.08em;
}

.eyebrow.gold,
.quote-strip .eyebrow,
.community .eyebrow,
.contact .eyebrow {
  color: var(--gold);
}

.footer {
  background: #12323a;
  color: rgba(255, 250, 242, 0.9);
}

.whatsapp-float {
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  box-shadow: 0 18px 38px rgba(27, 74, 86, 0.25);
}

/* Contrast QA: keep every dark editorial section readable after the identity pass */
.quote-strip,
.visual-story,
.experience,
.multimedia,
.media-network,
.community {
  color: var(--warm-white);
}

.quote-strip h2,
.quote-strip h3,
.quote-strip p,
.visual-story h2,
.visual-story h3,
.visual-story p,
.experience h2,
.experience h3,
.multimedia h2,
.multimedia h3,
.multimedia p,
.media-network h2,
.media-network h3,
.media-network p,
.community h2,
.community h3,
.community p {
  color: var(--warm-white);
}

.visual-story p:not(.eyebrow),
.experience .section-heading p:not(.eyebrow),
.multimedia .section-heading p:not(.eyebrow),
.media-network .section-heading p:not(.eyebrow),
.media-network .network-copy p:not(.eyebrow),
.community-inner p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.84) !important;
}

.experience-cards article,
.media-network .network-card,
.community-card,
.community-inner article {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
}

.experience-cards article h3,
.media-network .network-card h3,
.community-card h3,
.community-inner article h3 {
  color: var(--green-950);
}

.experience-cards article p,
.media-network .network-card p,
.community-card p,
.community-inner article p {
  color: var(--muted) !important;
}

.media-network .button-outline,
.community .button-outline,
.visual-story .button-outline,
.experience .button-outline,
.multimedia .button-outline {
  border-color: rgba(255, 250, 242, 0.55);
  color: var(--warm-white);
  background: rgba(255, 250, 242, 0.08);
}

.media-network .button-primary,
.community .button-primary,
.visual-story .button-primary,
.experience .button-primary,
.multimedia .button-primary {
  background: linear-gradient(135deg, #f1dfb8, var(--gold));
  color: var(--green-950);
}

.formation,
.formation h2,
.formation h3 {
  color: var(--green-950);
}

.formation p:not(.eyebrow),
.formation li {
  color: var(--muted);
}

.formation .bio-training {
  color: var(--warm-white);
}

.formation .bio-training h3,
.formation .bio-training p,
.formation .bio-training li {
  color: var(--warm-white);
}

.formation .bio-training p,
.formation .bio-training li {
  color: rgba(255, 250, 242, 0.86);
}

.formation .bio-training-panel {
  background: rgba(255, 250, 242, 0.1);
  border-color: rgba(255, 250, 242, 0.22);
}

/* Final contrast fixes for cards placed on dark sections */
.media-cards article,
.membership-tiers article,
.network-panel,
.network-manifest {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.94);
}

.media-cards article h3,
.membership-tiers article h3,
.network-panel h3,
.network-manifest h3,
.network-kicker {
  color: var(--green-950) !important;
}

.media-cards article p,
.membership-tiers article p,
.network-panel p,
.network-manifest p,
.network-manifest li {
  color: var(--muted) !important;
}

.media-cards article svg,
.network-panel svg,
.network-manifest svg {
  color: var(--green-800);
}

.media-network .network-intro p:not(.eyebrow),
.media-network .network-intro h2,
.media-network .network-intro .eyebrow {
  color: var(--warm-white) !important;
}

.media-network .network-intro p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.84) !important;
}

.multimedia .media-grid > div:first-child .eyebrow,
.media-network .network-intro .eyebrow {
  color: var(--gold) !important;
}

.multimedia .media-grid > div:first-child p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.84) !important;
}

/* Formaciones + sesiones: lectura clara, dos recorridos visibles y más vida de marca */
.formation {
  color: var(--green-950);
  background:
    radial-gradient(circle at 8% 8%, rgba(195, 161, 95, 0.16), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(168, 195, 160, 0.26), transparent 30%),
    linear-gradient(180deg, #fffaf2 0%, #f3ece2 52%, #fffaf2 100%);
}

.formation .eyebrow.gold {
  color: var(--gold) !important;
}

.formation-intro h2,
.formation-copy h2,
.training-team h3 {
  color: var(--green-950) !important;
}

.formation-intro > p:not(.eyebrow),
.formation-copy p:not(.eyebrow),
.training-team p {
  color: var(--muted) !important;
}

.formation-track-grid {
  gap: 22px;
}

.formation-track {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(27, 74, 86, 0.14);
  color: var(--green-950);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(243, 236, 226, 0.9));
  box-shadow: 0 24px 70px rgba(27, 74, 86, 0.1);
}

.formation-track::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--green-950), var(--gold));
}

.formation-track.active {
  color: var(--warm-white);
  border-color: rgba(27, 74, 86, 0.18);
  background:
    radial-gradient(circle at 88% 10%, rgba(195, 161, 95, 0.2), transparent 30%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}

.formation-track:nth-child(2)::before {
  background: linear-gradient(90deg, var(--gold), var(--nutri-sage));
}

.formation-track:nth-child(2) {
  background:
    radial-gradient(circle at 88% 10%, rgba(168, 195, 160, 0.28), transparent 30%),
    linear-gradient(135deg, #fffaf2, #efe5d5);
}

.formation-track h3 {
  color: var(--green-950) !important;
}

.formation-track.active h3 {
  color: var(--warm-white) !important;
}

.formation-track p {
  color: var(--muted) !important;
}

.formation-track.active p {
  color: rgba(255, 250, 242, 0.86) !important;
}

.formation-track a {
  justify-self: start;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(195, 161, 95, 0.18);
}

.formation-track.active a {
  color: var(--green-950);
  background: var(--gold);
}

.formation-grid {
  margin-top: 42px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(27, 74, 86, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(243, 236, 226, 0.82));
  box-shadow: 0 24px 70px rgba(27, 74, 86, 0.1);
}

.formation-grid .bio-training-panel,
.bio-training .bio-training-panel {
  color: var(--ink);
  border: 1px solid rgba(27, 74, 86, 0.14);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 18px 48px rgba(27, 74, 86, 0.08);
}

.formation-grid .bio-training-panel span,
.bio-training .bio-training-panel span {
  color: var(--gold) !important;
}

.formation-grid .bio-training-panel li,
.bio-training .bio-training-panel li {
  color: var(--muted) !important;
  font-size: 15px;
  line-height: 1.55;
}

.bio-training {
  color: var(--warm-white);
  border: 1px solid rgba(27, 74, 86, 0.14);
  background:
    radial-gradient(circle at 12% 14%, rgba(195, 161, 95, 0.22), transparent 30%),
    linear-gradient(135deg, var(--green-950), #2c6570);
  box-shadow: 0 26px 76px rgba(27, 74, 86, 0.16);
}

.bio-training h3 {
  color: var(--warm-white) !important;
}

.bio-training > div:first-child p {
  color: rgba(255, 250, 242, 0.86) !important;
}

.bio-training-panel ul {
  font-size: 15px !important;
  line-height: 1.55;
}

.formation .button-accent,
.formation .button-outline.light {
  min-height: 48px;
}

.formation .button-outline.light {
  border: 1px solid rgba(27, 74, 86, 0.26);
  color: var(--green-950);
  background: #fffaf2;
}

.formation .button-outline.light:hover {
  background: rgba(195, 161, 95, 0.18);
}

.appointments {
  color: var(--green-950);
  background:
    radial-gradient(circle at 14% 10%, rgba(216, 167, 177, 0.16), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(168, 195, 160, 0.24), transparent 30%),
    linear-gradient(180deg, #fffaf2, #f3ece2);
}

.appointments-copy h2,
.appointment-options h3 {
  color: var(--green-950) !important;
}

.appointments-copy p:not(.eyebrow),
.appointment-options p {
  color: #5f5a52 !important;
}

.appointments .eyebrow.gold {
  color: var(--gold) !important;
}

.appointments-copy h2 {
  color: var(--green-950) !important;
  text-shadow: none;
}

.appointments-copy .ethical-note {
  color: #6d6259 !important;
  background: rgba(255, 250, 242, 0.66);
  border-left: 4px solid var(--gold);
  padding: 14px 16px;
  border-radius: var(--radius);
}

.appointment-options article {
  border: 1px solid rgba(27, 74, 86, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(243, 236, 226, 0.86));
  box-shadow: 0 22px 64px rgba(27, 74, 86, 0.1);
}

.appointment-options article:nth-child(2) {
  border-color: rgba(216, 167, 177, 0.28);
  background:
    radial-gradient(circle at 88% 10%, rgba(168, 195, 160, 0.2), transparent 30%),
    linear-gradient(135deg, #fffaf2, #f1e5df);
}

.appointment-options .button-outline.light {
  border-color: transparent;
  color: var(--warm-white);
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
}

.appointment-options article:nth-child(2) .button-outline.light {
  background: linear-gradient(135deg, var(--gold), #d9a78c);
  color: var(--green-950);
}

/* Red y comunidad: los rectángulos claros siempre llevan texto oscuro */
.media-network .network-panel.network-manifest,
.media-network .network-panel.network-manifest *,
.community .membership-tiers article,
.community .membership-tiers article * {
  color: var(--ink) !important;
}

.media-network .network-panel.network-manifest,
.community .membership-tiers article {
  background: rgba(255, 250, 242, 0.96) !important;
  border-color: rgba(27, 74, 86, 0.14) !important;
}

.media-network .network-panel.network-manifest h3,
.media-network .network-panel.network-manifest .network-kicker,
.community .membership-tiers h3 {
  color: var(--green-950) !important;
}

.media-network .network-panel.network-manifest p,
.media-network .network-panel.network-manifest li,
.community .membership-tiers p {
  color: var(--muted) !important;
}

/* Contacto: cierre limpio, legible y más premium */
.contact {
  color: var(--warm-white);
  background:
    radial-gradient(circle at 12% 18%, rgba(195, 161, 95, 0.16), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(168, 195, 160, 0.12), transparent 26%),
    linear-gradient(135deg, #12323a, var(--green-950));
}

.contact .eyebrow.gold {
  color: var(--gold) !important;
}

.contact h2 {
  color: var(--warm-white) !important;
  max-width: 900px;
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 0.98;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.82) !important;
  max-width: 760px;
  font-size: clamp(18px, 1.7vw, 23px);
}

.contact-options {
  gap: 14px;
}

.contact-options a {
  width: fit-content;
  max-width: 100%;
  padding: 13px 18px;
  border: 1px solid rgba(255, 250, 242, 0.3);
  border-radius: 999px;
  color: var(--green-950) !important;
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(243, 236, 226, 0.88));
  box-shadow: 0 12px 30px rgba(18, 50, 58, 0.18);
}

.contact-options a svg {
  color: var(--green-800) !important;
}

.contact-form {
  padding: clamp(24px, 3vw, 42px);
  color: var(--ink);
  border: 1px solid rgba(195, 161, 95, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(195, 161, 95, 0.12), transparent 26%),
    linear-gradient(180deg, #fffaf2, #f3ece2);
  box-shadow: 0 28px 80px rgba(18, 50, 58, 0.24);
}

.contact-form label {
  color: var(--ink) !important;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--ink);
  border: 1px solid rgba(27, 74, 86, 0.18);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(38, 43, 42, 0.54);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(195, 161, 95, 0.16);
}

.contact-form .button-accent {
  color: var(--warm-white);
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
}

.contact-form .form-note {
  color: var(--muted) !important;
}

.community .membership-tiers article,
.community .membership-tiers article h3,
.community .membership-tiers article p {
  opacity: 1 !important;
}

.community .membership-tiers article h3 {
  color: var(--green-950) !important;
}

.community .membership-tiers article p {
  color: #5f5a52 !important;
}

/* Sesiones: Instagram visible sobre tarjetas claras */
.appointment-options .appointment-instagram,
.appointment-options .appointment-instagram svg {
  color: var(--green-800) !important;
}

.appointment-options .appointment-instagram {
  font-weight: 700;
}

.appointment-options .appointment-instagram:hover,
.appointment-options article:nth-child(2) .appointment-instagram:hover {
  color: var(--gold) !important;
}

/* Sesiones: perfiles alineados y diferenciados por color */
.appointment-options .appointment-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  gap: 22px;
}

.appointment-options .appointment-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.appointment-card-gisel::before {
  background: linear-gradient(90deg, var(--green-950), var(--green-800));
}

.appointment-card-cecilia::before {
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
}

.appointment-card-gisel {
  border-color: rgba(27, 74, 86, 0.18) !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(27, 74, 86, 0.08), transparent 28%),
    linear-gradient(135deg, #fffaf2, #f3ece2) !important;
}

.appointment-card-cecilia {
  border-color: rgba(217, 167, 140, 0.34) !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(217, 167, 140, 0.18), transparent 28%),
    linear-gradient(135deg, #fffaf2, #f4e7dc) !important;
}

.appointment-options .appointment-head {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  min-height: 106px;
  gap: 20px;
}

.appointment-options .appointment-head > div {
  min-height: 88px;
  display: grid;
  align-content: end;
}

.appointment-options .appointment-avatar {
  width: 88px;
  height: 88px;
  box-shadow: 0 0 0 6px rgba(255, 250, 242, 0.72), 0 14px 34px rgba(27, 74, 86, 0.16);
}

.appointment-options .appointment-head h3 {
  min-height: 2.1em;
  display: flex;
  align-items: flex-end;
  margin: 0;
  color: var(--green-950) !important;
  line-height: 1.02;
}

.appointment-card-gisel .appointment-head h3 {
  color: var(--green-950) !important;
}

.appointment-card-cecilia .appointment-head h3 {
  color: #9b6549 !important;
}

.appointment-options .appointment-instagram {
  margin-top: 10px;
  color: var(--green-800) !important;
}

.appointment-card-cecilia .appointment-instagram,
.appointment-card-cecilia .appointment-instagram svg {
  color: #9c7650 !important;
}

.appointment-options .appointment-card > p {
  margin: 0;
}

.appointment-card-gisel .button-outline.light {
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: var(--warm-white);
}

.appointment-card-cecilia .button-outline.light {
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  color: var(--green-950);
}

/* Inscripciones: cierre compacto, legible y con más vida */
.contact {
  padding: clamp(58px, 7vw, 88px) 0 !important;
  color: var(--warm-white);
  background:
    radial-gradient(circle at 12% 18%, rgba(195, 161, 95, 0.18), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(168, 195, 160, 0.16), transparent 28%),
    linear-gradient(135deg, #153942 0%, var(--green-950) 58%, #12313a 100%) !important;
}

.contact-grid {
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 0.68fr) !important;
  gap: clamp(28px, 4vw, 54px) !important;
  align-items: center !important;
}

.contact-copy {
  gap: 16px !important;
}

.contact h2 {
  max-width: 620px !important;
  font-size: clamp(42px, 5vw, 68px) !important;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px !important;
  font-size: clamp(17px, 1.45vw, 21px) !important;
  line-height: 1.55 !important;
}

.contact-options {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px !important;
  margin-top: 10px !important;
}

.contact-options a {
  min-height: 42px;
  padding: 10px 14px !important;
  color: var(--green-950) !important;
  font-size: 14px !important;
  line-height: 1.1;
  background: var(--warm-white) !important;
  box-shadow: 0 10px 26px rgba(18, 50, 58, 0.16) !important;
}

.contact-options a:nth-child(1) {
  background: linear-gradient(135deg, var(--warm-white), var(--sage-150)) !important;
}

.contact-options a:nth-child(2) {
  background: linear-gradient(135deg, #e8f0e4, #a8c3a0) !important;
}

.contact-options a:nth-child(3) {
  background: linear-gradient(135deg, #fff3e4, #d9a78c) !important;
}

.contact-options a:nth-child(4) {
  background: linear-gradient(135deg, #fff8e8, var(--gold)) !important;
}

.contact-form {
  padding: clamp(20px, 2.5vw, 30px) !important;
  border-radius: calc(var(--radius) + 4px);
}

.contact-form label {
  gap: 8px;
  font-size: 14px !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
  padding: 12px 14px;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 118px;
}

.contact-form .button-accent {
  min-height: 50px;
  padding: 13px 18px;
}

.contact-form .form-note {
  font-size: 13px;
}

/* Blog: lectura editorial con recurso visual */
.blog-post-featured {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  border-left-color: var(--green-800);
  background:
    radial-gradient(circle at 92% 8%, rgba(195, 161, 95, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(243, 236, 226, 0.9));
}

.blog-visual {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(27, 74, 86, 0.12);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: 0 18px 54px rgba(27, 74, 86, 0.12);
}

.blog-visual img {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius) - 6px);
}

.blog-index .article-card:nth-child(1) {
  border-top-color: var(--green-800);
}

.blog-index .article-card:nth-child(2) {
  border-top-color: var(--terracotta);
  background: linear-gradient(180deg, #fffaf2, #f4e7dc);
}

.blog-index .article-card:nth-child(3) {
  border-top-color: var(--gold);
}

.blog-index .article-card:nth-child(4) {
  border-top-color: var(--nutri-blue);
  background: linear-gradient(180deg, #fffaf2, #eaf1ef);
}

.blog-index .article-card:nth-child(5) {
  border-top-color: var(--nutri-sage);
}

.blog-index .article-card:nth-child(6) {
  border-top-color: var(--green-950);
}

@media (max-width: 900px) {
  .blog-post-featured {
    grid-template-columns: 1fr;
  }
}

/* Prueba local: hero escuela editorial */
.hero {
  min-height: min(82vh, 720px) !important;
  padding-top: 92px;
  color: var(--green-950);
  background:
    radial-gradient(circle at 6% 18%, rgba(195, 161, 95, 0.14), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(27, 74, 86, 0.18), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(168, 195, 160, 0.18), transparent 28%),
    linear-gradient(135deg, #fffaf2 0%, #f3ece2 48%, #dfecef 100%) !important;
}

.hero-media {
  inset: 112px 34px 38px auto !important;
  width: min(47vw, 700px) !important;
  border-radius: 30px !important;
  background-position: center 44% !important;
  filter: saturate(1.02) contrast(1.02) !important;
  transform: none !important;
  animation: none !important;
  box-shadow: 0 26px 76px rgba(27, 74, 86, 0.24) !important;
}

.hero-overlay {
  inset: 112px 34px 38px auto !important;
  width: min(47vw, 700px) !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 80% 20%, rgba(195, 161, 95, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(27, 74, 86, 0.04), rgba(27, 74, 86, 0.46)),
    linear-gradient(90deg, rgba(255, 250, 242, 0.18), rgba(27, 74, 86, 0.12)) !important;
}

.hero-constellation-tree {
  position: absolute;
  right: clamp(58px, 7vw, 118px);
  top: 152px;
  z-index: 2;
  width: min(29vw, 390px);
  height: min(50vh, 430px);
  pointer-events: none;
  opacity: 0.92;
  filter: drop-shadow(0 18px 34px rgba(6, 22, 26, 0.22));
}

.tree-line {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 2px;
  height: 118px;
  border-radius: 999px;
  transform-origin: 50% 100%;
  background: linear-gradient(180deg, rgba(247, 244, 238, 0.08), rgba(200, 163, 95, 0.86));
}

.tree-line.trunk {
  top: 46%;
  height: 152px;
  background: linear-gradient(180deg, rgba(247, 244, 238, 0.72), rgba(200, 163, 95, 0.92));
}

.tree-line.branch {
  top: 35%;
  height: 128px;
}

.tree-line.b1 {
  transform: translateX(-50%) rotate(-48deg);
}

.tree-line.b2 {
  transform: translateX(-50%) rotate(-25deg);
}

.tree-line.b3 {
  transform: translateX(-50%) rotate(25deg);
}

.tree-line.b4 {
  transform: translateX(-50%) rotate(48deg);
}

.tree-node {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(247, 244, 238, 0.88);
  border-radius: 50%;
  background: rgba(200, 163, 95, 0.92);
  box-shadow:
    0 0 0 8px rgba(27, 74, 86, 0.2),
    0 0 32px rgba(247, 244, 238, 0.42);
}

.tree-node.root {
  left: calc(50% - 7px);
  top: 82%;
  width: 18px;
  height: 18px;
  background: var(--green-950);
}

.tree-node.n1 { left: 16%; top: 28%; }
.tree-node.n2 { left: 34%; top: 16%; }
.tree-node.n3 { left: 49%; top: 8%; }
.tree-node.n4 { left: 64%; top: 16%; }
.tree-node.n5 { left: 82%; top: 28%; }
.tree-node.n6 {
  left: 48%;
  top: 34%;
  background: rgba(247, 244, 238, 0.92);
  border-color: rgba(200, 163, 95, 0.9);
}

.hero-constellation-tree::before {
  content: "";
  position: absolute;
  inset: 24% 11% 8%;
  border: 1px solid rgba(247, 244, 238, 0.2);
  border-top-color: rgba(200, 163, 95, 0.58);
  border-radius: 52% 48% 46% 54%;
  transform: rotate(-4deg);
}

.hero-constellation-tree::after {
  content: "raíces · vínculos · cuerpo";
  position: absolute;
  right: 0;
  bottom: 2px;
  padding: 7px 10px;
  border: 1px solid rgba(247, 244, 238, 0.22);
  border-radius: 999px;
  color: rgba(247, 244, 238, 0.9);
  background: rgba(27, 74, 86, 0.34);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero::before {
  inset: 104px auto 40px 28px;
  width: min(51vw, 760px);
  border: 1px solid rgba(27, 74, 86, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(rgba(27, 74, 86, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 74, 86, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 250, 242, 0.7), rgba(223, 236, 239, 0.42));
  background-size: 54px 54px;
  mask-image: none;
}

.hero-content {
  width: min(1180px, calc(100% - 56px)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.88fr);
  align-items: center;
  min-height: calc(min(82vh, 720px) - 92px);
  padding: 24px 0 30px !important;
}

.hero-text {
  max-width: 660px !important;
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid rgba(27, 74, 86, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.86), rgba(246, 241, 232, 0.78));
  box-shadow: 0 26px 80px rgba(27, 74, 86, 0.12);
  backdrop-filter: blur(14px);
}

.hero-school {
  margin-bottom: 14px !important;
  color: var(--green-950) !important;
  border-color: rgba(27, 74, 86, 0.18) !important;
  background: linear-gradient(135deg, rgba(223, 236, 239, 0.86), rgba(255, 250, 242, 0.74)) !important;
}

.hero h1 {
  max-width: 610px !important;
  color: var(--green-950) !important;
  font-size: clamp(42px, 4.65vw, 64px) !important;
  line-height: 0.98 !important;
  text-shadow: none !important;
}

.hero h1::after {
  width: min(170px, 38%) !important;
  height: 2px !important;
  margin-top: 16px !important;
  background: linear-gradient(90deg, var(--green-950), var(--gold), transparent) !important;
}

.hero-copy {
  max-width: 560px !important;
  color: #5f5a52 !important;
  font-size: clamp(16px, 1.25vw, 18px) !important;
  line-height: 1.55 !important;
}

.hero .button-primary {
  color: var(--warm-white) !important;
  background: linear-gradient(135deg, #12313a, var(--green-950)) !important;
}

.hero .button-ghost.light {
  color: var(--green-950) !important;
  border-color: rgba(27, 74, 86, 0.2) !important;
  background: rgba(255, 250, 242, 0.8) !important;
}

.hero-signature {
  margin-top: 18px;
  color: var(--green-950);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.hero-pillars a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(27, 74, 86, 0.12);
  border-radius: 18px;
  color: var(--green-950);
  background:
    linear-gradient(180deg, rgba(235, 245, 247, 0.95), rgba(255, 250, 242, 0.84));
  box-shadow: 0 16px 42px rgba(27, 74, 86, 0.08);
}

.hero-pillars a:nth-child(2) {
  background: linear-gradient(180deg, rgba(232, 240, 228, 0.96), rgba(255, 250, 242, 0.84));
}

.hero-pillars a:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 243, 228, 0.96), rgba(255, 250, 242, 0.84));
}

.hero-pillars span {
  grid-row: span 2;
  align-self: start;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 800;
}

.hero-pillars strong {
  font-family: "Cardo", Georgia, serif;
  font-size: 21px;
  line-height: 1;
}

.hero-pillars small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.28;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 86px;
  }

  .hero-media,
  .hero-overlay {
    inset: 86px 14px auto 14px !important;
    width: auto !important;
    height: 34vh;
    min-height: 240px;
  }

  .hero-constellation-tree {
    display: none;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(34vh + 22px) !important;
  }

  .hero-text {
    max-width: none !important;
  }

  .hero-pillars {
    grid-template-columns: 1fr;
  }

  .hero-signature {
    text-align: center;
  }
}

/* Prueba local: Sobre ADN como mapa de escuela */
.intro-band {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 82px) 0 !important;
  background:
    radial-gradient(circle at 12% 10%, rgba(195, 161, 95, 0.16), transparent 28%),
    radial-gradient(circle at 92% 22%, rgba(168, 195, 160, 0.25), transparent 30%),
    linear-gradient(135deg, #fffaf2, #f3ece2 52%, #eaf1ef) !important;
}

.intro-band::before {
  content: "ADN";
  position: absolute;
  right: -0.08em;
  top: -0.22em;
  color: rgba(27, 74, 86, 0.055);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(160px, 26vw, 430px);
  font-weight: 700;
  line-height: 1;
}

.intro-lab {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.intro-lead {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 18px;
}

.intro-lead h2 {
  max-width: 620px;
  color: var(--green-950);
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.98;
}

.intro-lead p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.58;
}

.intro-map {
  display: grid;
  gap: 14px;
}

.intro-map article {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(27, 74, 86, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.72));
  box-shadow: 0 18px 52px rgba(27, 74, 86, 0.08);
}

.intro-map article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(232, 240, 228, 0.98), rgba(255, 250, 242, 0.78));
}

.intro-map article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(255, 243, 228, 0.96), rgba(255, 250, 242, 0.78));
}

.intro-map span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--warm-white);
  background: var(--green-950);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(27, 74, 86, 0.18);
}

.intro-map article:nth-child(2) span {
  background: var(--green-800);
}

.intro-map article:nth-child(3) span {
  color: var(--green-950);
  background: var(--gold);
}

.intro-map h3 {
  color: var(--green-950);
  font-size: clamp(24px, 2.3vw, 32px);
}

.intro-map p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.intro-statement {
  grid-column: 2;
  display: grid;
  gap: 20px;
  margin-top: 4px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(195, 161, 95, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 18%, rgba(195, 161, 95, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(27, 74, 86, 0.98), rgba(27, 74, 86, 0.88));
  box-shadow: 0 24px 72px rgba(27, 74, 86, 0.16);
}

.intro-statement p {
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
}

.intro-statement blockquote {
  margin: 0;
  padding-left: 20px;
  border-left-color: var(--gold);
  color: var(--warm-white);
  font-size: clamp(28px, 3vw, 40px);
}

@media (max-width: 980px) {
  .intro-lab {
    grid-template-columns: 1fr;
  }

  .intro-lead {
    position: static;
  }

  .intro-statement {
    grid-column: auto;
  }

  .intro-map article {
    grid-template-columns: 54px 1fr;
  }

  .intro-map p {
    grid-column: 2;
  }
}

/* Prueba local: ordenar La Escuela */
.intro-lab {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
}

.intro-lead {
  position: relative !important;
  top: auto !important;
  max-width: 980px;
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  gap: clamp(18px, 3.4vw, 46px);
  align-items: end;
}

.intro-lead .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.intro-lead h2 {
  grid-column: 1;
  max-width: 720px !important;
  font-size: clamp(34px, 3.55vw, 49px) !important;
  line-height: 1.03 !important;
}

.intro-lead p:not(.eyebrow) {
  grid-column: 2;
  max-width: 520px !important;
  font-size: clamp(15px, 1.2vw, 17px) !important;
  line-height: 1.5 !important;
}

.intro-map {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.intro-map article {
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: start;
  min-height: 196px !important;
  gap: 11px !important;
  padding: 20px !important;
  border-radius: 22px !important;
}

.intro-map span {
  width: 38px !important;
  height: 38px !important;
  font-size: 12px;
}

.intro-map h3 {
  font-size: clamp(22px, 2.05vw, 29px) !important;
  line-height: 1.04;
}

.intro-map p {
  grid-column: auto !important;
  font-size: 14px !important;
  line-height: 1.46 !important;
}

.intro-statement {
  grid-column: auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.78fr);
  gap: clamp(16px, 2.6vw, 34px) !important;
  align-items: center;
  margin-top: 0 !important;
  padding: clamp(18px, 2.4vw, 27px) !important;
  border-radius: 22px !important;
}

.intro-statement blockquote {
  font-size: clamp(23px, 2.2vw, 31px) !important;
}

.intro-statement p {
  font-size: clamp(15px, 1.15vw, 17px) !important;
}

@media (max-width: 980px) {
  .intro-lead,
  .intro-statement {
    grid-template-columns: 1fr !important;
  }

  .intro-map {
    grid-template-columns: 1fr !important;
  }

  .intro-map article {
    min-height: auto !important;
  }
}

/* Prueba local: blog unificado en una sola portada */
.blog-hero {
  padding: 132px 0 70px !important;
  background:
    radial-gradient(circle at 84% 12%, rgba(195, 161, 95, 0.22), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(168, 195, 160, 0.16), transparent 32%),
    linear-gradient(135deg, #12313a, var(--green-950)) !important;
}

.blog-cover {
  display: grid;
  gap: 28px;
}

.blog-cover-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.blog-cover h1 {
  max-width: 880px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
  color: var(--warm-white);
}

.blog-cover-copy {
  max-width: 850px !important;
  margin-top: 0 !important;
  color: rgba(255, 250, 242, 0.82) !important;
  font-size: clamp(18px, 1.6vw, 23px) !important;
}

.blog-cover .blog-note {
  padding: 24px;
  border-color: rgba(255, 250, 242, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.13), rgba(223, 236, 239, 0.08));
}

.blog-cover-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(170px, 1fr));
  gap: 10px;
}

.blog-read-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-top: 4px solid var(--gold);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.95), rgba(243, 236, 226, 0.84));
  box-shadow: 0 18px 42px rgba(6, 22, 26, 0.16);
}

.blog-read-card:nth-child(1),
.blog-read-card:nth-child(6) {
  border-top-color: var(--green-800);
  background: linear-gradient(180deg, rgba(235, 245, 247, 0.96), rgba(255, 250, 242, 0.84));
}

.blog-read-card:nth-child(2),
.blog-read-card:nth-child(4) {
  border-top-color: var(--terracotta);
}

.blog-read-card:nth-child(5) {
  border-top-color: var(--nutri-sage);
  background: linear-gradient(180deg, rgba(232, 240, 228, 0.96), rgba(255, 250, 242, 0.84));
}

.blog-read-card p {
  color: var(--green-800);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-read-card h3 {
  color: var(--ink);
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.05;
}

.blog-read-card a {
  margin-top: auto;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1240px) {
  .blog-cover-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .blog-cover-intro {
    grid-template-columns: 1fr;
  }

  .blog-cover-list {
    grid-template-columns: 1fr;
  }
}

/* Prueba local: blog más compacto con cuadrados legibles */
.blog-hero {
  padding: 82px 0 22px !important;
}

.blog-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.38fr) !important;
  gap: clamp(20px, 3vw, 42px) !important;
}

.blog-hero h1 {
  max-width: 640px !important;
  font-size: clamp(29px, 3vw, 43px) !important;
  line-height: 1 !important;
}

.blog-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 12px;
  padding: 8px 15px;
  border: 1px solid rgba(195, 161, 95, 0.58);
  border-radius: 999px;
  color: #12313a;
  background: linear-gradient(135deg, #f1dfb8, var(--gold));
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(6, 22, 26, 0.18);
}

.blog-hero p:not(.eyebrow) {
  max-width: 620px !important;
  margin-top: 12px !important;
  font-size: clamp(13px, 0.95vw, 15px) !important;
  line-height: 1.42 !important;
}

.blog-note {
  padding: 16px !important;
  gap: 8px !important;
  border-radius: 14px !important;
}

.blog-note p {
  font-size: clamp(13px, 1vw, 16px) !important;
  line-height: 1.38 !important;
}

.blog-note span {
  font-size: 11px !important;
}

.blog-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.blog-topic-list li {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.9);
  background: rgba(255, 250, 242, 0.08);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 600;
  line-height: 1;
}

.blog-index {
  padding: 24px 0 46px !important;
}

.blog-index .section-heading {
  margin-bottom: 16px !important;
}

.blog-index .section-heading .eyebrow {
  margin-bottom: 8px !important;
}

.blog-index .section-heading h2 {
  font-size: clamp(26px, 2.68vw, 37px) !important;
}

.blog-index .cards.three {
  gap: 12px !important;
}

.blog-index .article-card {
  position: relative;
  overflow: hidden;
  min-height: 190px !important;
  gap: 10px !important;
  padding: 18px 18px 20px !important;
  border: 1px solid rgba(27, 74, 86, 0.13) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(27, 74, 86, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(226, 238, 236, 0.92)) !important;
  box-shadow: 0 14px 38px rgba(27, 74, 86, 0.06);
}

.blog-index .article-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--green-950), var(--green-800));
}

.blog-index .article-card::after {
  content: none;
}

.blog-index .article-card > p,
.blog-index .article-card h3,
.blog-index .article-card a {
  position: relative;
  z-index: 2;
}

.blog-index .article-card:nth-child(2),
.blog-index .article-card:nth-child(4) {
  background:
    radial-gradient(circle at 92% 12%, rgba(217, 167, 140, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(247, 230, 218, 0.9)) !important;
}

.blog-index .article-card:nth-child(2)::before,
.blog-index .article-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--terracotta), var(--rose));
}

.blog-index .article-card:nth-child(3),
.blog-index .article-card:nth-child(5) {
  background:
    radial-gradient(circle at 92% 12%, rgba(168, 195, 160, 0.17), transparent 28%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(231, 239, 226, 0.92)) !important;
}

.blog-index .article-card:nth-child(3)::before,
.blog-index .article-card:nth-child(5)::before {
  background: linear-gradient(90deg, var(--nutri-sage), var(--sage));
}

.blog-index .article-card:nth-child(6)::before {
  background: linear-gradient(90deg, var(--green-800), var(--sage));
}

.blog-index .article-card:nth-child(6) {
  background:
    radial-gradient(circle at 92% 12%, rgba(44, 101, 112, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(221, 237, 239, 0.92)) !important;
}

.blog-index .article-card p {
  color: var(--green-800) !important;
  font-size: 10px !important;
}

.blog-index .article-card h3 {
  max-width: 100%;
  color: var(--ink) !important;
  font-size: clamp(20px, 1.65vw, 26px) !important;
  line-height: 1.05 !important;
}

.blog-index .article-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--green-800) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.blog-index .article-card a::after {
  content: "->";
  font-weight: 500;
}

@media (max-width: 1060px) {
  .blog-index .article-card h3 {
    max-width: 100%;
  }

}

@media (max-width: 900px) {
  .blog-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .blog-hero {
    padding: 92px 0 32px !important;
  }
}

/* Equipo: tapa más editorial, compacta y legible */
.about {
  padding: clamp(58px, 7vw, 86px) 0 !important;
  background:
    radial-gradient(circle at 10% 12%, rgba(168, 195, 160, 0.2), transparent 28%),
    radial-gradient(circle at 96% 10%, rgba(217, 167, 140, 0.16), transparent 30%),
    linear-gradient(180deg, #fffaf2, #f3ece2) !important;
}

.about .section-heading.compact {
  max-width: 1040px;
  margin-bottom: 34px;
}

.about .section-heading h2 {
  max-width: 100% !important;
  font-size: clamp(36px, 3.7vw, 54px) !important;
  line-height: 0.98;
  white-space: nowrap;
}

.about .section-heading p:not(.eyebrow) {
  max-width: 930px !important;
  color: #625d55;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.58;
}

.founders {
  gap: 18px !important;
}

.founder-card {
  grid-template-columns: 150px 1fr !important;
  min-height: 280px;
  gap: 20px !important;
  padding: 18px !important;
  border-radius: 22px !important;
  border-top: 6px solid var(--green-950) !important;
  background:
    radial-gradient(circle at 96% 4%, rgba(27, 74, 86, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(243, 236, 226, 0.9)) !important;
}

.founder-card:nth-child(2) {
  border-top-color: var(--terracotta) !important;
  background:
    radial-gradient(circle at 96% 4%, rgba(217, 167, 140, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(244, 231, 220, 0.9)) !important;
}

.founder-photo {
  width: 150px !important;
  min-height: 240px !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 38px rgba(27, 74, 86, 0.12);
}

.founder-card div:last-child {
  align-content: center !important;
  gap: 11px !important;
}

.founder-card h3 {
  color: var(--ink);
  font-size: clamp(31px, 2.8vw, 42px);
  line-height: 1;
}

.founder-card p {
  color: #625d55 !important;
  font-size: clamp(15px, 1.12vw, 17px) !important;
  line-height: 1.48 !important;
}

.founder-card p strong {
  color: #55504a;
  font-weight: 700;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.founder-tags li {
  padding: 8px 10px;
  border: 1px solid rgba(27, 74, 86, 0.13);
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(255, 250, 242, 0.74);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.founder-card:nth-child(2) .founder-tags li {
  border-color: rgba(217, 167, 140, 0.24);
  background: rgba(255, 243, 228, 0.76);
}

@media (max-width: 980px) {
  .founders {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .founder-card {
    grid-template-columns: 1fr !important;
  }

  .founder-photo {
    width: 100% !important;
    min-height: 300px !important;
  }
}

/* Talleres: bloque destacado compacto */
.workshops {
  padding: clamp(38px, 4.8vw, 58px) 0 !important;
}

.workshops .section-heading.compact {
  margin-bottom: 18px !important;
}

.workshops .section-heading h2 {
  max-width: 680px;
  font-size: clamp(28px, 2.55vw, 38px) !important;
  line-height: 1.02;
}

.workshops .section-heading p:not(.eyebrow) {
  max-width: 760px !important;
  font-size: clamp(14px, 1.02vw, 15px) !important;
  line-height: 1.48 !important;
}

.workshops .filter-bar {
  margin-bottom: 20px !important;
  gap: 8px;
}

.workshops .filter-button {
  padding: 8px 13px;
  font-size: 13px;
}

.workshop-grid {
  gap: 14px !important;
}

.workshop-grid .offer-card img {
  height: 210px !important;
}

.workshop-grid .offer-card div {
  min-height: 238px !important;
  gap: 11px !important;
  padding: 20px !important;
}

.workshop-grid .offer-card h3 {
  font-size: clamp(24px, 2.2vw, 31px) !important;
  line-height: 1.05;
}

.workshop-grid .offer-card p:not(.tag) {
  font-size: 14px !important;
  line-height: 1.48 !important;
}

.workshop-grid .offer-card a {
  font-size: 14px !important;
}

.workshop-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(245px, 0.3fr);
  gap: 15px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.offer-card-featured {
  display: grid !important;
  grid-template-columns: minmax(220px, 0.64fr) minmax(0, 1fr) !important;
  overflow: hidden;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 96% 10%, rgba(217, 167, 140, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(239, 233, 222, 0.76)) !important;
  box-shadow: 0 24px 70px rgba(27, 74, 86, 0.12) !important;
}

.offer-card-featured img {
  height: 100% !important;
  min-height: 250px;
  object-fit: cover;
  filter: saturate(0.92);
}

.offer-card-featured div {
  min-height: 0 !important;
  padding: clamp(18px, 2vw, 27px) !important;
}

.offer-card-featured .date-badge {
  margin-bottom: 8px;
  width: 72px;
  height: 72px;
  font-size: 20px;
}

.offer-card-featured h3 {
  max-width: 470px;
  font-size: clamp(28px, 2.65vw, 40px) !important;
  line-height: 1.02;
}

.offer-card-featured p:not(.tag),
.offer-card-featured li {
  max-width: 540px;
  font-size: clamp(13px, 0.95vw, 14px) !important;
  line-height: 1.42 !important;
}

.offer-card-featured ul {
  display: grid;
  gap: 5px;
  margin: 2px 0 6px;
  padding-left: 18px;
  color: var(--muted);
}

.offer-card-featured .button {
  width: fit-content;
  margin-top: 6px;
  min-height: 44px;
  padding: 11px 18px;
}

.offer-card-featured .button-primary {
  background: #1b4a56 !important;
  color: var(--warm-white) !important;
  border-color: #1b4a56 !important;
}

.offer-card-featured .whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  min-height: 44px;
  margin-top: 8px;
  padding: 11px 18px;
  border: 1px solid rgba(200, 163, 95, 0.46);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(27, 74, 86, 0.96), rgba(32, 95, 105, 0.94));
  color: var(--warm-white) !important;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(27, 74, 86, 0.16);
}

.offer-card-featured .whatsapp-button svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}

.offer-card-featured .whatsapp-button:hover {
  background: linear-gradient(135deg, #143f49, #1b4a56);
  border-color: rgba(200, 163, 95, 0.7);
  color: var(--warm-white) !important;
}

.workshop-next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(200, 163, 95, 0.32);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 10%, rgba(200, 163, 95, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(247, 244, 238, 0.96), rgba(239, 233, 222, 0.72));
  box-shadow: 0 18px 50px rgba(27, 74, 86, 0.1);
}

.workshop-next span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workshop-next h3 {
  margin: 10px 0 9px;
  color: var(--adn-blue);
  font-size: clamp(23px, 2.05vw, 29px);
  line-height: 1.05;
}

.workshop-next p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.workshop-next .button {
  width: 100%;
  justify-content: center;
  border-color: rgba(27, 74, 86, 0.34);
  color: var(--adn-blue);
}

@media (max-width: 860px) {
  .workshop-feature {
    grid-template-columns: 1fr;
  }

  .offer-card-featured {
    grid-template-columns: 1fr !important;
  }

  .offer-card-featured img {
    min-height: 220px;
  }

  .offer-card-featured .button,
  .offer-card-featured .whatsapp-button,
  .workshop-next .button {
    width: 100%;
  }
}

/* Formaciones: contenido siempre visible y escala compacta */
.home-page .formation.section-observe,
.home-page .formation .reveal-item {
  opacity: 1 !important;
  transform: none !important;
}

.home-page .formation {
  padding: clamp(48px, 5.8vw, 70px) 0 !important;
}

.home-page .formation-intro {
  gap: 14px;
  margin-bottom: 32px;
}

.home-page .formation-intro h2,
.home-page .formation-copy h2 {
  font-size: clamp(27px, 2.75vw, 39px);
  line-height: 1.04;
}

.home-page .formation-intro > p:not(.eyebrow),
.home-page .formation-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(14px, 1.05vw, 16px) !important;
  line-height: 1.5;
}

.home-page .formation-difference {
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) minmax(0, 1fr);
  gap: 20px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(27, 74, 86, 0.14);
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.72);
}

.home-page .formation-difference h3 {
  font-size: clamp(21px, 1.8vw, 27px);
}

.home-page .formation-difference p,
.home-page .formation-difference blockquote {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.45;
}

.home-page .formation-track-grid {
  gap: 12px;
  margin-top: 10px;
}

.home-page .formation-track {
  min-height: 190px;
  gap: 10px;
  padding: clamp(18px, 1.8vw, 22px);
}

.home-page .formation-track h3 {
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.04;
}

.home-page .formation-track p {
  font-size: clamp(13px, 0.95vw, 14px);
  line-height: 1.45;
}

.home-page .formation-track a {
  padding: 8px 12px;
  font-size: 13px;
}

.home-page .formation-grid {
  gap: clamp(22px, 3vw, 34px);
  margin-top: 24px;
  padding: clamp(20px, 2.7vw, 32px);
}

.home-page .formation-copy {
  gap: 15px;
}

.home-page .formation .button-row {
  gap: 9px;
  margin-top: 18px;
}

.home-page .formation .button {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 13px;
}

.home-page .program-panel {
  padding: clamp(18px, 2vw, 24px);
}

.home-page .program-panel ol {
  gap: 10px;
  font-size: 14px;
}

.home-page .program-outcomes {
  margin-top: 16px;
  padding: 14px;
}

.home-page .formation-details {
  gap: 9px;
  margin-top: 24px;
}

.home-page .formation-details article {
  padding: 15px;
}

.home-page .bio-training {
  gap: 20px;
  margin-top: 22px;
  padding: clamp(18px, 2.2vw, 26px);
}

.home-page .bio-training h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 2.6vw, 36px);
}

.home-page .bio-training p,
.home-page .bio-training-panel li {
  font-size: 14px !important;
  line-height: 1.45 !important;
}

@media (max-width: 760px) {
  .home-page .formation-difference {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-page .formation-track-grid {
    gap: 10px;
  }

  .home-page .formation-track {
    min-height: 0;
  }

  .home-page .formation-grid {
    gap: 18px;
  }
}

/* Marca ADN: bloque de emblema más cuidado */
.symbol-section {
  padding: clamp(52px, 6vw, 86px) 0 !important;
  scroll-margin-top: 92px;
  background:
    radial-gradient(circle at 12% 22%, rgba(200, 163, 95, 0.18), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(168, 195, 160, 0.22), transparent 30%),
    linear-gradient(135deg, var(--warm-white), #f1eadf 58%, #edf3ef) !important;
}

.symbol-section::before {
  right: -0.06em !important;
  top: -0.18em !important;
  color: rgba(27, 74, 86, 0.055) !important;
  font-size: clamp(150px, 24vw, 380px) !important;
}

.symbol-grid {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.92fr) !important;
  gap: clamp(26px, 5vw, 68px) !important;
  align-items: center !important;
}

.symbol-mark {
  min-height: 280px !important;
  border: 1px solid rgba(27, 74, 86, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 44%, rgba(200, 163, 95, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(239, 233, 222, 0.62));
  box-shadow: 0 22px 68px rgba(27, 74, 86, 0.12);
}

.symbol-mark::before {
  width: 230px !important;
  height: 230px !important;
  background:
    radial-gradient(circle, rgba(200, 163, 95, 0.18), rgba(27, 74, 86, 0.06) 68%, transparent 69%) !important;
}

.symbol-mark::after {
  content: "";
  position: absolute;
  width: 78%;
  height: 1px;
  bottom: 38px;
  background: linear-gradient(90deg, transparent, rgba(200, 163, 95, 0.7), transparent);
}

.symbol-mark img {
  width: min(190px, 56vw) !important;
  box-shadow: 0 18px 55px rgba(27, 74, 86, 0.2) !important;
}

.symbol-copy {
  max-width: 860px !important;
  gap: 13px !important;
  padding: clamp(22px, 3.3vw, 36px);
  border: 1px solid rgba(27, 74, 86, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.86), rgba(247, 244, 238, 0.68));
  box-shadow: 0 22px 70px rgba(27, 74, 86, 0.08);
}

.symbol-copy h2 {
  max-width: 760px;
  color: var(--green-950);
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1;
}

.symbol-copy p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted) !important;
  font-size: clamp(15px, 1.12vw, 17px) !important;
  line-height: 1.55;
}

.symbol-intro {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.symbol-meaning {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 4px;
}

.symbol-meaning span {
  padding: 7px 12px;
  border: 1px solid rgba(27, 74, 86, 0.12);
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(200, 163, 95, 0.14);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.symbol-meaning span:nth-child(2) {
  background: rgba(168, 195, 160, 0.18);
}

.symbol-meaning span:nth-child(3) {
  background: rgba(217, 167, 140, 0.15);
}

.symbol-copy blockquote {
  margin: 4px 0 0;
  padding: 16px 0 0 20px;
  border-top: 1px solid rgba(27, 74, 86, 0.1);
  border-left: 3px solid rgba(200, 163, 95, 0.72);
  color: var(--green-950);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(22px, 2vw, 30px);
  font-style: italic;
  line-height: 1.18;
}

@media (max-width: 900px) {
  .symbol-grid {
    grid-template-columns: 1fr !important;
  }

  .symbol-mark {
    min-height: 260px !important;
  }
}

/* Método de constelaciones: conservarlo, pero más liviano */
.constellation-method {
  padding: clamp(58px, 7vw, 86px) 0 !important;
}

.constellation-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr) !important;
  gap: clamp(28px, 4.5vw, 58px) !important;
  align-items: center !important;
}

.constellation-copy {
  gap: 14px !important;
}

.constellation-copy h2 {
  max-width: 760px;
  font-size: clamp(36px, 4.2vw, 58px) !important;
  line-height: 1.02 !important;
}

.constellation-copy > p:not(.eyebrow) {
  max-width: 720px !important;
  font-size: clamp(15px, 1.25vw, 17px) !important;
  line-height: 1.55 !important;
}

.constellation-steps {
  gap: 10px !important;
  margin-top: 10px !important;
}

.constellation-steps article {
  grid-template-columns: 40px minmax(110px, 0.25fr) 1fr !important;
  gap: 12px !important;
  padding: 14px !important;
  background: rgba(247, 244, 238, 0.82) !important;
}

.constellation-steps span {
  width: 34px !important;
  height: 34px !important;
  font-size: 14px !important;
}

.constellation-steps h3 {
  font-size: clamp(22px, 2vw, 28px) !important;
  line-height: 1.04 !important;
}

.constellation-steps p {
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.constellation-map {
  min-height: 390px !important;
  border-radius: 18px !important;
  opacity: 0.92;
}

.constellation-map .ring {
  inset: 58px !important;
}

.constellation-map .ring::before {
  inset: 44px !important;
}

.constellation-map .ring::after {
  inset: 92px !important;
}

.node {
  min-width: 66px !important;
  min-height: 66px !important;
  padding: 8px !important;
  font-size: 13px !important;
}

.node.main {
  min-width: 82px !important;
  min-height: 82px !important;
  font-size: 19px !important;
}

.node.n1 { top: 34px !important; }
.node.n2 { right: 34px !important; top: 96px !important; }
.node.n3 { right: 42px !important; bottom: 76px !important; }
.node.n4 { bottom: 34px !important; }
.node.n5 { left: 34px !important; bottom: 76px !important; }
.node.n6 { left: 42px !important; top: 96px !important; }

@media (max-width: 900px) {
  .constellation-grid {
    grid-template-columns: 1fr !important;
  }

  .constellation-steps article {
    grid-template-columns: 38px 1fr !important;
  }

  .constellation-steps p {
    grid-column: 2;
  }
}

/* Red profesional ADN: compacta, clara y con acceso desde el menu */
.professional-network {
  padding: clamp(38px, 4.8vw, 58px) 0 !important;
  scroll-margin-top: 92px;
  background:
    radial-gradient(circle at 10% 14%, rgba(200, 163, 95, 0.13), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(27, 74, 86, 0.09), transparent 28%),
    linear-gradient(180deg, var(--warm-white), var(--cream)) !important;
}

.red-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(430px, 0.94fr);
  gap: clamp(22px, 3.4vw, 46px);
  align-items: center;
}

.red-copy {
  display: grid;
  gap: 11px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(27, 74, 86, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(247, 244, 238, 0.94), rgba(239, 233, 222, 0.82));
  box-shadow: 0 22px 68px rgba(27, 74, 86, 0.08);
}

.red-copy h2 {
  max-width: 490px;
  color: var(--green-950);
  font-size: clamp(34px, 3.15vw, 48px);
  line-height: 0.98;
}

.red-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid rgba(200, 163, 95, 0.42);
  border-radius: 999px;
  color: var(--green-950);
  background: linear-gradient(135deg, rgba(200, 163, 95, 0.22), rgba(247, 244, 238, 0.86));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.red-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 15.5px);
  line-height: 1.46;
}

.red-copy .button {
  width: fit-content;
  min-height: 46px;
  margin-top: 2px;
  position: relative;
  overflow: hidden;
  color: var(--green-950);
  background: linear-gradient(135deg, #e5c77f, var(--gold));
  box-shadow: 0 14px 34px rgba(200, 163, 95, 0.22);
  animation: softCtaPulse 3.8s ease-in-out infinite;
}

.red-copy .button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  animation: ctaGlowSweep 4.6s ease-in-out infinite;
  pointer-events: none;
}

.red-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.red-points article {
  min-height: 154px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(27, 74, 86, 0.12);
  border-top: 5px solid var(--green-950);
  border-radius: 22px;
  background: rgba(247, 244, 238, 0.88);
  box-shadow: 0 16px 44px rgba(27, 74, 86, 0.08);
}

.red-points article:nth-child(2) {
  border-top-color: var(--gold);
  background: rgba(255, 248, 232, 0.9);
}

.red-points article:nth-child(3) {
  border-top-color: var(--terracotta);
  background: rgba(255, 243, 236, 0.88);
}

.red-points article:nth-child(4) {
  border-top-color: var(--sage);
  background: rgba(244, 248, 246, 0.92);
}

.red-points span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green-950);
  background: rgba(200, 163, 95, 0.28);
  font-family: "Cardo", serif;
  font-weight: 700;
}

.red-points h3 {
  color: var(--green-950);
  font-size: clamp(20px, 1.62vw, 26px);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.red-points p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

@keyframes softCtaPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 14px 34px rgba(200, 163, 95, 0.22);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(200, 163, 95, 0.3);
  }
}

@keyframes ctaGlowSweep {
  0%,
  42% {
    left: -55%;
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  72%,
  100% {
    left: 115%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .red-copy .button,
  .red-copy .button::after {
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  .red-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .red-points {
    grid-template-columns: 1fr;
  }

  .red-points article {
    min-height: auto;
  }
}

/* Portada ADN v18: más clara, premium y escolar */
.hero {
  min-height: min(78vh, 700px) !important;
  padding-top: 86px !important;
  color: var(--green-950) !important;
  background:
    radial-gradient(circle at 14% 18%, rgba(200, 163, 95, 0.16), transparent 24%),
    radial-gradient(circle at 84% 26%, rgba(27, 74, 86, 0.1), transparent 31%),
    linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 62%, #f4f0e7 100%) !important;
}

.hero::before {
  inset: 96px auto 42px 32px !important;
  width: min(52vw, 760px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    linear-gradient(90deg, rgba(200, 163, 95, 0.9), rgba(200, 163, 95, 0)) 0 92% / 190px 2px no-repeat,
    radial-gradient(circle at 6% 10%, rgba(255, 255, 255, 0.72), transparent 34%) !important;
}

.hero::after {
  content: "ADN";
  position: absolute;
  right: -0.08em;
  bottom: -0.16em;
  z-index: 0;
  color: rgba(27, 74, 86, 0.045);
  font-family: "Cardo", serif;
  font-size: clamp(180px, 28vw, 430px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.hero-media {
  inset: 108px 42px 38px auto !important;
  width: min(42vw, 640px) !important;
  min-height: 500px !important;
  border: 12px solid rgba(247, 244, 238, 0.82);
  border-radius: 34px !important;
  background-position: center 40% !important;
  filter: saturate(0.94) contrast(0.98) brightness(1.05) !important;
  box-shadow: 0 28px 86px rgba(27, 74, 86, 0.16) !important;
}

.hero-overlay {
  inset: 108px 42px 38px auto !important;
  width: min(42vw, 640px) !important;
  min-height: 500px !important;
  border-radius: 34px !important;
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.58), rgba(247, 244, 238, 0.08) 42%, rgba(27, 74, 86, 0.2)),
    linear-gradient(180deg, rgba(27, 74, 86, 0.02), rgba(27, 74, 86, 0.22)) !important;
}

.hero-constellation-tree {
  display: none !important;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 64px)) !important;
  min-height: calc(min(78vh, 700px) - 86px) !important;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.8fr) !important;
  padding: 18px 0 28px !important;
}

.hero-text {
  max-width: 670px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hero-school {
  width: fit-content;
  margin-bottom: 16px !important;
  padding: 9px 14px !important;
  border: 1px solid rgba(27, 74, 86, 0.16) !important;
  border-radius: 999px !important;
  color: var(--green-950) !important;
  background: rgba(247, 244, 238, 0.72) !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
}

.hero h1 {
  max-width: 640px !important;
  color: var(--green-950) !important;
  font-size: clamp(43px, 4.4vw, 68px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
}

.hero h1::after {
  width: 176px !important;
  height: 2px !important;
  margin-top: 18px !important;
  background: linear-gradient(90deg, var(--gold), rgba(200, 163, 95, 0)) !important;
}

.hero-copy {
  max-width: 650px !important;
  color: var(--muted) !important;
  font-size: clamp(15.5px, 1.18vw, 18px) !important;
  line-height: 1.54 !important;
}

.hero-actions {
  margin-top: 26px !important;
}

.hero .button-primary {
  min-height: 54px;
  position: relative;
  overflow: hidden;
  color: var(--warm-white) !important;
  background: linear-gradient(135deg, var(--green-950), var(--green-800)) !important;
  box-shadow: 0 16px 38px rgba(27, 74, 86, 0.18) !important;
  animation: heroPrimaryPulse 4.6s ease-in-out 1.2s infinite;
}

.hero .button-primary::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -55%;
  width: 38%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(247, 244, 238, 0.34), transparent);
  animation: heroButtonSweep 5.2s ease-in-out 1.8s infinite;
  pointer-events: none;
}

.hero .button-ghost.light {
  min-height: 54px;
  color: var(--green-950) !important;
  border-color: rgba(27, 74, 86, 0.22) !important;
  background: rgba(247, 244, 238, 0.72) !important;
}

.hero-signature {
  margin-top: 16px !important;
  color: rgba(27, 74, 86, 0.82) !important;
  font-size: 10px !important;
  line-height: 1.4 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase;
}

.hero-pillars {
  max-width: 660px;
  gap: 10px !important;
  margin-top: 13px !important;
}

.hero-pillars a {
  min-height: 72px !important;
  padding: 13px !important;
  border-radius: 16px !important;
  border-color: rgba(27, 74, 86, 0.12) !important;
  background: rgba(247, 244, 238, 0.82) !important;
  box-shadow: 0 16px 40px rgba(27, 74, 86, 0.07) !important;
  animation: pillarFloat 6.5s ease-in-out infinite;
}

.hero-pillars a:nth-child(2) {
  background: rgba(239, 233, 222, 0.72) !important;
  animation-delay: 0.45s;
}

.hero-pillars a:nth-child(3) {
  background: rgba(255, 246, 225, 0.72) !important;
  animation-delay: 0.9s;
}

.hero-pillars span {
  color: var(--gold) !important;
}

.hero-pillars strong {
  color: var(--green-950);
  font-size: 18px !important;
}

@keyframes heroPrimaryPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 16px 38px rgba(27, 74, 86, 0.18);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(27, 74, 86, 0.27);
  }
}

@keyframes heroButtonSweep {
  0%,
  45% {
    left: -55%;
    opacity: 0;
  }

  56% {
    opacity: 1;
  }

  76%,
  100% {
    left: 115%;
    opacity: 0;
  }
}

@keyframes pillarFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.hero-pillars small {
  color: var(--muted);
  font-size: 10.5px !important;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto !important;
    padding-top: 82px !important;
  }

  .hero-media,
  .hero-overlay {
    inset: 82px 16px auto 16px !important;
    width: auto !important;
    min-height: 0 !important;
    height: 34vh !important;
    border-radius: 26px !important;
  }

  .hero-content {
    grid-template-columns: 1fr !important;
    width: min(100% - 32px, 760px) !important;
    min-height: auto !important;
    padding-top: calc(34vh + 30px) !important;
  }

  .hero-pillars {
    grid-template-columns: 1fr !important;
  }
}

/* Sesiones individuales: más claro, más amable y menos pesado */
.appointments {
  padding: clamp(54px, 6vw, 82px) 0 !important;
  background:
    radial-gradient(circle at 10% 14%, rgba(200, 163, 95, 0.13), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(168, 195, 160, 0.15), transparent 30%),
    linear-gradient(180deg, var(--warm-white), var(--cream)) !important;
}

.appointments-grid {
  align-items: center !important;
  gap: clamp(34px, 4.6vw, 72px) !important;
}

.appointments-copy {
  gap: 14px !important;
  max-width: 610px;
}

.appointments-copy h2 {
  max-width: 520px;
  font-size: clamp(32px, 3.35vw, 48px) !important;
  line-height: 1.02 !important;
  text-wrap: balance;
}

.appointments-copy p:not(.eyebrow) {
  max-width: 570px;
  font-size: clamp(16px, 1.2vw, 18px) !important;
  line-height: 1.52 !important;
}

.appointments-copy .ethical-note {
  max-width: 560px;
  margin-top: 10px;
  padding: 16px 18px !important;
  border-radius: 0 18px 18px 0 !important;
  background: rgba(255, 250, 242, 0.72) !important;
  font-size: clamp(14px, 1.05vw, 16px) !important;
}

.appointment-options {
  align-self: center;
  gap: clamp(18px, 2vw, 24px) !important;
  padding-top: clamp(12px, 3vw, 40px);
}

.appointment-options .appointment-card {
  min-height: 0 !important;
  padding: clamp(22px, 2.2vw, 28px) !important;
  gap: 16px !important;
  border-radius: 24px !important;
}

.appointment-options .appointment-head {
  min-height: 154px !important;
  grid-template-columns: 76px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: start !important;
}

.appointment-options .appointment-head > div {
  min-height: 154px !important;
  display: grid !important;
  grid-template-rows: 118px auto !important;
  align-content: start !important;
}

.appointment-options .appointment-avatar {
  width: 76px !important;
  height: 76px !important;
}

.appointment-options .appointment-avatar.cecilia {
  background-size: 118% auto !important;
  background-position: center 18% !important;
}

.appointment-options .appointment-head h3 {
  min-height: 0 !important;
  display: block !important;
  font-size: clamp(28px, 2.35vw, 38px) !important;
  line-height: 1.02 !important;
  align-self: start !important;
}

.appointment-options .appointment-instagram {
  display: inline-flex !important;
  align-self: start !important;
  margin-top: 8px !important;
  font-size: clamp(13px, 1vw, 15px) !important;
  line-height: 1.1 !important;
}

.appointment-options .appointment-card > p {
  font-size: clamp(14px, 1vw, 16px) !important;
  line-height: 1.48 !important;
}

.appointment-options .appointment-card > p + p {
  margin-top: -8px;
}

.appointment-options .button {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

@media (max-width: 980px) {
  .about .section-heading h2 {
    white-space: normal;
  }

  .appointment-options .appointment-head,
  .appointment-options .appointment-head > div {
    min-height: 0 !important;
  }

  .appointment-options .appointment-head > div {
    display: block !important;
  }

  .appointment-options {
    padding-top: 0;
  }

  .appointments-copy h2 {
    font-size: clamp(36px, 10vw, 54px) !important;
  }
}

/* Sobre ADN: manifiesto principal de la escuela */
.intro-band {
  padding: clamp(48px, 5.8vw, 78px) 0 !important;
  background:
    radial-gradient(circle at 14% 16%, rgba(200, 163, 95, 0.14), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(168, 195, 160, 0.2), transparent 30%),
    linear-gradient(135deg, var(--warm-white), var(--cream) 58%, #edf3ef) !important;
}

.intro-band::before {
  top: -0.28em !important;
  right: -0.05em !important;
  color: rgba(27, 74, 86, 0.045) !important;
}

.intro-lab {
  grid-template-columns: 1fr !important;
  gap: clamp(14px, 2vw, 24px) !important;
}

.intro-lead {
  position: relative !important;
  top: auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr) !important;
  gap: clamp(18px, 3.3vw, 52px) !important;
  align-items: end !important;
  max-width: none !important;
}

.intro-lead .eyebrow {
  grid-column: 1 / -1 !important;
  margin-bottom: -8px !important;
}

.intro-lead h2 {
  grid-column: 1 !important;
  max-width: 820px !important;
  color: var(--green-950) !important;
  font-size: clamp(34px, 3.7vw, 58px) !important;
  line-height: 1 !important;
  text-wrap: balance;
}

.intro-lead p:not(.eyebrow) {
  grid-column: 2 !important;
  max-width: 620px !important;
  margin-bottom: 8px;
  color: #625d55 !important;
  font-size: clamp(14px, 1vw, 16px) !important;
  line-height: 1.5 !important;
}

.intro-map {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(12px, 1.5vw, 18px) !important;
}

.intro-map article {
  min-height: 0 !important;
  padding: clamp(19px, 2vw, 27px) !important;
  border-radius: 26px !important;
  border-color: rgba(27, 74, 86, 0.12) !important;
  box-shadow: 0 18px 48px rgba(27, 74, 86, 0.07) !important;
}

.intro-map article:nth-child(1) {
  background:
    radial-gradient(circle at 92% 14%, rgba(200, 163, 95, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(250, 241, 225, 0.86)) !important;
}

.intro-map article:nth-child(2) {
  background:
    radial-gradient(circle at 92% 14%, rgba(168, 195, 160, 0.26), transparent 32%),
    linear-gradient(135deg, rgba(244, 249, 245, 0.98), rgba(232, 240, 228, 0.88)) !important;
}

.intro-map article:nth-child(3) {
  background:
    radial-gradient(circle at 92% 14%, rgba(217, 167, 140, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 247, 237, 0.98), rgba(245, 231, 220, 0.88)) !important;
}

.intro-map article::after {
  content: "";
  position: absolute;
  inset: auto 24px 20px 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 74, 86, 0.18), transparent);
}

.intro-map h3 {
  color: var(--green-950) !important;
  font-size: clamp(22px, 1.85vw, 29px) !important;
  line-height: 1.02 !important;
}

.intro-map p {
  max-width: 94%;
  color: #625d55 !important;
  font-size: clamp(13px, 0.95vw, 15px) !important;
  line-height: 1.45 !important;
}

.intro-statement {
  grid-column: auto !important;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.78fr) !important;
  margin-top: clamp(8px, 1vw, 14px) !important;
  padding: clamp(18px, 2.25vw, 28px) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 92% 20%, rgba(200, 163, 95, 0.16), transparent 30%),
    linear-gradient(135deg, #163f49, var(--green-950)) !important;
}

.intro-statement p {
  max-width: 680px;
  color: rgba(255, 250, 242, 0.86) !important;
  font-size: clamp(14px, 1.05vw, 16px) !important;
  line-height: 1.5 !important;
}

.intro-statement blockquote {
  color: var(--warm-white) !important;
  font-size: clamp(21px, 1.9vw, 31px) !important;
  line-height: 1.16 !important;
}

@media (max-width: 980px) {
  .intro-lead,
  .intro-statement {
    grid-template-columns: 1fr !important;
  }

  .intro-lead p:not(.eyebrow) {
    grid-column: 1 !important;
  }

  .intro-map {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 980px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq .section-heading,
  .faq-grid > div:first-child {
    position: static;
  }

  .accordion details p {
    padding-left: 20px;
  }
}

/* Talleres + clínica: acentos vivos dentro de la paleta ADN */
.workshops {
  background:
    radial-gradient(circle at 10% 8%, rgba(168, 195, 160, 0.18), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(217, 167, 140, 0.16), transparent 28%),
    linear-gradient(180deg, #f7f4ee 0%, #f1ede5 100%) !important;
}

.offer-card-featured {
  border: 1px solid rgba(200, 163, 95, 0.28) !important;
  border-top: 5px solid #c8a35f !important;
}

.offer-card-featured .tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(27, 74, 86, 0.08);
  color: #1b4a56 !important;
  font-size: 11px !important;
  letter-spacing: 0.08em;
}

.offer-card-featured .date-badge {
  background: linear-gradient(135deg, rgba(200, 163, 95, 0.98), rgba(217, 167, 140, 0.82)) !important;
  color: #173942 !important;
}

.offer-card-featured .whatsapp-button {
  border-color: rgba(166, 99, 72, 0.32);
  background: linear-gradient(135deg, #c8a35f, #d9a78c);
  color: #173942 !important;
  box-shadow: 0 14px 30px rgba(200, 163, 95, 0.2);
}

.offer-card-featured .whatsapp-button svg {
  stroke: #173942;
}

.offer-card-featured .whatsapp-button:hover {
  background: linear-gradient(135deg, #b89148, #c98f73);
  border-color: rgba(166, 99, 72, 0.48);
  color: #173942 !important;
}

.workshop-next {
  border-top: 5px solid rgba(168, 195, 160, 0.9);
  background:
    radial-gradient(circle at 88% 12%, rgba(168, 195, 160, 0.26), transparent 34%),
    linear-gradient(145deg, rgba(247, 244, 238, 0.98), rgba(239, 233, 222, 0.76));
}

.workshop-next .button {
  background: rgba(27, 74, 86, 0.06);
}

.workshop-next .button:hover {
  background: rgba(27, 74, 86, 0.12);
}

.event-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(200, 163, 95, 0.26), transparent 30%),
    linear-gradient(120deg, rgba(27, 74, 86, 0.96), rgba(27, 74, 86, 0.8) 48%, rgba(166, 99, 72, 0.62)),
    url("assets/constelacion-ronda-amorosa.png") center / cover !important;
}

.event-hero::after {
  content: "ADN";
  position: absolute;
  right: -0.04em;
  bottom: -0.18em;
  color: rgba(247, 244, 238, 0.055);
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(150px, 23vw, 360px);
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
}

.event-grid {
  position: relative;
  z-index: 1;
}

.event-hero .button-accent {
  background: linear-gradient(135deg, #c8a35f, #d9a78c);
  color: #173942;
}

.event-hero .button-outline.light {
  background: rgba(247, 244, 238, 0.1);
  border-color: rgba(247, 244, 238, 0.42);
  color: #f7f4ee;
}

.event-details {
  border-color: rgba(200, 163, 95, 0.35);
  background: rgba(247, 244, 238, 0.16);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.event-details p:nth-child(2) {
  background: rgba(200, 163, 95, 0.14);
}

.event-details p:nth-child(3) {
  background: rgba(168, 195, 160, 0.12);
}

.event-details p:nth-child(4) {
  background: rgba(217, 167, 140, 0.12);
}

/* Movimiento sutil ADN: vivo, calmo y premium */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 860ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease,
    border-color 320ms ease,
    background 320ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-text > .reveal-item {
  transform: translateY(24px);
}

.hero-text > .reveal-item.is-visible {
  transform: translateY(0);
}

.hero-pillars a.reveal-item {
  transform: translateY(24px) scale(0.985);
}

.hero-pillars a.reveal-item.is-visible {
  transform: translateY(0) scale(1);
}

.hero-pillars a,
.intro-map article,
.formation-panel,
.experience-cards article,
.media-cards article,
.founder-card,
.appointment-card,
.resource-card,
.testimonial-card,
.faq details,
.workshop-next,
.offer-card-featured {
  will-change: transform;
}

.hero-pillars a:hover,
.intro-map article:hover,
.formation-panel:hover,
.experience-cards article:hover,
.media-cards article:hover,
.founder-card:hover,
.appointment-card:hover,
.resource-card:hover,
.testimonial-card:hover,
.faq details:hover,
.workshop-next:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(27, 74, 86, 0.13);
}

.offer-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(27, 74, 86, 0.16);
}

.offer-card-featured img {
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.offer-card-featured:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.button {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    color 240ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 32px rgba(27, 74, 86, 0.14);
}

.button i {
  transition: transform 240ms ease;
}

.button:hover i {
  transform: translateX(5px);
}

.button-primary:hover,
.offer-card-featured .button-primary:hover {
  box-shadow: 0 16px 34px rgba(27, 74, 86, 0.2);
}

.offer-card-featured .whatsapp-button {
  position: relative;
  overflow: hidden;
}

.offer-card-featured .whatsapp-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(247, 244, 238, 0.22), transparent);
  transform: translateX(-115%);
  transition: transform 620ms ease;
}

.offer-card-featured .whatsapp-button:hover::after {
  transform: translateX(115%);
}

.date-badge,
.hero-school,
.eyebrow {
  animation: softPulse 5.8s ease-in-out infinite;
}

.hero-constellation-tree .tree-node {
  animation: nodeGlow 4.8s ease-in-out infinite;
}

.hero-constellation-tree .tree-node:nth-child(odd) {
  animation-delay: 900ms;
}

.hero-school,
.date-badge,
.eyebrow,
.hero-constellation-tree .tree-node {
  animation-iteration-count: 1;
}

@keyframes softPulse {
  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(1.18);
  }
}

@keyframes nodeGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(200, 163, 95, 0);
  }

  50% {
    box-shadow: 0 0 22px rgba(200, 163, 95, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-item.is-visible,
  .hero-pillars a:hover,
  .intro-map article:hover,
  .formation-panel:hover,
  .experience-cards article:hover,
  .media-cards article:hover,
  .founder-card:hover,
  .appointment-card:hover,
  .resource-card:hover,
  .testimonial-card:hover,
  .faq details:hover,
  .workshop-next:hover,
  .offer-card-featured:hover,
  .button:hover,
  .offer-card-featured:hover img {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .date-badge,
  .hero-school,
  .eyebrow,
  .hero-constellation-tree .tree-node {
    animation: none;
  }
}

/* Hero principal: entrada calma, por bloques y una sola vez */
.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
}

.hero.is-hero-ready .hero-title-line {
  animation: heroLineIn 920ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero.is-hero-ready .hero-title-line:nth-child(1) {
  animation-delay: 120ms;
}

.hero.is-hero-ready .hero-title-line:nth-child(2) {
  animation-delay: 260ms;
}

.hero .hero-copy,
.hero .hero-actions,
.hero .hero-signature {
  opacity: 0;
  transform: translateY(22px);
}

.hero.is-hero-ready .hero-copy {
  animation: heroFadeUp 860ms cubic-bezier(0.22, 1, 0.36, 1) 520ms forwards;
}

.hero.is-hero-ready .hero-actions {
  animation: heroFadeUp 860ms cubic-bezier(0.22, 1, 0.36, 1) 660ms forwards;
}

.hero.is-hero-ready .hero-signature {
  animation: heroFadeUp 860ms cubic-bezier(0.22, 1, 0.36, 1) 780ms forwards;
}

.hero .hero-media {
  animation:
    heroImageSettle 1.8s cubic-bezier(0.22, 1, 0.36, 1) both,
    heroPhotoBreath 18s ease-in-out 2s infinite alternate !important;
  transform-origin: center;
  will-change: transform;
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageSettle {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

@keyframes heroPhotoBreath {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }

  45% {
    transform: scale(1.012) translate3d(-2px, -3px, 0);
  }

  to {
    transform: scale(1.018) translate3d(4px, -5px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-line,
  .hero .hero-copy,
  .hero .hero-actions,
  .hero .hero-signature,
  .hero .hero-media {
    opacity: 1;
    transform: none;
    animation: none !important;
    transition: none;
  }
}

/* Blog artículos nuevos: cards con tema visual y lectura editorial */
.blog-card-grid {
  align-items: stretch;
}

.blog-index .article-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 126px;
  align-items: end;
  min-height: 214px !important;
  padding: 24px !important;
  isolation: isolate;
}

.article-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100%;
}

.article-card-media {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: 118px;
  height: 118px;
  margin: 0;
  border-radius: 999px;
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(247, 244, 238, 0.72), rgba(247, 244, 238, 0.18) 62%, transparent 72%);
  box-shadow: none;
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(0.86) contrast(0.96);
}

.article-card-alimentacion .article-card-media img {
  object-fit: contain;
  padding: 18px;
  opacity: 0.66;
}

.article-illo {
  display: block;
  width: 100%;
  height: 100%;
  color: #1b4a56;
  opacity: 0.34;
}

.article-illo path,
.article-illo circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.article-illo .illo-dotted {
  stroke-dasharray: 0.1 10;
  stroke-linecap: round;
}

.blog-index .article-card h3 {
  max-width: 92%;
  font-size: clamp(1.55rem, 2.45vw, 2.25rem) !important;
  line-height: 0.98;
}

.blog-index .article-card-bioconstelaciones .article-illo,
.blog-index .article-card-sintomas .article-illo {
  color: #1b4a56;
}

.blog-index .article-card-constelaciones .article-illo,
.blog-index .article-card-vinculos .article-illo {
  color: #5d7f62;
}

.blog-index .article-card-limites .article-illo,
.blog-index .article-card-alimentacion .article-illo {
  color: #a56f54;
}

.blog-index .article-card-bioconstelaciones::before,
.blog-index .article-card-sintomas::before {
  background: linear-gradient(90deg, #1b4a56, #5f8790) !important;
}

.blog-index .article-card-constelaciones::before,
.blog-index .article-card-vinculos::before {
  background: linear-gradient(90deg, #a8c3a0, #1b4a56) !important;
}

.blog-index .article-card-limites::before {
  background: linear-gradient(90deg, #d9a78c, #c8a35f) !important;
}

.blog-index .article-card-alimentacion::before {
  background: linear-gradient(90deg, #c8a35f, #d9a78c) !important;
}

.blog-index .article-card-bioconstelaciones,
.blog-index .article-card-sintomas {
  background:
    radial-gradient(circle at 88% 72%, rgba(27, 74, 86, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(221, 237, 239, 0.9)) !important;
}

.blog-index .article-card-constelaciones,
.blog-index .article-card-vinculos {
  background:
    radial-gradient(circle at 88% 72%, rgba(168, 195, 160, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(231, 239, 226, 0.9)) !important;
}

.blog-index .article-card-limites,
.blog-index .article-card-alimentacion {
  background:
    radial-gradient(circle at 88% 72%, rgba(217, 167, 140, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(248, 229, 216, 0.86)) !important;
}

.blog-post {
  max-width: none !important;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  scroll-margin-top: 130px;
}

.blog-post:target {
  opacity: 1 !important;
  transform: none !important;
}

.blog-post-content {
  min-width: 0;
}

.blog-post p:not(.eyebrow) {
  max-width: 820px;
}

.blog-post-visual {
  position: sticky;
  top: 118px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(27, 74, 86, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 18%, rgba(200, 163, 95, 0.14), transparent 34%),
    rgba(247, 244, 238, 0.88);
  box-shadow: 0 20px 60px rgba(27, 74, 86, 0.1);
}

.blog-post-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  filter: saturate(0.9) contrast(0.96);
}

.blog-post-visual-alimentacion img {
  object-fit: contain;
  padding: 34px;
  background: rgba(255, 255, 255, 0.6);
}

.blog-back-link {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: -10px;
  padding: 12px 18px;
  border: 1px solid rgba(27, 74, 86, 0.16);
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.86);
  color: #1b4a56;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(27, 74, 86, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.blog-back-link::before {
  content: "←";
  font-family: "Cardo", serif;
  font-size: 1.15em;
  line-height: 1;
}

.blog-back-link:hover {
  transform: translateY(-2px);
  background: #f7f4ee;
  box-shadow: 0 18px 42px rgba(27, 74, 86, 0.12);
}

.blog-post-bioconstelaciones,
.blog-post-sintomas {
  border-left-color: #1b4a56 !important;
}

.blog-post-constelaciones,
.blog-post-vinculos {
  border-left-color: #a8c3a0 !important;
}

.blog-post-limites,
.blog-post-alimentacion {
  border-left-color: #d9a78c !important;
}

@media (max-width: 980px) {
  .blog-index .article-card {
    grid-template-columns: 1fr;
  }

  .article-card-media {
    width: 92px;
    height: 92px;
    margin-top: 18px;
  }

  .blog-post {
    grid-template-columns: 1fr;
  }

  .blog-post-visual {
    position: relative;
    top: auto;
    max-width: 360px;
  }
}

/* Blog limpio y compacto: sin ilustraciones en las tarjetas */
.blog-index {
  padding-block: clamp(38px, 5vw, 72px) !important;
}

.blog-index .section-heading.compact {
  margin-bottom: 22px !important;
}

.blog-index .section-heading h2 {
  max-width: 780px;
  font-size: clamp(2.1rem, 4.3vw, 4rem) !important;
}

.blog-card-grid {
  gap: 16px !important;
}

.blog-index .article-card {
  display: flex !important;
  min-height: 150px !important;
  padding: 18px 20px !important;
}

.blog-index .article-card .article-card-copy {
  min-height: auto;
  gap: 12px;
}

.blog-index .article-card h3 {
  max-width: 100%;
  font-size: clamp(1.32rem, 1.65vw, 1.82rem) !important;
  line-height: 1.06;
}

.blog-index .article-card p {
  font-size: 0.74rem !important;
  margin-bottom: 0 !important;
}

.blog-index .article-card a {
  align-self: end;
  margin-top: 10px;
  font-size: 0.9rem !important;
}

.article-card-media,
.article-illo {
  display: none !important;
}

/* Movimiento sutil para los temas del blog */
.blog-topic-list li.reveal-item {
  transform: translateY(14px) scale(0.98);
  transition-duration: 680ms;
}

.blog-topic-list li.reveal-item.is-visible {
  transform: translateY(0) scale(1);
}

.blog-topic-list li {
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.blog-topic-list li:hover {
  transform: translateY(-2px);
  background: rgba(200, 163, 95, 0.14);
  border-color: rgba(200, 163, 95, 0.45);
  color: #f7f4ee;
}

@media (prefers-reduced-motion: reduce) {
  .blog-topic-list li,
  .blog-topic-list li.reveal-item,
  .blog-topic-list li.reveal-item.is-visible,
  .blog-topic-list li:hover {
    transform: none;
    transition: none;
  }
}

/* Blog above-the-fold más compacto */
.blog-hero {
  padding: 58px 0 16px !important;
}

.blog-hero-grid {
  align-items: center !important;
  gap: clamp(18px, 2.5vw, 34px) !important;
}

.blog-label {
  margin-bottom: 8px !important;
  padding: 7px 14px !important;
  font-size: clamp(13px, 1vw, 16px) !important;
}

.blog-hero h1 {
  max-width: 620px !important;
  font-size: clamp(28px, 3.4vw, 54px) !important;
  line-height: 0.94 !important;
}

.blog-hero p:not(.eyebrow) {
  max-width: 620px !important;
  margin-top: 10px !important;
  font-size: clamp(13px, 1vw, 17px) !important;
  line-height: 1.35 !important;
}

.blog-note {
  padding: 14px 16px !important;
  border-radius: 18px !important;
}

.blog-topic-list {
  gap: 7px !important;
}

.blog-topic-list li {
  padding: 6px 10px !important;
  font-size: clamp(11px, 0.82vw, 13px) !important;
}

.blog-index {
  padding: 18px 0 42px !important;
}

.blog-index .section-heading.compact {
  margin-bottom: 16px !important;
}

.blog-index .section-heading .eyebrow {
  margin-bottom: 5px !important;
  font-size: 0.78rem !important;
}

.blog-index .section-heading h2 {
  max-width: 700px !important;
  font-size: clamp(2rem, 3.6vw, 4.1rem) !important;
  line-height: 0.94 !important;
}

@media (max-width: 860px) {
  .blog-hero {
    padding-top: 86px !important;
  }

  .blog-hero-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Movimiento elegante para Formaciones */
.formation-track.reveal-item,
.formation-copy.reveal-item,
.bio-training.reveal-item,
.formation .bio-training-panel.reveal-item {
  transform: translateY(30px) scale(0.985);
}

.formation-track.reveal-item.is-visible,
.formation-copy.reveal-item.is-visible,
.bio-training.reveal-item.is-visible,
.formation .bio-training-panel.reveal-item.is-visible {
  transform: translateY(0) scale(1);
}

.formation-track,
.formation-copy,
.bio-training,
.formation .bio-training-panel {
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease,
    background 300ms ease;
  will-change: transform;
}

.formation-track:hover,
.formation .bio-training-panel:hover,
.bio-training:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(27, 74, 86, 0.16);
}

.formation-track:hover {
  border-color: rgba(200, 163, 95, 0.38);
}

.formation .bio-training-panel:hover {
  border-color: rgba(200, 163, 95, 0.32);
  background:
    radial-gradient(circle at 88% 12%, rgba(200, 163, 95, 0.14), transparent 34%),
    rgba(255, 250, 242, 0.14);
}

.formation-track a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.formation-track a::after {
  content: "→";
  transition: transform 220ms ease;
}

.formation-track:hover a::after {
  transform: translateX(5px);
}

.formation .button-row .button {
  overflow: hidden;
}

.formation .button-row .button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 250, 242, 0.22), transparent);
  transform: translateX(-120%);
  transition: transform 650ms ease;
  pointer-events: none;
}

.formation .button-row .button:hover::after {
  transform: translateX(120%);
}

@media (prefers-reduced-motion: reduce) {
  .formation-track,
  .formation-track:hover,
  .formation-copy,
  .bio-training,
  .bio-training:hover,
  .formation .bio-training-panel,
  .formation .bio-training-panel:hover,
  .formation-track.reveal-item,
  .formation-copy.reveal-item,
  .bio-training.reveal-item,
  .formation .bio-training-panel.reveal-item {
    transform: none;
    transition: none;
  }
}

/* Blog editorial ADN */
.blog-hero {
  padding: 42px 0 10px !important;
  min-height: auto !important;
}

.blog-hero-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr) !important;
  align-items: center !important;
}

.blog-hero h1 {
  max-width: 760px !important;
  font-size: clamp(2.35rem, 4.05vw, 5.25rem) !important;
  line-height: 0.92 !important;
}

.blog-hero p:not(.eyebrow) {
  max-width: 760px !important;
  margin-top: 12px !important;
  font-size: clamp(0.94rem, 1.15vw, 1.2rem) !important;
  line-height: 1.45 !important;
}

.blog-note {
  padding: clamp(18px, 2vw, 28px) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(140deg, rgba(247, 244, 238, 0.14), rgba(239, 233, 222, 0.08)),
    rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(247, 244, 238, 0.22) !important;
  box-shadow: 0 24px 70px rgba(4, 34, 39, 0.16) !important;
}

.blog-note span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-topic-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.blog-topic-list li {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  list-style: none !important;
}

.blog-filter-button {
  appearance: none;
  border: 1px solid rgba(247, 244, 238, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 244, 238, 0.88);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: clamp(0.74rem, 0.82vw, 0.9rem);
  font-weight: 700;
  line-height: 1;
  padding: 9px 13px;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.blog-filter-button:hover,
.blog-filter-button.active {
  transform: translateY(-2px);
  border-color: rgba(200, 163, 95, 0.72);
  background: linear-gradient(135deg, rgba(200, 163, 95, 0.95), rgba(217, 167, 140, 0.82));
  color: var(--blue);
}

/* Blog demo: tres puertas editoriales para ordenar la biblioteca */
.blog-library-panel {
  max-width: 520px !important;
}

.blog-library-panel > p {
  max-width: 34ch !important;
  margin: 0 0 16px !important;
  color: rgba(247, 244, 238, 0.82) !important;
  font-size: clamp(0.82rem, 0.9vw, 0.98rem) !important;
  line-height: 1.45 !important;
}

.blog-topic-list-large {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}

.blog-topic-list-large li,
.blog-topic-list-large .blog-filter-button {
  width: 100% !important;
}

.blog-topic-list-large .blog-filter-button {
  display: grid !important;
  gap: 4px !important;
  padding: 13px 15px !important;
  border-radius: 18px !important;
  text-align: left !important;
  line-height: 1.25 !important;
  background:
    linear-gradient(135deg, rgba(247, 244, 238, 0.13), rgba(247, 244, 238, 0.06)),
    rgba(255, 255, 255, 0.06) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.blog-topic-list-large .blog-filter-button strong,
.blog-topic-list-large .blog-filter-button small {
  display: block !important;
}

.blog-topic-list-large .blog-filter-button strong {
  font-size: clamp(0.9rem, 0.95vw, 1.05rem) !important;
  letter-spacing: 0 !important;
}

.blog-topic-list-large .blog-filter-button small {
  color: rgba(247, 244, 238, 0.68) !important;
  font-size: clamp(0.68rem, 0.72vw, 0.8rem) !important;
  font-weight: 500 !important;
}

.blog-topic-list-large .blog-filter-button:hover,
.blog-topic-list-large .blog-filter-button.active {
  background:
    linear-gradient(135deg, rgba(247, 244, 238, 0.98), rgba(239, 233, 222, 0.88)) !important;
  border-color: rgba(200, 163, 95, 0.74) !important;
  color: var(--blue) !important;
  box-shadow: 0 16px 34px rgba(4, 34, 39, 0.16);
}

.blog-topic-list-large .blog-filter-button:hover small,
.blog-topic-list-large .blog-filter-button.active small {
  color: rgba(27, 74, 86, 0.72) !important;
}

.blog-index {
  padding: 32px 0 54px !important;
}

.blog-index .section-heading.compact {
  margin-bottom: 18px !important;
}

.blog-index .section-heading h2.blog-index-subtitle {
  max-width: 560px !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(1rem, 1.4vw, 1.45rem) !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  color: var(--muted) !important;
}

.blog-card-grid {
  align-items: stretch !important;
  gap: clamp(14px, 1.7vw, 24px) !important;
}

.blog-index .article-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) clamp(84px, 8.5vw, 124px) !important;
  min-height: 196px !important;
  padding: clamp(18px, 2vw, 28px) !important;
  overflow: hidden !important;
  gap: 12px !important;
}

.blog-index .article-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.blog-index .article-card p {
  margin: 0 !important;
}

.blog-index .article-card h3 {
  display: -webkit-box !important;
  min-height: 3.05em;
  margin: 0 !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: clamp(1.42rem, 1.75vw, 2.1rem) !important;
  line-height: 1.02 !important;
  text-overflow: ellipsis;
}

.blog-index .article-card a {
  align-self: flex-start;
  margin-top: auto !important;
}

.blog-index .article-card.is-filtered-out {
  display: none !important;
}

.article-thumb {
  align-self: end;
  justify-self: end;
  position: relative;
  width: clamp(84px, 8.5vw, 124px);
  min-height: clamp(104px, 10vw, 142px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 46% 36%, rgba(255, 255, 255, 0.55), transparent 42%),
    linear-gradient(145deg, rgba(27, 74, 86, 0.14), rgba(200, 163, 95, 0.12));
  border: 1px solid rgba(27, 74, 86, 0.12);
  opacity: 0.94;
  overflow: hidden;
}

.article-thumb::before,
.article-thumb::after,
.article-thumb span {
  content: "";
  position: absolute;
  border: 2px solid rgba(27, 74, 86, 0.42);
  pointer-events: none;
}

.article-thumb::before {
  inset: 22%;
  border-radius: 999px;
}

.article-thumb::after {
  width: 70%;
  height: 34%;
  right: -20%;
  bottom: 16%;
  border-left: 0;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.article-thumb span {
  width: 42%;
  height: 42%;
  left: 18%;
  top: 18%;
  border-right: 0;
  border-bottom: 0;
  border-radius: 999px 0 0 0;
  transform: rotate(-28deg);
}

.article-thumb-bioconstelaciones {
  background:
    radial-gradient(circle at 50% 35%, rgba(168, 195, 160, 0.28), transparent 44%),
    linear-gradient(145deg, rgba(27, 74, 86, 0.1), rgba(200, 163, 95, 0.16));
}

.article-thumb-constelaciones {
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 163, 95, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(216, 167, 177, 0.16), rgba(27, 74, 86, 0.12));
}

.article-thumb-vinculos {
  background:
    radial-gradient(circle at 72% 28%, rgba(216, 167, 177, 0.2), transparent 40%),
    linear-gradient(145deg, rgba(247, 244, 238, 0.7), rgba(168, 195, 160, 0.18));
}

.article-thumb-limites {
  background:
    radial-gradient(circle at 42% 30%, rgba(217, 167, 140, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(239, 233, 222, 0.9), rgba(27, 74, 86, 0.1));
}

.article-thumb-alimentacion {
  background:
    radial-gradient(circle at 52% 40%, rgba(200, 163, 95, 0.24), transparent 40%),
    linear-gradient(145deg, rgba(217, 167, 140, 0.16), rgba(247, 244, 238, 0.9));
}

.article-thumb-sintomas {
  background:
    radial-gradient(circle at 60% 28%, rgba(168, 195, 160, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(27, 74, 86, 0.13), rgba(239, 233, 222, 0.85));
}

.article-page {
  padding: clamp(96px, 10vw, 150px) 0 clamp(36px, 5vw, 74px);
  background:
    radial-gradient(circle at 8% 10%, rgba(168, 195, 160, 0.18), transparent 36%),
    linear-gradient(145deg, var(--cream), var(--ivory));
}

.article-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.48fr);
  align-items: center;
  gap: clamp(26px, 6vw, 92px);
}

.article-page-copy h1 {
  max-width: 980px;
  margin: 14px 0 16px;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 6.1rem);
  line-height: 0.96;
}

.article-return {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.article-return::before {
  content: "←";
  transition: transform 180ms ease;
}

.article-return:hover::before {
  transform: translateX(-3px);
}

.article-date {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.article-page-visual {
  align-self: center;
  justify-self: center;
  width: min(100%, 320px);
  min-height: 320px;
  border-radius: 44px;
  box-shadow: 0 30px 90px rgba(27, 74, 86, 0.12);
}

.article-page-visual::before {
  inset: 24%;
}

.article-body-section {
  padding: clamp(40px, 6vw, 90px) 0;
  background: var(--ivory);
}

.article-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 360px);
  align-items: start;
  gap: clamp(28px, 6vw, 92px);
}

.article-body {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.82;
}

.article-body p {
  margin: 0 0 1.1em;
}

.article-return-bottom {
  margin-top: 18px;
}

.related-articles {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 12px;
}

.related-articles > span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(27, 74, 86, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--blue);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.related-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-card strong {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  line-height: 1.05;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 163, 95, 0.48);
  box-shadow: 0 20px 52px rgba(27, 74, 86, 0.12);
}

@media (max-width: 980px) {
  .blog-hero-grid,
  .article-page-grid,
  .article-body-grid {
    grid-template-columns: 1fr !important;
  }

  .article-page-visual {
    width: min(100%, 260px);
    min-height: 260px;
  }

  .related-articles {
    position: static;
  }
}

@media (max-width: 720px) {
  .blog-hero {
    padding-top: 92px !important;
  }

  .blog-index .article-card {
    grid-template-columns: 1fr !important;
    min-height: 188px !important;
  }

  .article-thumb {
    display: none;
  }
}

/* Movimiento suave para accesos de contacto */
.contact-options a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
}

.contact-options a::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  z-index: -1;
  width: 56%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: skewX(-18deg);
  transition: left 680ms ease;
}

.contact-options a:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 163, 95, 0.42);
  box-shadow: 0 18px 42px rgba(18, 50, 58, 0.22) !important;
}

.contact-options a:hover::after {
  left: 118%;
}

.contact-options a:hover svg {
  transform: translateY(-1px) scale(1.06);
}

.contact-options a svg {
  transition: transform 240ms ease;
}

.contact-options a:nth-child(1).reveal-item {
  --reveal-delay: 120ms;
}

.contact-options a:nth-child(2).reveal-item {
  --reveal-delay: 220ms;
}

.contact-options a:nth-child(3).reveal-item {
  --reveal-delay: 320ms;
}

.contact-options a:nth-child(4).reveal-item {
  --reveal-delay: 420ms;
}

@media (prefers-reduced-motion: reduce) {
  .contact-options a,
  .contact-options a::after,
  .contact-options a svg,
  .contact-options a:hover,
  .contact-options a:hover svg {
    transform: none !important;
    transition: none !important;
  }
}

/* Blog ADN compacto sin ilustraciones */
.blog-hero {
  padding: 96px 0 22px !important;
}

.blog-hero-grid {
  gap: clamp(20px, 3vw, 44px) !important;
}

.blog-label {
  margin-bottom: 8px !important;
  padding: 8px 17px !important;
  font-size: clamp(0.78rem, 0.9vw, 0.95rem) !important;
}

.blog-hero h1 {
  max-width: 820px !important;
  font-size: clamp(2.15rem, 3.25vw, 4.35rem) !important;
  line-height: 0.94 !important;
}

.blog-hero p:not(.eyebrow) {
  max-width: 780px !important;
  font-size: clamp(0.9rem, 1vw, 1.1rem) !important;
}

.blog-note {
  max-width: 440px !important;
  margin-left: auto !important;
  padding: clamp(14px, 1.6vw, 22px) !important;
}

.blog-note span {
  margin-bottom: 10px !important;
  font-size: 0.72rem !important;
}

.blog-filter-button {
  padding: 7px 11px !important;
  font-size: clamp(0.68rem, 0.76vw, 0.82rem) !important;
}

.blog-index {
  padding: 22px 0 48px !important;
}

.blog-index .section-heading.compact {
  margin-bottom: 14px !important;
}

.blog-index .section-heading .eyebrow {
  margin-bottom: 4px !important;
}

.blog-index .section-heading h2.blog-index-subtitle {
  font-size: clamp(0.92rem, 1.15vw, 1.18rem) !important;
}

.blog-index .article-card {
  grid-template-columns: 1fr !important;
  min-height: 154px !important;
  padding: clamp(17px, 1.7vw, 24px) !important;
}

.blog-index .article-card h3 {
  min-height: 2.95em !important;
  font-size: clamp(1.28rem, 1.45vw, 1.72rem) !important;
  line-height: 1.05 !important;
}

.blog-index .article-card a {
  font-size: 0.95rem !important;
}

.blog-index .article-thumb,
.article-page-visual {
  display: none !important;
}

.article-page-grid {
  grid-template-columns: minmax(0, 980px) !important;
}

@media (max-width: 980px) {
  .blog-hero {
    padding-top: 92px !important;
  }

  .blog-note {
    max-width: none !important;
    margin-left: 0 !important;
  }
}

/* Blog cards limpias y siempre visibles */
.blog-index .article-card.reveal-item,
.blog-index .article-card.reveal-item.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

.blog-index .article-card::before,
.blog-index .article-card::after,
.blog-index .article-card .article-thumb,
.blog-index .article-card-media,
.blog-index .article-illo {
  display: none !important;
}

.blog-index .article-card {
  position: relative;
  display: flex !important;
  min-height: 168px !important;
  padding: clamp(20px, 2vw, 28px) !important;
  border-radius: 24px !important;
  border: 1px solid rgba(27, 74, 86, 0.12) !important;
  box-shadow: 0 18px 50px rgba(27, 74, 86, 0.08) !important;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease !important;
}

.blog-index .article-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(200, 163, 95, 0.42) !important;
  box-shadow: 0 24px 64px rgba(27, 74, 86, 0.13) !important;
}

.blog-index .article-card-copy {
  width: 100%;
}

.blog-index .article-card-bioconstelaciones {
  background:
    linear-gradient(180deg, rgba(27, 74, 86, 0.9) 0 7px, transparent 7px),
    linear-gradient(145deg, #edf7f7, #fbfaf6 58%, #e5f1f0) !important;
}

.blog-index .article-card-constelaciones {
  background:
    linear-gradient(180deg, rgba(200, 163, 95, 0.92) 0 7px, transparent 7px),
    linear-gradient(145deg, #fff8ed, #fbfaf6 58%, #f3dfcf) !important;
}

.blog-index .article-card-vinculos {
  background:
    linear-gradient(180deg, rgba(168, 195, 160, 0.95) 0 7px, transparent 7px),
    linear-gradient(145deg, #f1f7ee, #fbfaf6 58%, #e9f2e4) !important;
}

.blog-index .article-card-limites {
  background:
    linear-gradient(180deg, rgba(217, 167, 140, 0.95) 0 7px, transparent 7px),
    linear-gradient(145deg, #fff2ea, #fbfaf6 58%, #f7e1d5) !important;
}

.blog-index .article-card-alimentacion {
  background:
    linear-gradient(180deg, rgba(200, 163, 95, 0.96) 0 7px, transparent 7px),
    linear-gradient(145deg, #fff8e8, #fbfaf6 58%, #f3e7c8) !important;
}

.blog-index .article-card-sintomas {
  background:
    linear-gradient(180deg, rgba(27, 74, 86, 0.82) 0 7px, transparent 7px),
    linear-gradient(145deg, #edf5f3, #fbfaf6 58%, #dfeceb) !important;
}

/* Artículos del blog: más compactos y rápidos */
.article-page {
  padding: clamp(88px, 8vw, 118px) 0 clamp(20px, 3vw, 44px) !important;
}

.article-page-grid {
  grid-template-columns: minmax(0, 940px) !important;
  gap: 0 !important;
}

.article-page-copy h1 {
  max-width: 860px !important;
  margin: 10px 0 12px !important;
  font-size: clamp(1.9rem, 3.15vw, 3.85rem) !important;
  line-height: 1.02 !important;
}

.article-page-copy .eyebrow {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
  font-size: 0.78rem !important;
}

.article-return {
  font-size: 0.92rem !important;
}

.article-date {
  margin-top: 12px !important;
  font-size: 0.92rem !important;
}

.article-page-visual,
.article-thumb {
  display: none !important;
}

.article-page .reveal-item,
.article-body-section .reveal-item,
.blog-hero .reveal-item,
.blog-index .reveal-item {
  transform: translateY(14px);
  transition-duration: 420ms !important;
  transition-delay: 70ms !important;
}

.article-page .reveal-item.is-visible,
.article-body-section .reveal-item.is-visible,
.blog-hero .reveal-item.is-visible,
.blog-index .reveal-item.is-visible {
  transform: translateY(0);
}

.article-page-body .article-page .reveal-item,
.article-page-body .article-body-section .reveal-item {
  transform: translateY(8px) !important;
  transition-duration: 240ms !important;
  transition-delay: 0ms !important;
}

.article-page-body .article-body.reveal-item {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Lectura editorial para notas del Blog ADN */
.article-body-section {
  padding: clamp(30px, 4.5vw, 66px) 0 clamp(46px, 6vw, 86px) !important;
}

.article-body-grid {
  grid-template-columns: minmax(0, 790px) minmax(220px, 320px) !important;
  gap: clamp(24px, 5vw, 70px) !important;
}

.article-body {
  color: #625d55 !important;
  font-size: clamp(0.98rem, 1.02vw, 1.12rem) !important;
  line-height: 1.58 !important;
  letter-spacing: 0 !important;
}

.article-body p {
  margin: 0 0 0.78em !important;
}

.article-body .article-opener {
  margin-bottom: 0.38em !important;
  color: var(--blue) !important;
  font-weight: 600 !important;
}

.article-body .article-lead {
  font-size: clamp(1.14rem, 1.25vw, 1.34rem) !important;
  line-height: 1.42 !important;
}

.article-body .article-prompt {
  margin-top: 1.25em !important;
  margin-bottom: 0.42em !important;
  color: var(--gold) !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
}

.article-body .article-beat {
  margin: 0.42em 0 !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
}

.article-body .article-question {
  margin: 1.25em 0 1.15em !important;
  padding: 0.9em 1em 0.92em 1.05em !important;
  border-left: 4px solid var(--gold) !important;
  border-radius: 0 18px 18px 0 !important;
  background:
    linear-gradient(135deg, rgba(200, 163, 95, 0.14), rgba(247, 244, 238, 0.78)),
    rgba(255, 255, 255, 0.48) !important;
  color: var(--blue) !important;
  font-family: var(--font-serif) !important;
  font-size: clamp(1.22rem, 1.5vw, 1.64rem) !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
}

.article-body .article-quote-line {
  width: fit-content;
  max-width: 100%;
  margin: 0.72em 0 !important;
  padding: 0.2em 0 0.22em 0.95em !important;
  border-left: 2px solid rgba(200, 163, 95, 0.62) !important;
  color: var(--blue) !important;
  font-family: var(--font-serif) !important;
  font-size: clamp(1.12rem, 1.35vw, 1.42rem) !important;
  font-style: italic !important;
  line-height: 1.3 !important;
}

.article-return-bottom {
  margin-top: 1.4rem !important;
  padding: 0.78rem 1.1rem !important;
  border: 1px solid rgba(27, 74, 86, 0.22) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.62) !important;
}

.related-articles {
  top: 104px !important;
}

.related-card {
  border-color: rgba(27, 74, 86, 0.15) !important;
  background:
    linear-gradient(150deg, rgba(247, 244, 238, 0.94), rgba(239, 233, 222, 0.64)) !important;
}

@media (max-width: 880px) {
  .article-body-grid {
    grid-template-columns: 1fr !important;
  }

  .related-articles {
    position: static !important;
  }

  .article-body .article-question {
    font-size: clamp(1.14rem, 6vw, 1.36rem) !important;
  }
}

/* Microinteracciones: Blog y WhatsApp */
@keyframes adn-whatsapp-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 42px rgba(27, 74, 86, 0.22);
  }

  50% {
    transform: translateY(-3px) scale(1.018);
    box-shadow: 0 24px 54px rgba(27, 74, 86, 0.28);
  }
}

.whatsapp-float {
  animation: adn-whatsapp-breathe 4.8s ease-in-out 1.2s infinite;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease !important;
}

.whatsapp-float:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 26px 60px rgba(27, 74, 86, 0.32);
}

.blog-index .article-card {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease !important;
}

.blog-index .article-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 24px 58px rgba(27, 74, 86, 0.14) !important;
}

.blog-index .article-card a {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  transition:
    color 200ms ease,
    transform 200ms ease !important;
}

.blog-index .article-card a::after {
  content: "→";
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  transform: translateX(0);
  transition: transform 200ms ease;
}

.blog-index .article-card:hover a,
.blog-index .article-card a:hover {
  color: var(--gold) !important;
  transform: translateX(2px);
}

.blog-index .article-card:hover a::after,
.blog-index .article-card a:hover::after {
  transform: translateX(7px);
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none !important;
  }

  .blog-index .article-card,
  .blog-index .article-card a,
  .blog-index .article-card a::after {
    transition: none !important;
  }
}

/* Color editorial para tarjetas del Blog */
.blog-index .article-card {
  position: relative !important;
  border: 1px solid rgba(27, 74, 86, 0.12) !important;
  border-radius: 22px !important;
  box-shadow: 0 14px 38px rgba(27, 74, 86, 0.07) !important;
}

.blog-index .article-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  height: 7px !important;
  border-radius: 22px 22px 0 0 !important;
  background: var(--blue) !important;
  opacity: 1 !important;
}

.blog-index .article-card-bioconstelaciones {
  background:
    radial-gradient(circle at 86% 16%, rgba(27, 74, 86, 0.08), transparent 34%),
    linear-gradient(145deg, #f8fbfa 0%, #eaf4f4 100%) !important;
}

.blog-index .article-card-bioconstelaciones::before {
  background: linear-gradient(90deg, var(--blue), #6d9aa0) !important;
}

.blog-index .article-card-constelaciones {
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 163, 95, 0.12), transparent 34%),
    linear-gradient(145deg, #fffaf3 0%, #f3e7dc 100%) !important;
}

.blog-index .article-card-constelaciones::before {
  background: linear-gradient(90deg, #c8a35f, #d9a78c) !important;
}

.blog-index .article-card-vinculos {
  background:
    radial-gradient(circle at 84% 18%, rgba(168, 195, 160, 0.16), transparent 34%),
    linear-gradient(145deg, #fbfcf7 0%, #edf5ea 100%) !important;
}

.blog-index .article-card-vinculos::before {
  background: linear-gradient(90deg, #8dae84, #c8a35f) !important;
}

.blog-index .article-card-limites {
  background:
    radial-gradient(circle at 84% 18%, rgba(217, 167, 140, 0.16), transparent 34%),
    linear-gradient(145deg, #fffaf7 0%, #f6e8df 100%) !important;
}

.blog-index .article-card-limites::before {
  background: linear-gradient(90deg, #d9a78c, #c8a35f) !important;
}

.blog-index .article-card-alimentacion {
  background:
    radial-gradient(circle at 84% 18%, rgba(168, 195, 160, 0.15), transparent 34%),
    linear-gradient(145deg, #fffdf4 0%, #eef5e8 100%) !important;
}

.blog-index .article-card-alimentacion::before {
  background: linear-gradient(90deg, #a8c3a0, #c8a35f) !important;
}

.blog-index .article-card-sintomas {
  background:
    radial-gradient(circle at 86% 16%, rgba(27, 74, 86, 0.1), transparent 34%),
    linear-gradient(145deg, #f7fbfc 0%, #e5f0f2 100%) !important;
}

.blog-index .article-card-sintomas::before {
  background: linear-gradient(90deg, #6d9aa0, var(--blue)) !important;
}

.blog-index .article-card:hover {
  border-color: rgba(27, 74, 86, 0.2) !important;
  box-shadow: 0 24px 58px rgba(27, 74, 86, 0.13) !important;
}

/* Blog: tarjetas con más vida, sin ilustraciones */
.blog-index .article-card {
  min-height: 184px !important;
  border-width: 1px !important;
  overflow: hidden !important;
  transform-origin: center bottom;
  background:
    radial-gradient(circle at 86% 16%, rgba(27, 74, 86, 0.05), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(247, 244, 238, 0.72)) !important;
}

.blog-index .article-card::before {
  height: 9px !important;
  box-shadow: 0 10px 22px rgba(27, 74, 86, 0.09) !important;
}

.blog-index .article-card::after {
  content: "" !important;
  position: absolute !important;
  top: 34px !important;
  bottom: 24px !important;
  left: 0 !important;
  width: 9px !important;
  height: auto !important;
  border-radius: 0 999px 999px 0 !important;
  opacity: 1 !important;
  pointer-events: none !important;
  transform: none !important;
  background: var(--blue) !important;
}

.blog-index .article-card-bioconstelaciones {
  background:
    radial-gradient(circle at 88% 18%, rgba(112, 154, 160, 0.12), transparent 36%),
    linear-gradient(145deg, #fbfdfc 0%, #eef7f7 100%) !important;
}

.blog-index .article-card-constelaciones {
  background:
    radial-gradient(circle at 88% 18%, rgba(217, 167, 140, 0.14), transparent 36%),
    linear-gradient(145deg, #fffaf5 0%, #f6ebe1 100%) !important;
}

.blog-index .article-card-vinculos {
  background:
    radial-gradient(circle at 88% 18%, rgba(168, 195, 160, 0.16), transparent 36%),
    linear-gradient(145deg, #fcfdf8 0%, #edf6e9 100%) !important;
}

.blog-index .article-card-limites {
  background:
    radial-gradient(circle at 88% 18%, rgba(216, 167, 177, 0.14), transparent 36%),
    linear-gradient(145deg, #fffaf7 0%, #f5e8df 100%) !important;
}

.blog-index .article-card-alimentacion {
  background:
    radial-gradient(circle at 88% 18%, rgba(200, 163, 95, 0.14), transparent 36%),
    linear-gradient(145deg, #fffdf4 0%, #eef5e7 100%) !important;
}

.blog-index .article-card-sintomas {
  background:
    radial-gradient(circle at 88% 18%, rgba(27, 74, 86, 0.1), transparent 36%),
    linear-gradient(145deg, #f9fcfd 0%, #e7f3f6 100%) !important;
}

.blog-index .article-card-bioconstelaciones::after {
  background: linear-gradient(180deg, var(--blue), #6d9aa0) !important;
}

.blog-index .article-card-constelaciones::after {
  background: linear-gradient(180deg, #c8a35f, #d9a78c) !important;
}

.blog-index .article-card-vinculos::after {
  background: linear-gradient(180deg, #8dae84, #c8a35f) !important;
}

.blog-index .article-card-limites::after {
  background: linear-gradient(180deg, #d9a78c, #d8a7b1) !important;
}

.blog-index .article-card-alimentacion::after {
  background: linear-gradient(180deg, #a8c3a0, #c8a35f) !important;
}

.blog-index .article-card-sintomas::after {
  background: linear-gradient(180deg, #6d9aa0, var(--blue)) !important;
}

.blog-index .article-card:hover {
  transform: translateY(-7px) scale(1.006) !important;
}

/* Rayas visibles tipo Recursos para tarjetas de Blog */
.blog-index .article-card {
  border-top: 0 !important;
  padding-top: clamp(24px, 2.2vw, 30px) !important;
}

.blog-index .article-card .article-card-copy {
  position: relative !important;
  z-index: 3 !important;
}

.blog-index .article-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 2 !important;
  display: block !important;
  width: 100% !important;
  height: 6px !important;
  border-radius: 22px 22px 0 0 !important;
  opacity: 1 !important;
  transform: none !important;
}

.blog-index .article-card::after {
  content: "" !important;
  position: absolute !important;
  top: 34px !important;
  bottom: 24px !important;
  left: 0 !important;
  z-index: 2 !important;
  display: block !important;
  width: 6px !important;
  height: auto !important;
  border-radius: 0 999px 999px 0 !important;
  opacity: 1 !important;
  transform: none !important;
}

.blog-index .article-card-bioconstelaciones {
  background:
    radial-gradient(circle at 92% 16%, rgba(27, 74, 86, 0.09), transparent 34%),
    linear-gradient(145deg, #f9fcfc 0%, #edf7f7 56%, #e7f2f0 100%) !important;
}

.blog-index .article-card-bioconstelaciones::before,
.blog-index .article-card-bioconstelaciones::after {
  background: linear-gradient(90deg, #1b4a56, #7fa8ad) !important;
}

.blog-index .article-card-constelaciones {
  background:
    radial-gradient(circle at 92% 16%, rgba(200, 163, 95, 0.14), transparent 34%),
    linear-gradient(145deg, #fffaf4 0%, #f6eadf 58%, #f0ddd0 100%) !important;
}

.blog-index .article-card-constelaciones::before,
.blog-index .article-card-constelaciones::after {
  background: linear-gradient(90deg, #c8a35f, #d9a78c) !important;
}

.blog-index .article-card-vinculos {
  background:
    radial-gradient(circle at 92% 16%, rgba(168, 195, 160, 0.2), transparent 34%),
    linear-gradient(145deg, #fcfdf8 0%, #eef6ea 58%, #e4efd9 100%) !important;
}

.blog-index .article-card-vinculos::before,
.blog-index .article-card-vinculos::after {
  background: linear-gradient(90deg, #8fb98b, #c8a35f) !important;
}

.blog-index .article-card-limites {
  background:
    radial-gradient(circle at 92% 16%, rgba(216, 167, 177, 0.18), transparent 34%),
    linear-gradient(145deg, #fff9f7 0%, #f7e8e0 58%, #f1ddd7 100%) !important;
}

.blog-index .article-card-limites::before,
.blog-index .article-card-limites::after {
  background: linear-gradient(90deg, #d9a78c, #d8a7b1) !important;
}

.blog-index .article-card-alimentacion {
  background:
    radial-gradient(circle at 92% 16%, rgba(200, 163, 95, 0.13), transparent 34%),
    linear-gradient(145deg, #fffdf4 0%, #f1f5e8 58%, #e5efd9 100%) !important;
}

.blog-index .article-card-alimentacion::before,
.blog-index .article-card-alimentacion::after {
  background: linear-gradient(90deg, #a8c3a0, #d2ad66) !important;
}

.blog-index .article-card-sintomas {
  background:
    radial-gradient(circle at 92% 16%, rgba(127, 168, 173, 0.16), transparent 34%),
    linear-gradient(145deg, #f9fcfd 0%, #e8f4f6 58%, #dcecf0 100%) !important;
}

.blog-index .article-card-sintomas::before,
.blog-index .article-card-sintomas::after {
  background: linear-gradient(90deg, #7fa8ad, #1b4a56) !important;
}

/* Blog: tarjetas más finas para una lectura tipo biblioteca */
.blog-card-grid {
  gap: clamp(12px, 1.45vw, 20px) !important;
}

.blog-index .article-card {
  grid-template-columns: 1fr !important;
  min-height: 126px !important;
  padding: clamp(15px, 1.35vw, 20px) clamp(18px, 1.8vw, 26px) !important;
  border-radius: 18px !important;
}

.blog-index .article-card::before {
  height: 4px !important;
  border-radius: 18px 18px 0 0 !important;
}

.blog-index .article-card::after {
  top: 20px !important;
  bottom: 18px !important;
  width: 4px !important;
}

.blog-index .article-card-copy {
  gap: 8px !important;
}

.article-card-date {
  position: absolute;
  top: clamp(10px, 0.9vw, 13px);
  right: clamp(8px, 0.85vw, 12px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(27, 74, 86, 0.76);
  font-family: var(--font-sans);
  font-size: clamp(0.62rem, 0.68vw, 0.74rem);
  font-weight: 700;
  line-height: 1;
  padding: 5px 8px;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease;
}

.article-card-date::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.blog-index .article-card h3 {
  min-height: 0 !important;
  font-size: clamp(1.12rem, 1.35vw, 1.55rem) !important;
  line-height: 1.05 !important;
  -webkit-line-clamp: 2 !important;
  padding-right: 0;
}

.blog-index .article-card-copy > p {
  padding-right: clamp(92px, 8vw, 118px) !important;
}

.blog-index .article-card p {
  font-size: clamp(0.68rem, 0.75vw, 0.82rem) !important;
}

.blog-index .article-card a {
  font-size: clamp(0.86rem, 0.92vw, 1rem) !important;
}

.blog-index .article-card:hover {
  transform: translateY(-6px) scale(1.012) !important;
}

.blog-index .article-card:hover .article-card-date {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
}

/* Ajuste final: la fecha queda arriba, a la derecha y fuera del título. */
.blog-index .article-card .article-card-date {
  top: -8px !important;
  right: 2px !important;
  padding: 4px 8px !important;
}

.blog-index .article-card-copy > p {
  padding-right: clamp(112px, 9vw, 132px) !important;
}

.blog-index .article-card:hover .article-card-date {
  transform: translateY(-1px) !important;
}

.designer-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: calc(100% - 32px);
  margin: 18px 0 0 16px;
  padding: 5px 9px 5px 11px;
  border: 1px solid rgba(27, 74, 86, 0.13);
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.9);
  box-shadow: 0 5px 14px rgba(27, 74, 86, 0.06);
  color: #1b4a56;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.designer-credit img {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
}

.designer-credit:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 163, 95, 0.34);
  box-shadow: 0 8px 18px rgba(27, 74, 86, 0.09);
}

/* Hero home: segunda iteración de dirección de arte */
.hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 74% 38%, rgba(27, 74, 86, 0.1), transparent 28%),
    radial-gradient(circle at 18% 14%, rgba(200, 163, 95, 0.1), transparent 23%),
    linear-gradient(115deg, #fcfbf8 0%, #fcfbf8 54%, #f7f8f5 100%) !important;
}

.hero::before {
  inset: 112px auto auto 3.5% !important;
  width: clamp(280px, 35vw, 510px) !important;
  height: clamp(280px, 35vw, 510px) !important;
  opacity: 0.42;
  border: 0 !important;
  border-radius: 50% !important;
  background:
    radial-gradient(ellipse 16% 34% at 50% 29%, transparent 62%, rgba(27, 74, 86, 0.13) 64%, transparent 67%),
    radial-gradient(ellipse 16% 34% at 34% 42%, transparent 62%, rgba(200, 163, 95, 0.15) 64%, transparent 67%),
    radial-gradient(ellipse 16% 34% at 66% 42%, transparent 62%, rgba(200, 163, 95, 0.15) 64%, transparent 67%),
    radial-gradient(ellipse 18% 32% at 24% 62%, transparent 62%, rgba(27, 74, 86, 0.1) 64%, transparent 67%),
    radial-gradient(ellipse 18% 32% at 76% 62%, transparent 62%, rgba(27, 74, 86, 0.1) 64%, transparent 67%),
    radial-gradient(circle at 50% 64%, rgba(200, 163, 95, 0.08), transparent 37%) !important;
  transform: rotate(-4deg);
  pointer-events: none;
}

.hero::after {
  color: rgba(27, 74, 86, 0.035) !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero-media {
  border-width: 9px !important;
  border-radius: 28px !important;
  background-position: center 38% !important;
  filter: saturate(1.12) contrast(1.13) brightness(1.13) !important;
  box-shadow:
    0 42px 90px rgba(27, 74, 86, 0.16),
    0 14px 34px rgba(27, 74, 86, 0.1),
    0 0 0 1px rgba(27, 74, 86, 0.07) !important;
}

.hero-overlay {
  border-radius: 28px !important;
  background:
    linear-gradient(115deg, rgba(252, 251, 248, 0.16), transparent 40%, rgba(27, 74, 86, 0.07)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 45%, rgba(16, 54, 63, 0.19)) !important;
  box-shadow: inset 0 0 80px rgba(16, 54, 63, 0.05);
}

.hero-school {
  padding: 10px 17px 10px 20px !important;
  border-color: rgba(27, 74, 86, 0.18) !important;
  border-radius: 999px !important;
  background:
    linear-gradient(90deg, #1b4a56 0 4px, rgba(255, 255, 255, 0.86) 4px 100%) !important;
  box-shadow:
    0 10px 28px rgba(27, 74, 86, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(10px);
}

.hero h1 {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero .button-primary {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 15px !important;
  background: linear-gradient(135deg, #153f49, #1b4a56 58%, #276574) !important;
  box-shadow:
    0 20px 44px rgba(27, 74, 86, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

.hero-pillars a {
  border-radius: 18px !important;
  box-shadow:
    0 20px 48px rgba(27, 74, 86, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(9px);
}

.hero-pillars a:nth-child(2) {
  background: linear-gradient(145deg, #153f49, #1f5966) !important;
  box-shadow:
    0 24px 52px rgba(27, 74, 86, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
}

.hero-pillars a:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 58px rgba(27, 74, 86, 0.15) !important;
}

@media (max-width: 980px) {
  .hero::before {
    inset: 38vh auto auto -70px !important;
    opacity: 0.28;
  }

  .hero-media,
  .hero-overlay {
    border-radius: 24px !important;
  }
}

/* Hero home: paleta cálida y jerarquía cromática */
.hero {
  background:
    radial-gradient(circle at 76% 28%, rgba(27, 74, 86, 0.12), transparent 28%),
    radial-gradient(circle at 20% 16%, rgba(200, 163, 95, 0.16), transparent 25%),
    radial-gradient(circle at 54% 88%, rgba(189, 123, 91, 0.08), transparent 24%),
    linear-gradient(118deg, #fbf8f1 0%, #f7f1e7 56%, #f3eadc 100%) !important;
}

.hero::before {
  background:
    radial-gradient(ellipse 16% 34% at 50% 29%, transparent 62%, rgba(27, 74, 86, 0.15) 64%, transparent 67%),
    radial-gradient(ellipse 16% 34% at 34% 42%, transparent 62%, rgba(200, 163, 95, 0.24) 64%, transparent 67%),
    radial-gradient(ellipse 16% 34% at 66% 42%, transparent 62%, rgba(200, 163, 95, 0.24) 64%, transparent 67%),
    radial-gradient(ellipse 18% 32% at 24% 62%, transparent 62%, rgba(189, 123, 91, 0.12) 64%, transparent 67%),
    radial-gradient(ellipse 18% 32% at 76% 62%, transparent 62%, rgba(189, 123, 91, 0.12) 64%, transparent 67%),
    radial-gradient(circle at 50% 64%, rgba(200, 163, 95, 0.12), transparent 37%) !important;
}

.hero-school {
  color: #1b4a56 !important;
  border-color: rgba(200, 163, 95, 0.38) !important;
  background:
    linear-gradient(90deg, #c8a35f 0 4px, rgba(239, 226, 202, 0.94) 4px 100%) !important;
  box-shadow:
    0 10px 26px rgba(91, 69, 34, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.58) !important;
}

.hero h1::after {
  background: linear-gradient(90deg, #1b4a56 0 34%, #c8a35f 34% 72%, rgba(189, 123, 91, 0)) !important;
}

.hero-signature {
  color: #1b4a56 !important;
}

.hero-pillars a {
  border-color: rgba(200, 163, 95, 0.27) !important;
  background: rgba(250, 246, 237, 0.94) !important;
}

.hero-pillars a:nth-child(2) {
  border-color: rgba(200, 163, 95, 0.55) !important;
  background: linear-gradient(145deg, #163f49, #1f5966) !important;
}

.hero-pillars a:nth-child(3) {
  border-color: rgba(189, 123, 91, 0.26) !important;
  background: linear-gradient(145deg, rgba(239, 226, 202, 0.97), rgba(244, 232, 213, 0.94)) !important;
}

.hero-pillars span {
  color: #c8a35f !important;
}

.hero-pillars a:nth-child(3) span {
  color: #ad754f !important;
}

/* Hero home: dirección de arte premium */
.hero {
  min-height: min(86vh, 780px) !important;
  background:
    radial-gradient(circle at 16% 20%, rgba(27, 74, 86, 0.07), transparent 27%),
    radial-gradient(circle at 82% 18%, rgba(200, 163, 95, 0.09), transparent 24%),
    #fcfbf8 !important;
}

.hero::before {
  background:
    linear-gradient(90deg, #1b4a56, rgba(27, 74, 86, 0)) 0 92% / 220px 2px no-repeat,
    radial-gradient(circle at 6% 10%, rgba(255, 255, 255, 0.9), transparent 34%) !important;
}

.hero-media {
  inset: 112px 48px 48px auto !important;
  min-height: 535px !important;
  border-color: rgba(252, 251, 248, 0.92) !important;
  filter: saturate(1.08) contrast(1.1) brightness(1.12) !important;
  box-shadow:
    0 32px 74px rgba(27, 74, 86, 0.14),
    0 8px 24px rgba(27, 74, 86, 0.08) !important;
}

.hero-overlay {
  inset: 112px 48px 48px auto !important;
  min-height: 535px !important;
  background:
    linear-gradient(90deg, rgba(252, 251, 248, 0.22), transparent 42%, rgba(27, 74, 86, 0.08)),
    linear-gradient(180deg, transparent 58%, rgba(27, 74, 86, 0.16)) !important;
}

.hero-content {
  min-height: calc(min(86vh, 780px) - 86px) !important;
  padding: 42px 0 46px !important;
}

.hero-school {
  border-color: rgba(27, 74, 86, 0.28) !important;
  background: rgba(252, 251, 248, 0.88) !important;
  box-shadow: inset 3px 0 0 #1b4a56;
}

.hero h1::after {
  background: linear-gradient(90deg, #1b4a56, var(--gold), rgba(200, 163, 95, 0)) !important;
}

.hero .button-primary {
  min-height: 60px !important;
  padding: 17px 30px !important;
  box-shadow: 0 18px 38px rgba(27, 74, 86, 0.2) !important;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease,
    background 320ms ease !important;
}

.hero .button-primary:hover {
  transform: translateY(-3px) !important;
  background: linear-gradient(135deg, #143c46, #286574) !important;
  box-shadow: 0 24px 48px rgba(27, 74, 86, 0.28) !important;
}

.hero-pillars {
  gap: 14px !important;
  margin-top: 20px !important;
}

.hero-pillars a {
  min-height: 88px !important;
  padding: 18px !important;
  border-color: rgba(27, 74, 86, 0.18) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 18px 42px rgba(27, 74, 86, 0.09) !important;
}

.hero-pillars a:nth-child(2) {
  border-color: #1b4a56 !important;
  background: #1b4a56 !important;
  box-shadow: 0 20px 46px rgba(27, 74, 86, 0.2) !important;
}

.hero-pillars a:nth-child(2) span,
.hero-pillars a:nth-child(2) strong,
.hero-pillars a:nth-child(2) small {
  color: #fff !important;
}

.hero-pillars a:nth-child(3) {
  background: rgba(255, 250, 240, 0.94) !important;
}

@media (max-width: 980px) {
  .hero-media,
  .hero-overlay {
    inset: 88px 18px auto 18px !important;
    min-height: 0 !important;
  }

  .hero-content {
    min-height: auto !important;
    padding-bottom: 54px !important;
  }
}

/* Sobre ADN: más editorial, compacto y vivo */
#sobre-adn.intro-band {
  padding: clamp(34px, 4vw, 56px) 0 !important;
  overflow: hidden;
}

#sobre-adn .intro-lab {
  gap: clamp(16px, 2vw, 28px) !important;
  align-items: start !important;
}

#sobre-adn .intro-lead h2 {
  max-width: 880px;
  font-size: clamp(2.1rem, 3.9vw, 4.75rem) !important;
  line-height: 0.98 !important;
}

#sobre-adn .intro-lead p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(0.96rem, 1.02vw, 1.08rem) !important;
  line-height: 1.56 !important;
}

#sobre-adn .intro-route {
  grid-column: 1 / -1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  max-width: min(960px, 100%) !important;
  margin: -2px auto 2px !important;
  padding: 10px 14px !important;
  border: 1px solid rgba(200, 163, 95, 0.36) !important;
  border-radius: 999px !important;
  background: rgba(247, 244, 238, 0.68) !important;
  box-shadow: 0 14px 35px rgba(27, 74, 86, 0.06) !important;
}

#sobre-adn .intro-route::before {
  display: none !important;
}

#sobre-adn .intro-route span {
  color: var(--blue) !important;
  font-size: clamp(0.68rem, 0.74vw, 0.8rem) !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
  animation: escuelaRouteFloat 4.2s ease-in-out infinite;
}

#sobre-adn .intro-route span:nth-of-type(2) {
  animation-delay: 0.25s;
}

#sobre-adn .intro-route span:nth-of-type(3) {
  animation-delay: 0.5s;
}

#sobre-adn .intro-route span:nth-of-type(4) {
  animation-delay: 0.75s;
}

#sobre-adn .intro-route i {
  width: 34px !important;
  height: 1px !important;
  background: linear-gradient(90deg, rgba(27, 74, 86, 0.16), rgba(200, 163, 95, 0.72), rgba(27, 74, 86, 0.16)) !important;
}

#sobre-adn .intro-map {
  gap: clamp(12px, 1.5vw, 18px) !important;
}

#sobre-adn .intro-map article {
  position: relative !important;
  overflow: hidden !important;
  min-height: 136px !important;
  padding: clamp(17px, 1.8vw, 24px) !important;
  border-color: rgba(27, 74, 86, 0.13) !important;
  box-shadow: 0 18px 48px rgba(27, 74, 86, 0.08) !important;
  transition: transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease !important;
}

#sobre-adn .intro-map article:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 56px rgba(27, 74, 86, 0.14) !important;
  border-color: rgba(200, 163, 95, 0.38) !important;
}

#sobre-adn .intro-map article::before {
  content: "" !important;
  position: absolute !important;
  inset: auto 20px 12px 20px !important;
  height: 1px !important;
  background: linear-gradient(90deg, rgba(27, 74, 86, 0.65), rgba(200, 163, 95, 0.75), transparent) !important;
  transform: scaleX(0.32) !important;
  transform-origin: left !important;
  opacity: 0.75 !important;
  transition: transform 420ms ease, opacity 420ms ease !important;
}

#sobre-adn .intro-map article:hover::before {
  transform: scaleX(1) !important;
  opacity: 1 !important;
}

#sobre-adn .intro-map article::after {
  content: "" !important;
  position: absolute !important;
  right: 16px !important;
  top: 16px !important;
  width: 74px !important;
  height: 74px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(200, 163, 95, 0.2), transparent 68%) !important;
  opacity: 0.7 !important;
  pointer-events: none !important;
}

#sobre-adn .intro-map h3 {
  font-size: clamp(1.42rem, 1.85vw, 2rem) !important;
  line-height: 1.02 !important;
}

#sobre-adn .intro-map p {
  font-size: clamp(0.88rem, 0.94vw, 0.98rem) !important;
  line-height: 1.42 !important;
}

#sobre-adn .intro-statement {
  margin-top: clamp(12px, 1.8vw, 20px) !important;
  padding: clamp(18px, 2.1vw, 28px) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(247, 244, 238, 0.12), transparent 28%),
    linear-gradient(135deg, #1b4a56 0%, #214f58 56%, rgba(200, 163, 95, 0.92) 100%) !important;
  box-shadow: 0 20px 50px rgba(27, 74, 86, 0.16) !important;
  transition: transform 420ms ease, box-shadow 420ms ease !important;
}

#sobre-adn .intro-statement:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 26px 60px rgba(27, 74, 86, 0.22) !important;
}

#sobre-adn .intro-statement p {
  font-size: clamp(0.95rem, 1.05vw, 1.1rem) !important;
  line-height: 1.45 !important;
}

#sobre-adn .intro-statement blockquote {
  font-size: clamp(1.35rem, 2vw, 2.15rem) !important;
  line-height: 1.1 !important;
}

@keyframes escuelaRouteFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.86;
  }

  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  #sobre-adn .intro-route span {
    animation: none !important;
  }

  #sobre-adn .intro-map article,
  #sobre-adn .intro-statement {
    transition: none !important;
  }
}

@media (max-width: 760px) {
  #sobre-adn .intro-route {
    justify-content: flex-start !important;
    border-radius: 24px !important;
  }

  #sobre-adn .intro-route i {
    width: 22px !important;
  }
}

/* La Escuela: version editorial compacta y viva */
#sobre-adn.intro-band {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 3.6vw, 58px) 0 !important;
  background:
    radial-gradient(circle at 10% 18%, rgba(200, 163, 95, 0.16), transparent 30%),
    radial-gradient(circle at 88% 36%, rgba(168, 195, 160, 0.22), transparent 34%),
    linear-gradient(135deg, #f7f4ee 0%, #efe9de 100%) !important;
}

#sobre-adn::before {
  content: "ADN";
  position: absolute;
  right: -3vw;
  top: -7vw;
  font-family: "Cardo", serif;
  font-size: clamp(150px, 22vw, 360px);
  line-height: 1;
  color: rgba(27, 74, 86, 0.045);
  pointer-events: none;
}

#sobre-adn .intro-lab {
  position: relative;
  z-index: 1;
  gap: clamp(12px, 1.35vw, 20px) !important;
}

#sobre-adn .intro-lead {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr) !important;
  align-items: end !important;
  gap: clamp(22px, 4vw, 68px) !important;
}

#sobre-adn .intro-lead h2 {
  max-width: 690px !important;
  font-size: clamp(34px, 3.15vw, 54px) !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

#sobre-adn .intro-lead p:not(.eyebrow) {
  max-width: 600px !important;
  font-size: clamp(13px, 0.92vw, 15px) !important;
  line-height: 1.45 !important;
  color: rgba(48, 45, 40, 0.72) !important;
}

#sobre-adn .intro-route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  margin-top: clamp(10px, 1.2vw, 18px) !important;
  padding: 10px 14px;
  border: 1px solid rgba(27, 74, 86, 0.13);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.76);
  box-shadow: 0 16px 38px rgba(27, 74, 86, 0.055);
  animation: escuelaSoftPulse 6s ease-in-out infinite;
}

#sobre-adn .intro-route::before {
  display: none !important;
}

#sobre-adn .intro-route span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #1b4a56;
}

#sobre-adn .intro-route i {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 74, 86, 0.25), rgba(200, 163, 95, 0.75));
}

#sobre-adn .intro-map {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(10px, 1.15vw, 16px) !important;
  margin-top: clamp(10px, 1.4vw, 20px) !important;
}

#sobre-adn .intro-map article {
  position: relative;
  min-height: 128px !important;
  padding: clamp(15px, 1.45vw, 22px) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(27, 74, 86, 0.11) !important;
  box-shadow: 0 20px 44px rgba(27, 74, 86, 0.065) !important;
  overflow: hidden !important;
  opacity: 0;
  transform: translateY(16px);
  animation: escuelaCardRise 650ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease !important;
}

#sobre-adn .intro-map article:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(248, 226, 177, 0.42)) !important;
  animation-delay: 80ms;
}

#sobre-adn .intro-map article:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(168, 195, 160, 0.24)) !important;
  animation-delay: 180ms;
}

#sobre-adn .intro-map article:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(217, 167, 140, 0.24)) !important;
  animation-delay: 280ms;
}

#sobre-adn .intro-map article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1b4a56, #c8a35f, #d9a78c);
  opacity: 0.86;
}

#sobre-adn .intro-map article::after {
  display: none !important;
}

#sobre-adn .intro-map article:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 26px 58px rgba(27, 74, 86, 0.12) !important;
  border-color: rgba(200, 163, 95, 0.38) !important;
}

#sobre-adn .intro-map span {
  width: 42px !important;
  height: 42px !important;
  font-size: 12px !important;
}

#sobre-adn .intro-map h3 {
  margin-top: 12px !important;
  font-size: clamp(21px, 1.55vw, 27px) !important;
  line-height: 1.02 !important;
  color: #1b4a56 !important;
}

#sobre-adn .intro-map p {
  max-width: 35ch;
  margin-top: 8px !important;
  font-size: clamp(12.5px, 0.9vw, 14px) !important;
  line-height: 1.38 !important;
}

#sobre-adn .intro-statement {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
  gap: clamp(18px, 2.4vw, 34px) !important;
  align-items: center !important;
  margin-top: clamp(8px, 1vw, 14px) !important;
  padding: clamp(16px, 1.6vw, 24px) clamp(18px, 2vw, 30px) !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, #1b4a56 0%, #255f68 100%) !important;
  box-shadow: 0 22px 58px rgba(27, 74, 86, 0.16) !important;
}

#sobre-adn .intro-statement p {
  font-size: clamp(13px, 0.94vw, 15px) !important;
  line-height: 1.42 !important;
  color: rgba(255, 252, 246, 0.88) !important;
}

#sobre-adn .intro-statement blockquote {
  margin: 0 !important;
  padding-left: clamp(18px, 2vw, 28px) !important;
  border-left: 3px solid #c8a35f !important;
  font-size: clamp(22px, 2vw, 34px) !important;
  line-height: 1.12 !important;
  color: #fffaf0 !important;
}

@keyframes escuelaCardRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes escuelaSoftPulse {
  0%, 100% {
    transform: translateY(0);
    filter: saturate(1);
  }
  50% {
    transform: translateY(-2px);
    filter: saturate(1.08);
  }
}

@media (max-width: 900px) {
  #sobre-adn .intro-lead,
  #sobre-adn .intro-statement {
    grid-template-columns: 1fr !important;
  }

  #sobre-adn .intro-map {
    grid-template-columns: 1fr !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #sobre-adn .intro-route,
  #sobre-adn .intro-map article {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* La Escuela: version mas compacta, editorial y con movimiento */
#sobre-adn.intro-band {
  padding: clamp(34px, 4.2vw, 58px) 0 !important;
  overflow: hidden;
}

#sobre-adn .intro-lab {
  gap: clamp(10px, 1.35vw, 18px) !important;
}

#sobre-adn .intro-lead {
  gap: clamp(14px, 2.4vw, 34px) !important;
  align-items: center !important;
}

#sobre-adn .intro-lead .eyebrow {
  margin-bottom: -6px !important;
}

#sobre-adn .intro-lead h2 {
  max-width: 720px !important;
  font-size: clamp(30px, 3.05vw, 48px) !important;
  line-height: 0.98 !important;
}

#sobre-adn .intro-lead p:not(.eyebrow) {
  max-width: 560px !important;
  font-size: clamp(13px, 0.92vw, 15px) !important;
  line-height: 1.42 !important;
}

#sobre-adn .intro-route {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(26px, 1fr) auto minmax(26px, 1fr) auto minmax(26px, 1fr) auto;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
  width: min(100%, 1080px);
  margin: clamp(4px, 0.7vw, 10px) auto clamp(2px, 0.8vw, 10px);
  padding: 10px clamp(14px, 2vw, 24px);
  border: 1px solid rgba(200, 163, 95, 0.33);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(239, 233, 222, 0.72)),
    linear-gradient(90deg, rgba(27, 74, 86, 0.05), rgba(200, 163, 95, 0.08), rgba(168, 195, 160, 0.12));
  box-shadow: 0 14px 38px rgba(27, 74, 86, 0.06);
  overflow: hidden;
}

#sobre-adn .intro-route::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(200, 163, 95, 0.22) 45%, transparent 70%);
  transform: translateX(-120%);
  opacity: 0.8;
  pointer-events: none;
}

#sobre-adn .intro-route span {
  position: relative;
  z-index: 1;
  color: var(--green-950);
  font-size: clamp(11px, 0.86vw, 13px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

#sobre-adn .intro-route i {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 74, 86, 0.2), rgba(200, 163, 95, 0.65), rgba(27, 74, 86, 0.18));
}

#sobre-adn .intro-map {
  gap: clamp(10px, 1.15vw, 15px) !important;
}

#sobre-adn .intro-map article {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 1.55vw, 22px) !important;
  border-radius: 22px !important;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms ease,
    border-color 360ms ease,
    background 360ms ease !important;
}

#sobre-adn .intro-map article::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -32%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(12deg) translateX(-110%);
  opacity: 0;
  pointer-events: none;
}

#sobre-adn .intro-map h3 {
  font-size: clamp(19px, 1.45vw, 24px) !important;
}

#sobre-adn .intro-map p {
  font-size: clamp(12px, 0.84vw, 14px) !important;
  line-height: 1.38 !important;
}

#sobre-adn .intro-statement {
  margin-top: clamp(5px, 0.75vw, 10px) !important;
  padding: clamp(14px, 1.75vw, 22px) !important;
  border-radius: 22px !important;
  min-height: 0 !important;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease !important;
}

#sobre-adn .intro-statement p {
  font-size: clamp(12px, 0.92vw, 14px) !important;
  line-height: 1.42 !important;
}

#sobre-adn .intro-statement blockquote {
  font-size: clamp(18px, 1.45vw, 25px) !important;
  line-height: 1.12 !important;
}

@media (prefers-reduced-motion: no-preference) {
  #sobre-adn .intro-route::before {
    animation: introRouteSweep 5.2s ease-in-out infinite;
  }

  #sobre-adn .intro-map article {
    animation: introCardBreathe 6.8s ease-in-out infinite;
  }

  #sobre-adn .intro-map article:nth-child(2) {
    animation-delay: 0.65s;
  }

  #sobre-adn .intro-map article:nth-child(3) {
    animation-delay: 1.3s;
  }

  #sobre-adn .intro-map article:hover {
    transform: translateY(-9px) scale(1.012) !important;
  }

  #sobre-adn .intro-map article:hover::before {
    animation: introCardShine 780ms ease;
    opacity: 1;
  }

  #sobre-adn .intro-statement:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 54px rgba(27, 74, 86, 0.16);
  }
}

@keyframes introRouteSweep {
  0%,
  18% {
    transform: translateX(-120%);
  }

  55%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes introCardBreathe {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes introCardShine {
  from {
    transform: rotate(12deg) translateX(-120%);
  }

  to {
    transform: rotate(12deg) translateX(360%);
  }
}

@media (max-width: 980px) {
  #sobre-adn .intro-route {
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    gap: 8px;
  }

  #sobre-adn .intro-route i {
    display: none;
  }

  #sobre-adn .intro-route span {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  #sobre-adn .intro-route::before,
  #sobre-adn .intro-map article,
  #sobre-adn .intro-map article::before,
  #sobre-adn .intro-statement {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* La Escuela: pulido editorial */
#sobre-adn .intro-lead h2 {
  max-width: 650px !important;
  letter-spacing: 0 !important;
}

#sobre-adn .intro-lead p:not(.eyebrow) {
  max-width: 520px !important;
}

#sobre-adn .intro-route {
  width: min(100%, 920px);
  padding: 8px clamp(12px, 1.6vw, 20px);
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.78), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, rgba(27, 74, 86, 0.07), rgba(200, 163, 95, 0.12), rgba(168, 195, 160, 0.13));
}

#sobre-adn .intro-route span {
  font-size: clamp(10px, 0.78vw, 12px);
}

#sobre-adn .intro-map {
  align-items: stretch;
}

#sobre-adn .intro-map article {
  min-height: 158px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  border: 1px solid rgba(27, 74, 86, 0.11) !important;
  box-shadow: 0 18px 44px rgba(27, 74, 86, 0.065) !important;
}

#sobre-adn .intro-map article:nth-child(1) {
  background:
    radial-gradient(circle at 92% 10%, rgba(200, 163, 95, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 244, 238, 0.92)) !important;
}

#sobre-adn .intro-map article:nth-child(2) {
  background:
    radial-gradient(circle at 92% 12%, rgba(168, 195, 160, 0.28), transparent 40%),
    linear-gradient(135deg, rgba(246, 250, 246, 0.92), rgba(239, 233, 222, 0.84)) !important;
}

#sobre-adn .intro-map article:nth-child(3) {
  background:
    radial-gradient(circle at 92% 12%, rgba(217, 167, 140, 0.24), transparent 40%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.9), rgba(247, 238, 231, 0.88)) !important;
}

#sobre-adn .intro-map article::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 74, 86, 0.24), transparent);
  opacity: 0.55;
}

#sobre-adn .intro-map article span {
  box-shadow: 0 10px 24px rgba(27, 74, 86, 0.11);
}

#sobre-adn .intro-map article h3 {
  margin-top: clamp(12px, 1.1vw, 16px) !important;
}

#sobre-adn .intro-statement {
  background:
    linear-gradient(105deg, rgba(27, 74, 86, 0.97), rgba(31, 92, 101, 0.94)),
    radial-gradient(circle at 88% 18%, rgba(200, 163, 95, 0.22), transparent 35%) !important;
  border: 1px solid rgba(200, 163, 95, 0.32) !important;
}

#sobre-adn .intro-statement p {
  color: rgba(255, 252, 247, 0.9) !important;
}

#sobre-adn .intro-statement blockquote {
  color: #fff8ee !important;
  max-width: 680px;
}

@media (prefers-reduced-motion: no-preference) {
  #sobre-adn .intro-lead h2,
  #sobre-adn .intro-lead p:not(.eyebrow),
  #sobre-adn .intro-route,
  #sobre-adn .intro-statement {
    animation: escuelaSoftIn 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  #sobre-adn .intro-lead p:not(.eyebrow) {
    animation-delay: 90ms;
  }

  #sobre-adn .intro-route {
    animation-delay: 160ms;
  }

  #sobre-adn .intro-map article {
    animation:
      escuelaCardIn 720ms cubic-bezier(0.22, 1, 0.36, 1) both,
      introCardBreathe 7.2s ease-in-out infinite;
  }

  #sobre-adn .intro-map article:nth-child(1) {
    animation-delay: 220ms, 0s;
  }

  #sobre-adn .intro-map article:nth-child(2) {
    animation-delay: 330ms, 0.7s;
  }

  #sobre-adn .intro-map article:nth-child(3) {
    animation-delay: 440ms, 1.4s;
  }

  #sobre-adn .intro-statement {
    animation-delay: 520ms;
  }
}

@keyframes escuelaSoftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes escuelaCardIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* FAQ: acompañamiento ADN en tarjetas */
.faq {
  padding: clamp(3.8rem, 6vw, 5.8rem) clamp(1rem, 3vw, 2rem) !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 163, 95, 0.12), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(168, 195, 160, 0.16), transparent 26%),
    linear-gradient(135deg, #f7f4ee 0%, #efe9de 100%) !important;
}

.faq-panel {
  max-width: 1180px;
  margin: 0 auto;
}

.faq-heading {
  max-width: 780px;
  margin: 0 0 clamp(1.5rem, 3vw, 2.3rem) !important;
}

.faq-heading h2 {
  color: #1b4a56;
  font-size: clamp(2.15rem, 4.3vw, 4.25rem);
  line-height: 0.98;
  max-width: 720px;
}

.faq-intro {
  max-width: 650px;
  margin-top: 0.8rem;
  color: #706961;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.55;
}

.faq-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.2rem);
}

.faq-card {
  --faq-accent: #1b4a56;
  --faq-fill: rgba(255, 255, 255, 0.72);
  position: relative;
  min-height: 255px;
  padding: clamp(1.15rem, 2vw, 1.55rem);
  overflow: hidden;
  border: 1px solid rgba(27, 74, 86, 0.13);
  border-top: 5px solid var(--faq-accent);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--faq-accent) 14%, transparent), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), var(--faq-fill));
  box-shadow: 0 18px 46px rgba(27, 74, 86, 0.08);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.faq-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 128px;
  height: 128px;
  border: 1px solid color-mix(in srgb, var(--faq-accent) 28%, transparent);
  border-radius: 50%;
  opacity: 0.45;
}

.faq-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--faq-accent) 32%, transparent);
  box-shadow: 0 24px 58px rgba(27, 74, 86, 0.13);
}

.faq-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.05rem;
  border-radius: 999px;
  background: var(--faq-accent);
  color: #fffaf0;
  font-weight: 800;
  font-size: 0.86rem;
}

.faq-card h3 {
  margin: 0 0 0.75rem;
  color: #1b4a56;
  font-family: "Cardo", Georgia, serif;
  font-size: clamp(1.35rem, 1.65vw, 1.72rem);
  line-height: 1.04;
}

.faq-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #69625a;
  font-size: 0.95rem;
  line-height: 1.52;
}

.faq-card-blue {
  --faq-accent: #1b4a56;
  --faq-fill: rgba(226, 242, 244, 0.66);
}

.faq-card-terracotta {
  --faq-accent: #d9a78c;
  --faq-fill: rgba(250, 228, 216, 0.72);
}

.faq-card-sage {
  --faq-accent: #8faf87;
  --faq-fill: rgba(231, 242, 226, 0.72);
}

.faq-card-gold {
  --faq-accent: #c8a35f;
  --faq-fill: rgba(250, 237, 200, 0.76);
}

.faq-card-rose {
  --faq-accent: #d8a7b1;
  --faq-fill: rgba(248, 226, 231, 0.72);
}

.faq-card-cream {
  --faq-accent: #6f8f97;
  --faq-fill: rgba(247, 244, 238, 0.92);
}

.faq-card-grid .reveal-item:nth-child(2) {
  transition-delay: 90ms;
}

.faq-card-grid .reveal-item:nth-child(3) {
  transition-delay: 180ms;
}

.faq-card-grid .reveal-item:nth-child(4) {
  transition-delay: 270ms;
}

.faq-card-grid .reveal-item:nth-child(5) {
  transition-delay: 360ms;
}

.faq-card-grid .reveal-item:nth-child(6) {
  transition-delay: 450ms;
}

@media (max-width: 980px) {
  .faq-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .faq-card-grid {
    grid-template-columns: 1fr;
  }

  .faq-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-card,
  .faq-card:hover {
    transform: none;
    transition: none;
  }
}

/* Tienda ADN */
.nav-links a:not(.nav-cta) {
  padding-inline: 10px;
}

.shop {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.4rem) clamp(1.1rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 10% 12%, rgba(200, 163, 95, 0.16), transparent 30%),
    radial-gradient(circle at 92% 0%, rgba(27, 74, 86, 0.10), transparent 26%),
    linear-gradient(135deg, #f7f4ee 0%, #efe9de 100%);
}

.shop::before {
  content: "TIENDA";
  position: absolute;
  right: -0.1em;
  top: -0.18em;
  font-family: "Cardo", serif;
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(27, 74, 86, 0.045);
  pointer-events: none;
}

.shop-shell,
.shop-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.shop-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: stretch;
}

.shop-copy h2 {
  max-width: 840px;
  margin: 0.35rem 0 1rem;
  color: #1b4a56;
  font-family: "Cardo", serif;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.shop-copy p:not(.eyebrow) {
  max-width: 720px;
  color: #6d665e;
  font-size: clamp(1rem, 1.18vw, 1.22rem);
  line-height: 1.72;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.shop-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 270px;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid rgba(27, 74, 86, 0.12);
  border-top: 6px solid #c8a35f;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(27, 74, 86, 0.10);
}

.shop-note span {
  width: fit-content;
  margin-bottom: 1.1rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(200, 163, 95, 0.18);
  color: #1b4a56;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-note h3,
.shop-card h3 {
  margin: 0;
  color: #1b4a56;
  font-family: "Cardo", serif;
  letter-spacing: 0;
}

.shop-note h3 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.03;
}

.shop-note p {
  margin: 1rem 0 0;
  color: #6d665e;
  line-height: 1.65;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.15rem;
}

.shop-card {
  --shop-accent: #1b4a56;
  --shop-tint: rgba(27, 74, 86, 0.06);
  position: relative;
  min-height: 188px;
  overflow: hidden;
  padding: 1.35rem 1.3rem;
  border: 1px solid rgba(27, 74, 86, 0.12);
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.88), var(--shop-tint));
  box-shadow: 0 14px 38px rgba(27, 74, 86, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.shop-card:nth-child(2) {
  --shop-accent: #c8a35f;
  --shop-tint: rgba(200, 163, 95, 0.13);
}

.shop-card:nth-child(3) {
  --shop-accent: #d9a78c;
  --shop-tint: rgba(217, 167, 140, 0.14);
}

.shop-card:nth-child(4) {
  --shop-accent: #8fb09a;
  --shop-tint: rgba(143, 176, 154, 0.14);
}

.shop-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--shop-accent);
}

.shop-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 128px;
  height: 128px;
  border: 1px solid var(--shop-accent);
  border-radius: 50%;
  opacity: 0.18;
}

.shop-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 74, 86, 0.2);
  box-shadow: 0 22px 48px rgba(27, 74, 86, 0.12);
}

.shop-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--shop-accent);
  font-family: "Cardo", serif;
  font-weight: 700;
}

.shop-card h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1;
}

.shop-card p {
  margin: 0.75rem 0 0;
  color: #6d665e;
  font-size: 0.96rem;
  line-height: 1.52;
}

@media (max-width: 1120px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .shop-shell {
    grid-template-columns: 1fr;
  }

  .shop-actions .button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .shop {
    padding-block: 3.2rem;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-card,
  .shop-card:hover {
    transition: none;
    transform: none;
  }
}

/* Tienda ADN + FAQ: versión más compacta, viva y editorial */
.shop {
  padding: clamp(3rem, 5.5vw, 5rem) clamp(1rem, 4vw, 4rem);
}

.shop::before {
  top: -0.14em;
  font-size: clamp(6rem, 15vw, 17rem);
}

.shop-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(250px, 0.5fr);
  gap: clamp(1rem, 3vw, 2rem);
}

.shop-copy h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.shop-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.55;
}

.shop-actions {
  margin-top: 1rem;
}

.shop-note {
  min-height: 210px;
  padding: clamp(1.05rem, 2.2vw, 1.55rem);
  border-top-width: 4px;
  border-radius: 22px;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.shop-note:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(27, 74, 86, 0.12);
}

.shop-note h3 {
  font-size: clamp(1.45rem, 2.25vw, 2.2rem);
  line-height: 1.04;
}

.shop-note p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.shop-grid {
  gap: 0.85rem;
  margin-top: 1rem;
}

.shop-card {
  min-height: 154px;
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 20px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.shop-card::before {
  width: 4px;
}

.shop-card::after {
  right: 0.85rem;
  top: auto;
  bottom: 0.85rem;
  width: 62px;
  height: 62px;
  opacity: 0.16;
  transition: transform 260ms ease, opacity 260ms ease;
}

.shop-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(27, 74, 86, 0.22);
  box-shadow: 0 20px 44px rgba(27, 74, 86, 0.13);
}

.shop-card:hover::after {
  transform: scale(1.12);
  opacity: 0.25;
}

.shop-number {
  width: 1.95rem;
  height: 1.95rem;
  margin-bottom: 0.65rem;
  font-size: 0.85rem;
}

.shop-card h3 {
  font-size: clamp(1.1rem, 1.35vw, 1.4rem);
  line-height: 1.04;
}

.shop-card p {
  margin-top: 0.48rem;
  font-size: 0.84rem;
  line-height: 1.42;
}

.faq {
  padding: clamp(2.8rem, 4.8vw, 4.7rem) clamp(1rem, 3vw, 2rem);
}

.faq-heading {
  max-width: none;
  margin: 0 0 clamp(1.15rem, 2.4vw, 1.75rem);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.56fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
}

.faq-heading h2 {
  max-width: 640px;
  font-size: clamp(2rem, 3.7vw, 3.75rem);
  line-height: 1;
}

.faq-intro {
  max-width: 460px;
  margin-top: 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.5;
}

.faq-card-grid {
  gap: clamp(0.75rem, 1.35vw, 1rem);
}

.faq-card {
  min-height: 190px;
  padding: clamp(0.95rem, 1.5vw, 1.15rem);
  border-top-width: 4px;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(27, 74, 86, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.faq-card::after {
  right: 0.85rem;
  bottom: 0.7rem;
  width: 68px;
  height: 68px;
  opacity: 0.22;
}

.faq-card:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 22px 50px rgba(27, 74, 86, 0.13);
}

.faq-card span {
  width: 34px;
  height: 34px;
  margin-bottom: 0.7rem;
  font-size: 0.74rem;
}

.faq-card h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.12rem, 1.35vw, 1.38rem);
  line-height: 1.08;
}

.faq-card p {
  font-size: 0.86rem;
  line-height: 1.42;
}

@media (max-width: 980px) {
  .faq-heading,
  .shop-shell {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    max-width: 680px;
  }

  .faq-card-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .faq-card-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .faq-card,
  .shop-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-note,
  .shop-card,
  .faq-card,
  .shop-note:hover,
  .shop-card:hover,
  .faq-card:hover {
    transition: none;
    transform: none;
  }
}

/* Ajuste final: Tienda y FAQ con mas ritmo visual */
.shop {
  scroll-margin-top: 112px;
  opacity: 1;
  transform: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(200, 163, 95, 0.16), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(168, 195, 160, 0.2), transparent 28%),
    linear-gradient(135deg, #f7f4ee 0%, #efe9de 100%);
}

.shop .reveal-item {
  opacity: 1;
  transform: none;
}

.shop-copy .eyebrow,
.faq-heading .eyebrow {
  color: var(--gold);
}

.shop-note {
  background:
    linear-gradient(135deg, rgba(27, 74, 86, 0.94), rgba(43, 91, 101, 0.86)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent);
  color: #fffaf0;
  border-color: rgba(200, 163, 95, 0.55);
}

.shop-note span {
  color: var(--gold);
}

.shop-note h3,
.shop-note p {
  color: #fffaf0;
}

.shop-card:nth-child(1) {
  background: linear-gradient(145deg, rgba(232, 244, 243, 0.88), rgba(255, 253, 247, 0.96));
}

.shop-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(251, 235, 225, 0.9), rgba(255, 253, 247, 0.96));
}

.shop-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(241, 248, 236, 0.9), rgba(255, 253, 247, 0.96));
}

.shop-card:nth-child(4) {
  background: linear-gradient(145deg, rgba(255, 246, 224, 0.9), rgba(255, 253, 247, 0.96));
}

.faq {
  background:
    radial-gradient(circle at 8% 14%, rgba(168, 195, 160, 0.16), transparent 26%),
    radial-gradient(circle at 88% 74%, rgba(217, 167, 140, 0.16), transparent 28%),
    var(--cream);
}

.faq-heading {
  align-items: center;
}

.faq-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-card {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  border-width: 1px;
  border-top-width: 5px;
}

.faq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.72), transparent 34%);
  pointer-events: none;
}

.faq-card > * {
  position: relative;
  z-index: 1;
}

.faq-card span {
  background: rgba(27, 74, 86, 0.94);
  color: #fffaf0;
  transition: transform 240ms ease, background 240ms ease;
}

.faq-card:hover span {
  transform: scale(1.08);
  background: var(--gold);
  color: var(--blue);
}

.faq-card-blue {
  background: linear-gradient(145deg, rgba(226, 243, 245, 0.95), rgba(255, 253, 247, 0.98));
  border-color: rgba(27, 74, 86, 0.42);
  border-top-color: var(--blue);
}

.faq-card-terracotta {
  background: linear-gradient(145deg, rgba(252, 232, 220, 0.95), rgba(255, 253, 247, 0.98));
  border-color: rgba(217, 167, 140, 0.48);
  border-top-color: #d9a78c;
}

.faq-card-sage {
  background: linear-gradient(145deg, rgba(235, 246, 229, 0.95), rgba(255, 253, 247, 0.98));
  border-color: rgba(168, 195, 160, 0.52);
  border-top-color: #a8c3a0;
}

.faq-card-gold {
  background: linear-gradient(145deg, rgba(255, 247, 224, 0.95), rgba(255, 253, 247, 0.98));
  border-color: rgba(200, 163, 95, 0.5);
  border-top-color: var(--gold);
}

.faq-card-rose {
  background: linear-gradient(145deg, rgba(250, 229, 233, 0.95), rgba(255, 253, 247, 0.98));
  border-color: rgba(216, 167, 177, 0.5);
  border-top-color: #d8a7b1;
}

.faq-card-cream {
  background: linear-gradient(145deg, rgba(247, 244, 238, 0.96), rgba(239, 233, 222, 0.92));
  border-color: rgba(200, 163, 95, 0.4);
  border-top-color: #b9c9c8;
}

@media (max-width: 980px) {
  .faq-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .faq-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog: biblioteca compacta por tres entradas principales */
.blog-library-panel {
  max-width: 390px !important;
  padding: clamp(14px, 1.25vw, 20px) !important;
  border-radius: 24px !important;
}

.blog-library-panel > span {
  display: block !important;
  margin-bottom: 12px !important;
}

.blog-library-panel > p {
  display: none !important;
}

.blog-library-panel .blog-topic-list-large {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
}

.blog-library-panel .blog-topic-list-large li {
  flex: 0 0 auto !important;
  width: auto !important;
}

.blog-library-panel .blog-topic-list-large .blog-filter-button {
  width: auto !important;
  min-height: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 9px 13px !important;
  border-radius: 999px !important;
  text-align: center !important;
  font-size: clamp(0.72rem, 0.76vw, 0.86rem) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

.blog-library-panel .blog-topic-list-large .blog-filter-button:hover,
.blog-library-panel .blog-topic-list-large .blog-filter-button.active {
  background: linear-gradient(135deg, rgba(200, 163, 95, 0.96), rgba(217, 167, 140, 0.72)) !important;
  border-color: rgba(247, 244, 238, 0.55) !important;
  color: var(--blue) !important;
}

@media (max-width: 700px) {
  .blog-library-panel {
    max-width: 100% !important;
  }

  .blog-library-panel .blog-topic-list-large .blog-filter-button {
    white-space: normal !important;
  }
}

/* Blog: títulos más contenidos para que nada se pise */
.blog-index .article-card-copy {
  grid-template-rows: auto minmax(2.45em, auto) auto !important;
  row-gap: 9px !important;
}

.blog-index .article-card h3 {
  font-size: clamp(1rem, 1.12vw, 1.28rem) !important;
  line-height: 1.08 !important;
  min-height: 2.25em !important;
  max-height: 2.35em !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
}

.blog-index .article-card a {
  padding-top: 2px !important;
}

/* Blog: alineación editorial fija en todas las tarjetas */
.blog-index .article-card {
  min-height: 132px !important;
}

.blog-index .article-card-copy {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-rows: auto minmax(2.95em, auto) auto !important;
  align-content: start !important;
  column-gap: 14px !important;
  row-gap: 8px !important;
  height: 100% !important;
  position: relative !important;
}

.blog-index .article-card-copy > p {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: center !important;
  padding-right: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.blog-index .article-card .article-card-date {
  position: static !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: center !important;
  justify-self: end !important;
  transform: none !important;
  white-space: nowrap !important;
}

.blog-index .article-card h3 {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  align-self: start !important;
  min-height: 2.55em !important;
  margin: 0 !important;
}

.blog-index .article-card a {
  grid-column: 1 / -1 !important;
  grid-row: 3 !important;
  align-self: end !important;
  margin-top: 0 !important;
}

.blog-index .article-card:hover .article-card-date {
  transform: translateY(-1px) !important;
}
/* Home original: mejoras funcionales posteriores */
@media (min-width: 1101px) {
  .home-page .nav-links {
    gap: 2px;
    padding: 5px 7px;
  }

  .home-page .nav-links a:not(.nav-cta):not(.nav-icon) {
    padding-inline: 10px;
  }

  .home-page .nav-links .nav-group-start {
    margin-left: 10px;
  }

  .home-page .nav-links .nav-group-start::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    width: 1px;
    height: 18px;
    background: rgba(201, 124, 98, .48);
    transform: translateY(-50%);
  }
}

.home-page .language-options {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: .35rem;
  margin-left: .2rem;
}

.home-page .language-options .language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  padding: .35rem .48rem;
  border: 1px solid rgba(27, 74, 86, .25);
  border-radius: 999px;
  color: #1B4A56;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.home-page .language-options .language-switch:hover,
.home-page .language-options .language-switch.is-active {
  background: #1B4A56;
  color: #F8F5EF;
}

.home-page .hero-media {
  overflow: hidden;
  background: none !important;
}

.home-page .hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  background-position: center 48%;
  background-size: cover;
  opacity: 0;
  transform: scale(1.015);
  animation: heroCrossfade 12s ease-in-out infinite;
  will-change: opacity, transform;
}

.home-page .hero-slide-main {
  background-image: url("assets/hero-constelaciones-mujeres-01.png");
}

.home-page .hero-slide-training {
  background-image: url("assets/hero-constelaciones-mujeres-02.png");
  animation-delay: -8s;
}

.home-page .hero-slide-experience {
  background-image: url("assets/hero-constelaciones-mujeres-03.png");
  animation-delay: -4s;
}

@media (max-width: 760px) {
  .home-page .hero {
    --home-hero-image-height: clamp(238px, 68vw, 290px);
  }

  .home-page .hero-media,
  .home-page .hero-overlay {
    height: var(--home-hero-image-height) !important;
  }

  .home-page .hero-content {
    padding-top: calc(var(--home-hero-image-height) + 26px) !important;
  }

  .home-page .hero h1 {
    font-size: clamp(35px, 10.2vw, 42px) !important;
    line-height: 1 !important;
  }
}

@keyframes heroCrossfade {
  0%, 24% {
    opacity: 1;
    transform: scale(1.015);
  }
  36%, 88% {
    opacity: 0;
    transform: scale(1.025);
  }
  100% {
    opacity: 1;
    transform: scale(1.015);
  }
}

.home-page .hero-title-line,
.home-page .hero.is-hero-ready .hero-title-line {
  opacity: 1;
  transform: none;
  animation: none;
}

.home-page .hero-title-word {
  display: inline-block;
  white-space: nowrap;
}

.home-page .hero-title-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(.28em);
}

.home-page .hero.is-hero-ready .hero-title-letter {
  animation: heroLetterIn 680ms cubic-bezier(.22, 1, .36, 1) var(--letter-delay) forwards;
}

@keyframes heroLetterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-page .symbol-section .symbol-mark::before {
  animation: adn-symbol-orbit 12s linear infinite !important;
}

.home-page .symbol-section .symbol-mark img {
  transform-origin: center;
  animation: adn-symbol-breathe 4.2s ease-in-out infinite !important;
}

@keyframes adn-symbol-breathe {
  0%, 100% {
    transform: translateY(5px) scale(.985);
  }
  50% {
    transform: translateY(-7px) scale(1.025);
  }
}

.home-page #tienda .adn-shop-note {
  animation: adn-shop-float 5.5s ease-in-out infinite;
}

.home-page #tienda .adn-shop-card {
  border-top: 3px solid var(--shop-accent) !important;
  transition: transform 280ms ease, box-shadow 280ms ease !important;
}

.home-page #tienda .adn-shop-card:nth-child(1) { --shop-accent: #1B4A56; }
.home-page #tienda .adn-shop-card:nth-child(2) { --shop-accent: #C8A35F; }
.home-page #tienda .adn-shop-card:nth-child(3) { --shop-accent: #1B4A56; }

.home-page #tienda .adn-shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(27, 74, 86, .12);
}

@keyframes adn-shop-float {
  50% { transform: translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-slide,
  .home-page .hero-title-letter,
  .home-page .symbol-section .symbol-mark::before,
  .home-page .symbol-section .symbol-mark img,
  .home-page #tienda .adn-shop-note {
    animation: none !important;
  }

  .home-page .hero-slide {
    opacity: 0;
    transform: none;
  }

  .home-page .hero-slide-main,
  .home-page .hero-title-letter {
    opacity: 1;
  }
}

/* Contraste final de la Home: azul ADN, dorado y fondos cálidos */
.home-page #sobre-adn .intro-map article::before {
  background: linear-gradient(90deg, #1B4A56, #C8A35F, #1B4A56);
}

.home-page .appointment-options article:nth-child(2) .button-outline.light,
.home-page .offer-card-featured .whatsapp-button {
  background: linear-gradient(135deg, #EADDBF, #C8A35F);
  color: #1B4A56 !important;
}

.home-page .contact-options a:nth-child(2) {
  background: linear-gradient(135deg, #FCFAF5, #E8DFCF) !important;
}

.home-page .contact-options a:nth-child(3) {
  background: linear-gradient(135deg, #F5EBD5, #C8A35F) !important;
  color: #1B4A56 !important;
}

.home-page .faq-card-terracotta,
.home-page .faq-card-rose {
  --faq-accent: #C8A35F;
  --faq-fill: rgba(242, 236, 223, .94);
  background: linear-gradient(145deg, #F2ECDF, #FCFAF5) !important;
  border-color: rgba(200, 163, 95, .42) !important;
  border-top-color: #C8A35F !important;
}

.home-page .faq-card-sage,
.home-page .faq-card-cream {
  --faq-accent: #1B4A56;
  --faq-fill: rgba(252, 250, 245, .96);
  background: linear-gradient(145deg, #FCFAF5, #EEE8DD) !important;
  border-color: rgba(27, 74, 86, .22) !important;
  border-top-color: #1B4A56 !important;
}

.home-page #tienda .adn-shop-card,
.home-page #tienda .shop-card {
  color: #26343A;
}

.home-page #tienda :is(h2, h3, p, span),
.home-page #faq :is(h2, h3, p, summary) {
  color: #26343A;
}

/* Footer Home más fino */
.home-page .site-footer {
  padding: 18px 0 16px;
}

.home-page .footer-inner {
  gap: 5px;
}

.home-page .designer-credit {
  margin-top: 8px;
}

/* Sistema de tamaño común: todas las secciones siguen el lienzo de la Home */
:root {
  --home-section-width: 1180px;
  --home-section-gutter: 56px;
}

.container,
.hero-content {
  width: min(
    var(--home-section-width),
    calc(100% - var(--home-section-gutter))
  ) !important;
}

/* Los artículos conservan una medida de lectura accesible dentro del lienzo. */
.article-body-section .container {
  width: min(
    var(--home-section-width),
    calc(100% - var(--home-section-gutter))
  ) !important;
}

@media (max-width: 760px) {
  :root {
    --home-section-gutter: 28px;
  }
}

/* Talleres: escala 20% menor y acciones siempre en una misma fila */
.home-page .workshops {
  padding: clamp(30px, 3.85vw, 46px) 0 !important;
}

.home-page .workshops .section-heading.compact {
  max-width: 688px;
  margin-bottom: 14px !important;
}

.home-page .workshops .section-heading h2 {
  max-width: 544px;
  font-size: clamp(25px, 2.05vw, 32px) !important;
}

.home-page .workshops .section-heading p:not(.eyebrow) {
  max-width: 608px !important;
  font-size: clamp(13px, 0.9vw, 14px) !important;
}

.home-page .workshop-feature {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.3fr);
  gap: 12px;
  max-width: 880px;
}

.home-page .offer-card-featured {
  grid-template-columns: minmax(180px, 0.58fr) minmax(0, 1fr) !important;
}

.home-page .offer-card-featured > img {
  min-height: 200px;
}

.home-page .offer-card-featured > div {
  padding: clamp(14px, 1.6vw, 22px) !important;
  gap: 10px;
}

.home-page .offer-card-featured .date-badge {
  width: 58px;
  height: 58px;
  margin-bottom: 4px;
  font-size: 16px;
}

.home-page .offer-card-featured h3 {
  max-width: none;
  font-size: clamp(18px, 1.65vw, 22px) !important;
  line-height: 1.02;
}

.home-page .offer-card-featured p:not(.tag),
.home-page .offer-card-featured li {
  font-size: clamp(12px, 0.82vw, 13px) !important;
}

.home-page .offer-card-featured .workshop-actions {
  min-height: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px !important;
  margin-top: 4px;
  padding: 0 !important;
}

.home-page .offer-card-featured .workshop-actions .button,
.home-page .offer-card-featured .workshop-actions .whatsapp-button {
  width: auto !important;
  min-height: 38px;
  margin: 0 !important;
  padding: 9px 14px;
  white-space: nowrap;
  font-size: 13px;
}

.home-page .workshop-next {
  padding: clamp(14px, 1.6vw, 21px);
}

.home-page .workshop-next h3 {
  font-size: clamp(20px, 1.65vw, 24px);
}

.home-page .workshop-next p {
  font-size: 12.5px;
}

@media (max-width: 860px) {
  .home-page .workshop-feature {
    grid-template-columns: minmax(0, 1fr);
    max-width: 704px;
  }

  .home-page .offer-card-featured .workshop-actions {
    flex-wrap: nowrap;
  }

  .home-page .offer-card-featured .workshop-actions .button,
  .home-page .offer-card-featured .workshop-actions .whatsapp-button {
    flex: 0 1 auto;
    padding-inline: 12px;
    font-size: 12px;
  }

  .home-page .offer-card-featured h3 {
    max-width: none;
    font-size: clamp(18px, 5vw, 21px) !important;
    line-height: 1.02;
  }

  .home-page .offer-card-featured .tag {
    padding: 5px 8px;
    font-size: 9px !important;
    line-height: 1.15;
  }
}

/* QA final: estas reglas deben permanecer al final de la hoja */
.home-page main > .section-observe,
.home-page main > .section-observe .reveal-item {
  opacity: 1 !important;
  transform: none !important;
}

.home-page #equipo {
  padding: clamp(38px, 5vw, 60px) 0 !important;
}

.home-page #equipo .section-heading {
  margin-bottom: 20px !important;
}

.home-page #equipo .section-heading h2 {
  font-size: clamp(27px, 3vw, 40px) !important;
}

.home-page #equipo .founders {
  gap: 12px !important;
}

.home-page #equipo .founder-card {
  min-height: 0 !important;
  gap: 12px !important;
  padding: 15px !important;
}

.home-page #equipo .founder-card h3 {
  font-size: clamp(21px, 2vw, 27px) !important;
}

.home-page #equipo .founder-card p {
  color: #4e5659 !important;
  font-size: 13px !important;
  line-height: 1.42 !important;
}

@media (max-width: 760px) {
  .home-page #equipo .founder-photo {
    width: 92px !important;
    min-height: 122px !important;
    height: 122px !important;
    aspect-ratio: 3 / 4 !important;
  }

  .home-page #equipo .founder-card {
    grid-template-columns: 92px minmax(0, 1fr) !important;
    align-items: start !important;
  }
}

/* FAQ compacto en dos columnas */
.home-page #faq {
  padding: clamp(34px, 4.5vw, 52px) 0 !important;
}

.home-page #faq .faq-grid {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 18px !important;
}

.home-page #faq .faq-grid > div:first-child {
  position: static;
}

.home-page #faq .faq-intro {
  max-width: 620px;
  margin-top: 8px;
  font-size: 13px;
}

.home-page #faq .accordion {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  align-items: start;
}

.home-page #faq .accordion details {
  border-radius: 14px;
}

.home-page #faq .accordion summary {
  min-height: 64px;
  gap: 8px;
  padding: 11px 12px;
  font-size: 13px;
  line-height: 1.25;
}

.home-page #faq .accordion summary::before {
  width: 28px;
  height: 28px;
  font-size: 10px;
}

.home-page #faq .accordion summary::after {
  font-size: 19px;
}

.home-page #faq .accordion details p {
  padding: 0 12px 13px;
  color: #4e5659;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 430px) {
  .home-page #faq .accordion summary {
    padding: 10px;
    font-size: 12px;
  }

  .home-page #faq .accordion summary::before {
    width: 24px;
    height: 24px;
  }
}

/* Talleres: CTA de contacto legible en una sola línea */
.home-page .workshop-next .button {
  min-height: 42px;
  padding: 9px 12px;
  white-space: nowrap;
  font-size: 14px !important;
  line-height: 1.15;
}

@media (max-width: 430px) {
  .home-page .workshop-next .button {
    font-size: 13px !important;
  }
}

/* Sesiones: escala móvil 10% mayor */
@media (max-width: 760px) {
  .home-page #sesiones {
    padding: 51px 0 !important;
  }

  .home-page #sesiones .appointments-grid {
    gap: 31px !important;
  }

  .home-page #sesiones .appointments-copy {
    gap: 12px !important;
  }

  .home-page #sesiones .appointments-copy h2 {
    font-size: 34px !important;
  }

  .home-page #sesiones .appointments-copy p,
  .home-page #sesiones .appointment-card > p {
    font-size: 15px !important;
    line-height: 1.48 !important;
  }

  .home-page #sesiones .appointment-options {
    gap: 12px !important;
  }

  .home-page #sesiones .appointment-card {
    padding: 19px !important;
    gap: 21px !important;
  }

  .home-page #sesiones .appointment-avatar {
    width: 70px !important;
    height: 70px !important;
  }

  .home-page #sesiones .appointment-head {
    grid-template-columns: 70px minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  .home-page #sesiones .appointment-head h3 {
    font-size: 25px !important;
  }

  .home-page #sesiones .appointment-instagram {
    font-size: 14px !important;
  }

  .home-page #sesiones .button {
    min-height: 48px;
    padding: 11px 14px;
    font-size: 14px;
  }
}
