/* ----- Fuentes ----- */
@import url('https://fonts.googleapis.com/css2?family=Sansita:ital,wght@0,400;0,700;0,800;1,400;1,700&family=Gochi+Hand&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================================= */
/*  TODO el CSS está scopeado bajo .ds-site para no chocar con    */
/*  los estilos propios de systeme.io.                            */
/* ============================================================= */
.ds-site *,
.ds-site *::before,
.ds-site *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Quitar el margen/borde blanco por defecto de la página */
body { margin: 0; padding: 0; }
.ds-site { overflow-x: hidden; }

.ds-site {
  /* Paleta de marca */
  --cream:   #ebe7e1;
  --sand:    #e0dbc2;
  --mist:    #e7edde;
  --sage:    #b5bda9;
  --olive:   #b0bb85;
  --stone:   #798276;
  --forest:  #434b3c;
  --ink:     #2f352c;
  --ink-soft:#566050;
  --line:    #cfd2c2;

  --maxw: 1160px;
  --radius: 22px;
  --shadow: 0 18px 50px -28px rgba(57,63,48,.45);

  --font-display: 'Sansita', Georgia, 'Times New Roman', serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-hand: 'Gochi Hand', 'Comic Sans MS', cursive;

  position: relative;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Textura sutil de grano sobre el fondo */
.ds-site::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .035;
  z-index: 0;
}
.ds-site > * { position: relative; z-index: 1; }

.ds-site p { color: var(--ink-soft); }
.ds-site a { color: inherit; text-decoration: none; }

.ds-wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ----- Tipografía ----- */
.ds-site h1, .ds-site h2, .ds-site h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.ds-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.45rem;
  color: var(--stone);
  line-height: 1;
  display: inline-block;
}
.ds-h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.ds-hero-copy .ds-tagline { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.1rem, 2.2vw, 1.4rem); line-height: 1.4; letter-spacing: -.005em; color: var(--stone); margin: -6px 0 18px; max-width: 30ch; }
.ds-h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.ds-h2 em { font-style: italic; color: var(--stone); }
.ds-lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); max-width: 38ch; }

/* ----- Botones ----- */
.ds-btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  letter-spacing: .01em;
  padding: 15px 30px; border-radius: 999px;
  cursor: pointer; border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.ds-site .ds-btn-primary { background: var(--forest); color: #ffffff; box-shadow: 0 10px 24px -12px rgba(67,75,60,.65); }
.ds-site .ds-btn-primary:hover { background: #ea7e5e; color: #ffffff; transform: translateY(-3px); box-shadow: 0 18px 30px -14px rgba(234,126,94,.55); }
.ds-site .ds-btn-ghost { background: #ffffff; color: var(--forest); border: 1.5px solid var(--forest); }
.ds-site .ds-btn-ghost:hover { background: #f3f4ee; color: var(--ink); border-color: var(--ink); transform: translateY(-3px); }
.ds-btn .ar { transition: transform .25s ease; }
.ds-btn:hover .ar { transform: translateX(4px); }

/* ----- Header ----- */
.ds-header {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.ds-header .ds-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ds-logo { font-family: var(--font-display); font-size: 1.45rem; color: var(--ink); letter-spacing: -.01em; }
.ds-logo span { color: var(--stone); }
.ds-nav { display: flex; align-items: center; gap: 30px; }
.ds-nav a { font-size: .95rem; color: var(--ink-soft); transition: color .2s; }
.ds-nav a:hover { color: var(--forest); }
.ds-nav .ds-btn { padding: 11px 22px; }

/* Botón hamburguesa (solo se muestra en celular) */
.ds-hamburger {
  display: none; background: none; border: 0; padding: 0; cursor: pointer;
  width: 42px; height: 42px; position: relative; border-radius: 8px;
  transition: background .2s;
}
.ds-hamburger:hover { background: rgba(67,75,60,.06); }
.ds-hamburger span {
  display: block; position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--forest); border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease, top .3s ease;
}
.ds-hamburger span:nth-child(1) { top: 14px; }
.ds-hamburger span:nth-child(2) { top: 20px; }
.ds-hamburger span:nth-child(3) { top: 26px; }
.ds-site.menu-open .ds-hamburger span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.ds-site.menu-open .ds-hamburger span:nth-child(2) { opacity: 0; }
.ds-site.menu-open .ds-hamburger span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .ds-hamburger { display: block; }
  /* Hueco para que el contenido no quede debajo del header fijo */
  .ds-site { padding-top: 86px; }
  /* Cuando se hace scroll a una sección, dejar espacio para el header fijo */
  .ds-site section[id] { scroll-margin-top: 90px; }
  .ds-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: rgba(235, 231, 225, .96);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  }
  .ds-header .ds-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; align-items: stretch;
    gap: 0; padding: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 30px -24px rgba(67,75,60,.35);
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
  }
  .ds-site.menu-open .ds-header .ds-nav { max-height: 360px; }
  .ds-nav a:not(.ds-btn) {
    display: block; padding: 16px 24px; font-size: 1.05rem; color: var(--forest);
    border-bottom: 1px solid rgba(67,75,60,.08);
  }
  .ds-nav a:not(.ds-btn):last-child { border-bottom: none; }
}

/* ----- Hero (banner) ----- */
.ds-hero { background: #e5e9db; overflow: hidden; }
.ds-hero .ds-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; min-height: clamp(520px, 72vh, 700px); padding-top: 28px; padding-bottom: 0; }
.ds-hero-copy { max-width: 520px; text-align: left; }
.ds-hero-media { align-self: stretch; min-height: 460px; }
/* La foto llena su columna; como su fondo es el mismo verde #e5e9db de la
   secciOn, su borde se funde y Diana queda enmarcada a la derecha. */
.ds-hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; display: block; }
.ds-hero-copy .ds-eyebrow { margin-bottom: 18px; }
.ds-hero-copy h1 { margin-bottom: 22px; }
.ds-hero-copy .ds-lead { margin-bottom: 34px; color: var(--ink-soft); }
.ds-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.ds-hero-portrait { display: none; }
.ds-hero-sign { margin-top: 28px; font-size: .92rem; color: var(--stone); display: flex; align-items: center; gap: 10px; }
.ds-hero-sign b { color: var(--ink); font-weight: 600; }
.ds-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--olive); }

/* Placeholder de imagen */
.ds-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 24px;
  color: var(--stone);
}
.ds-ph svg { width: 40px; height: 40px; opacity: .6; }
.ds-ph small { font-size: .78rem; letter-spacing: .03em; opacity: .85; max-width: 22ch; }

/* ----- Secciones genéricas ----- */
.ds-section { padding: clamp(60px, 9vw, 110px) 0; }
#ds-reson { padding-top: clamp(24px, 3vw, 40px); padding-bottom: clamp(40px, 6vw, 72px); }
#ds-enfoque { padding-top: clamp(44px, 6vw, 76px); padding-bottom: clamp(44px, 6vw, 76px); }
#ds-servicios { padding-top: clamp(44px, 6vw, 76px); padding-bottom: 0; }
#ds-proceso { padding-top: clamp(36px, 4.5vw, 60px); padding-bottom: clamp(44px, 6vw, 76px); }
#ds-cita { padding-top: clamp(44px, 6vw, 72px); padding-bottom: clamp(44px, 6vw, 72px); }
#ds-faq { padding-top: clamp(44px, 6vw, 76px); padding-bottom: clamp(44px, 6vw, 76px); }
#ds-agendar { padding-top: clamp(28px, 4vw, 48px); padding-bottom: clamp(24px, 3vw, 40px); }
.ds-section-head { max-width: 720px; margin-bottom: 52px; }
.ds-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.ds-section-head .ds-eyebrow { margin-bottom: 14px; }
.ds-section-head h2 { margin-bottom: 16px; }

.ds-bg-mist  { background: var(--mist); }
.ds-bg-sand  { background: var(--sand); }
.ds-bg-forest{ background: var(--forest); color: #eef0e6; }
.ds-bg-forest h2, .ds-bg-forest h3 { color: #f4f1ea; }
.ds-bg-forest p { color: #d4d8c7; }
.ds-bg-forest .ds-eyebrow { color: var(--olive); }

/* Onda divisoria */
.ds-wave { display: block; width: 100%; height: 56px; }
.ds-wave-hero { background: #e5e9db; }

/* ----- Para ti si... ----- */
.ds-reson { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.ds-reson-item {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 30px;
  display: flex; gap: 16px; align-items: flex-start;
}
.ds-reson-item .lf { flex: none; color: var(--olive); margin-top: 3px; }
.ds-reson-item p { color: var(--ink); font-size: 1.04rem; }
.ds-reson-close { text-align: center; margin-top: 40px; max-width: 72ch; margin-left: auto; margin-right: auto; font-family: var(--font-display); font-size: clamp(1.3rem,2.6vw,1.7rem); font-style: italic; color: var(--stone); }

/* ----- Sobre Diana ----- */
.ds-about .ds-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.ds-about-media { position: relative; }
.ds-about-photo {
  aspect-ratio: 5/6; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--sage), var(--mist));
}
.ds-about-copy h2 { margin-bottom: 20px; }
.ds-about-copy p { margin-bottom: 16px; }
.ds-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.ds-chip {
  font-size: .82rem; font-weight: 500; letter-spacing: .01em;
  background: var(--mist); color: var(--forest);
  border: 1px solid var(--line);
  padding: 8px 15px; border-radius: 999px;
}
.ds-chip.soon { background: transparent; border-style: dashed; color: var(--stone); }

/* ----- Pilares / enfoque ----- */
.ds-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ds-pillar {
  background: var(--sand); border: 1px solid rgba(67,75,60,.10);
  border-radius: var(--radius); padding: 30px 24px;
}
.ds-pillar .ic { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.65); color: var(--forest); margin-bottom: 18px; }
.ds-pillar h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--ink); }
.ds-pillar p { font-size: .95rem; color: var(--ink-soft); }
.ds-pillars-note { margin-top: 36px; text-align: center; font-size: 1.05rem; max-width: 88ch; margin-left: auto; margin-right: auto; }

/* ----- Servicios ----- */
.ds-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ds-card {
  background: var(--mist); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ds-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--olive); }
.ds-card .num { font-family: var(--font-hand); color: var(--olive); font-size: 1.4rem; margin-bottom: 10px; }
.ds-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.ds-card p { font-size: .97rem; margin-bottom: 24px; flex: 1; }
.ds-price { display: flex; align-items: baseline; gap: 8px; padding-top: 18px; border-top: 1px dashed var(--line); }
.ds-price .amt { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--ink); }
.ds-price .meta { font-size: .85rem; color: var(--stone); }
.ds-card.featured { border: 1.5px solid var(--olive); }
.ds-card .tag { position: absolute; top: -14px; right: 18px; white-space: nowrap; z-index: 2; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #ffffff; background: #ea7e5e; padding: 7px 16px; border-radius: 999px; box-shadow: 0 8px 18px rgba(234,126,94,.42); }
.ds-card-cta { width: 100%; justify-content: center; margin-top: 22px; }
.ds-meet-note { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 12px; margin-top: 34px; font-size: .95rem; color: var(--stone); }
.ds-meet-note svg { width: 24px; height: 24px; padding: 10px; box-sizing: content-box; background: var(--sand); border-radius: 50%; color: var(--forest); }

/* ----- Disponibilidad ----- */
.ds-avail { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px,4vw,44px); display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ds-avail-day h3 { font-size: 1.15rem; margin-bottom: 14px; color: var(--forest); display: flex; align-items: center; gap: 9px; }
.ds-slots { display: flex; flex-wrap: wrap; gap: 9px; }
.ds-slot { font-size: .9rem; font-weight: 500; background: var(--mist); border: 1px solid var(--line); color: var(--forest); padding: 8px 14px; border-radius: 10px; }
.ds-avail-foot { grid-column: 1/-1; border-top: 1px dashed var(--line); padding-top: 18px; font-size: .9rem; color: var(--stone); }

/* ----- Proceso ----- */
.ds-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: step; }
.ds-step { text-align: center; padding: 10px; }
.ds-step .n { width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--olive); color: var(--forest); }
.ds-step .n svg { display: block; }
.ds-step h3 .num-pre { font-family: var(--font-hand); color: var(--olive); font-size: 1.15em; margin-right: 3px; }
.ds-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.ds-step p { font-size: .95rem; }

/* ----- Cita / filosofía ----- */
.ds-quote { text-align: center; }
.ds-quote .q { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: clamp(1.6rem, 3.6vw, 2.5rem); line-height: 1.3; color: var(--stone); max-width: 46ch; margin: 0 auto 22px; }
.ds-quote .sig { font-family: var(--font-hand); font-size: 1.35rem; color: var(--forest); display: inline-flex; align-items: center; gap: 14px; }
.ds-quote .sig::before, .ds-quote .sig::after { content: ""; display: block; width: 40px; height: 1px; background: var(--stone); }

/* ----- FAQ ----- */
.ds-faq { max-width: 760px; margin: 0 auto; }
.ds-faq-item { border-bottom: 1px solid var(--line); }
.ds-faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.ds-faq-q .pm { flex: none; width: 26px; height: 26px; position: relative; transition: transform .3s; }
.ds-faq-q .pm::before, .ds-faq-q .pm::after { content:""; position:absolute; background: var(--stone); border-radius: 2px; }
.ds-faq-q .pm::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.ds-faq-q .pm::after { left: 12px; top: 4px; bottom: 4px; width: 2px; transition: transform .3s; }
.ds-faq-item.open .pm::after { transform: scaleY(0); }
.ds-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.ds-faq-a p { padding: 0 4px 24px; font-size: 1rem; text-align: left; }

/* ----- Agenda ----- */
.ds-agenda { text-align: center; }
.ds-agenda .ds-wrap { max-width: 760px; }
.ds-agenda h2 { margin-bottom: 16px; }
.ds-agenda p { font-size: 1.1rem; margin: 0 auto 18px; max-width: 48ch; }
.ds-agenda .micro { font-size: .9rem; color: var(--stone); }
.ds-agenda-cta { margin: 12px 0 20px; }

/* ----- Footer ----- */
.ds-footer { background: var(--ink); color: #c9cdbe; padding: 56px 0 40px; }
.ds-footer .ds-wrap { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 26px 48px; align-items: flex-start; }
.ds-footer .ds-wrap > div:first-child { margin-right: auto; }
.ds-footer .brand { font-family: var(--font-display); font-size: 1.6rem; color: #f4f1ea; }
.ds-footer .brand span { color: var(--olive); }
.ds-footer .tag { margin-top: 12px; font-size: .87rem; color: #9aa08e; max-width: 44ch; line-height: 1.55; display: block; }
.ds-footer .tag .creds-line { display: block; }
.ds-footer .tag .creds-line + .creds-line { margin-top: 5px; }
.ds-footer .tag .bio { display: block; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.10); font-style: italic; color: #a8b09e; line-height: 1.5; }
.ds-footer-links { display: flex; flex-direction: column; gap: 10px; font-size: .92rem; }
.ds-footer-links a:hover { color: #fff; }
.ds-contact a { display: inline-flex; align-items: center; gap: 9px; }
.ds-contact svg { flex: none; }
.ds-footer .copy { width: 100%; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; margin-top: 14px; font-size: .82rem; color: #828872; }

/* ----- Animación de entrada (degrada con gracia si no hay JS) ----- */
.ds-site.js .ds-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.ds-site.js .ds-reveal.in { opacity: 1; transform: none; }

/* ----- Movimiento sutil ambiente + micro-interacciones ----- */
@keyframes ds-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes ds-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); } }

.ds-site .ds-card .tag { animation: ds-bob 3.2s ease-in-out infinite; }
.ds-site .ds-reson-item .lf { animation: ds-breathe 5s ease-in-out infinite; transform-origin: center; }
.ds-site .ds-reson-item:nth-child(2) .lf { animation-delay: .7s; }
.ds-site .ds-reson-item:nth-child(3) .lf { animation-delay: 1.4s; }
.ds-site .ds-reson-item:nth-child(4) .lf { animation-delay: 2.1s; }

.ds-pillar { transition: transform .35s ease; }
.ds-pillar:hover { transform: translateY(-5px); }
.ds-pillar .ic, .ds-step .n { transition: transform .35s ease; }
.ds-pillar:hover .ic, .ds-step:hover .n { transform: scale(1.08); }

@media (prefers-reduced-motion: reduce) {
  .ds-site .ds-card .tag,
  .ds-site .ds-reson-item .lf { animation: none; }
  .ds-pillar:hover { transform: none; }
  .ds-pillar:hover .ic, .ds-step:hover .n { transform: none; }
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .ds-hero .ds-wrap { grid-template-columns: 1fr; min-height: 0; gap: 22px; padding-top: 24px; padding-bottom: 28px; }
  .ds-hero-media { order: -1; min-height: 0; height: 360px; }
  .ds-hero-photo { object-position: 70% 16%; }
  .ds-wave-hero { margin-top: 0; height: 46px; background: #e5e9db; }
  .ds-hero-copy { max-width: 100%; }
  .ds-about .ds-wrap { grid-template-columns: 1fr; }
  .ds-about-media { max-width: 420px; margin: 0 auto; width: 100%; }
  .ds-pillars { grid-template-columns: repeat(2,1fr); }
  .ds-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .ds-steps { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 620px) {
  .ds-site { font-size: 16px; }
  .ds-reson { grid-template-columns: 1fr; gap: 14px; }
  .ds-reson-item { padding: 20px 20px; gap: 12px; }
  .ds-reson-item p { font-size: 1rem; }
  .ds-pillars { grid-template-columns: 1fr; gap: 12px; }
  .ds-pillar { padding: 22px 20px; text-align: center; }
  .ds-pillar .ic { margin: 0 auto 14px; }
  /* Precios centrados en celular */
  .ds-price { justify-content: center; }
  .ds-hero-cta .ds-btn { width: 100%; justify-content: center; }
  /* En celular ocultamos la foto del hero: Diana mira a la izquierda y el encuadre solo funciona en escritorio/tablet */
  .ds-hero-media { display: none; }
  .ds-hero .ds-wrap { padding-top: 30px; padding-bottom: 40px; }
  /* La firma fluye como texto normal en celular (en escritorio es flex y se "movía" al envolver) */
  .ds-hero-sign { display: block; gap: 0; line-height: 1.55; }
  .ds-hero-sign .ds-dot { display: inline-block; vertical-align: middle; margin-right: 8px; }
  .ds-hero-role { display: block; white-space: nowrap; }
  .ds-hero-copy .ds-eyebrow { display: block; text-align: center; }
  .ds-hero-portrait { display: block; width: 100%; max-width: 225px; height: auto; margin: 4px auto 0; }
  /* Ocultar chips de credenciales en celular (se ven aislados) */
  .ds-chips { display: none; }
  #ds-sobre { padding-bottom: 28px; }
  /* Título de "Quizás te suene" más chico en celular para que quede en 2 renglones */
  #ds-reson .ds-h2 { font-size: clamp(1.35rem, 6vw, 2rem); }
  #ds-reson .ds-section-head { margin-bottom: 30px; }
  /* Dejar que las frases con salto fijo fluyan naturalmente en pantallas angostas */
  .ds-pillars-note br, .ds-reson-close br, .ds-quote .q br { display: none; }
  /* Footer centrado en celular */
  .ds-footer .ds-wrap { justify-content: center; align-items: flex-start; text-align: center; gap: 22px 40px; }
  .ds-footer .ds-wrap > div:first-child { margin-right: 0; width: 100%; }
  .ds-footer .tag { margin-left: auto; margin-right: auto; }
  .ds-footer-links { align-items: center; }
  .ds-footer .copy { text-align: center; }
  /* Acercar los pasos al título "Es muy sencillo" en celular */
  #ds-proceso .ds-section-head { margin-bottom: 24px; }
  /* Acercar los desplegables al título "Preguntas frecuentes" en celular */
  #ds-faq .ds-section-head { margin-bottom: 24px; }
  /* Hero: en celular el título y el lead quedan centrados */
  .ds-hero-copy .ds-h1, .ds-hero-copy .ds-lead, .ds-hero-copy .ds-tagline { text-align: center; }
  .ds-hero-copy .ds-tagline { margin-left: auto; margin-right: auto; }
}


/* Mejoras responsive y accesibilidad 2026 */
.ds-site{min-width:0}
.ds-site :focus-visible{outline:3px solid #ea7e5e;outline-offset:4px}
.ds-site img{max-width:100%;height:auto}
@media (max-width:860px){.ds-header .ds-wrap{padding-left:20px;padding-right:20px}.ds-nav a{min-height:48px;display:flex;align-items:center}.ds-hero .ds-wrap{grid-template-columns:1fr;min-height:auto;padding-top:42px}.ds-hero-copy{max-width:680px}.ds-hero-media{min-height:360px;max-height:520px}.ds-hero-photo{object-position:72% center}.ds-about .ds-wrap{grid-template-columns:1fr}.ds-about-media{max-width:520px;margin:auto}.ds-pillars{grid-template-columns:repeat(2,1fr)}.ds-cards{grid-template-columns:1fr;max-width:650px;margin:auto}.ds-avail{grid-template-columns:1fr}.ds-steps{grid-template-columns:1fr;max-width:580px;margin:auto}.ds-footer-grid{grid-template-columns:1fr;gap:26px}}
@media (max-width:560px){.ds-wrap{padding-left:18px;padding-right:18px}.ds-h1{font-size:clamp(2rem,11vw,3rem)}.ds-hero-cta{flex-direction:column;align-items:stretch}.ds-hero-cta .ds-btn{text-align:center;justify-content:center}.ds-hero-media{min-height:290px}.ds-reson{grid-template-columns:1fr}.ds-pillars{grid-template-columns:1fr}.ds-card{padding:26px 22px}.ds-footer-links{flex-wrap:wrap}}


/* Hero corregido según referencia visual */
.ds-hero{position:relative;background-color:#e5e9db;background-image:url("../assets/diana-hero.jpg");background-repeat:no-repeat;background-size:cover;background-position:center right}
.ds-hero .ds-wrap{position:relative;z-index:2;grid-template-columns:minmax(0,1fr) minmax(0,1fr);min-height:clamp(650px,88vh,800px);padding-top:58px}
.ds-hero-copy{position:relative;z-index:3;max-width:560px}
.ds-hero-media{display:none}
.ds-hero-copy .ds-lead{max-width:42ch}
.ds-hero-sign{padding-bottom:8px}

/* Widget flotante de Diana, lado izquierdo */
.ds-diana-widget{position:fixed;left:18px;top:50%;transform:translateY(-50%);z-index:80;display:flex;align-items:center;gap:10px;width:170px;padding:8px 12px 8px 8px;border:1px solid rgba(67,75,60,.15);border-radius:999px;background:rgba(255,255,255,.92);box-shadow:0 12px 32px rgba(47,53,44,.16);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);color:var(--forest);transition:transform .25s ease,box-shadow .25s ease}
.ds-diana-widget:hover{transform:translateY(-50%) translateX(4px);box-shadow:0 16px 38px rgba(47,53,44,.23)}
.ds-diana-widget img{width:42px;height:42px;object-fit:cover;object-position:center 20%;border-radius:50%;border:2px solid var(--olive)}
.ds-diana-widget .dw-copy{display:flex;flex-direction:column;line-height:1.15}
.ds-diana-widget strong{font-family:var(--font-display);font-size:.92rem}
.ds-diana-widget span{font-size:.68rem;color:var(--stone);margin-top:3px}

/* Widget flotante de WhatsApp, esquina inferior derecha */
.ds-whatsapp-widget{position:fixed;right:22px;bottom:22px;z-index:81;display:inline-flex;align-items:center;gap:10px;padding:12px 18px 12px 13px;border-radius:999px;background:#25d366;color:#fff;box-shadow:0 12px 28px rgba(37,211,102,.28);font:600 .86rem var(--font-body);text-decoration:none;transition:transform .25s ease,box-shadow .25s ease,background .25s ease}
.ds-whatsapp-widget:hover{transform:translateY(-4px);background:#1ebe5d;box-shadow:0 18px 32px rgba(37,211,102,.38);color:#fff}
.ds-whatsapp-widget svg{width:25px;height:25px;flex:none}
@media(max-width:1100px){.ds-diana-widget{left:10px;width:54px;height:54px;padding:5px;justify-content:center}.ds-diana-widget img{width:42px;height:42px}.ds-diana-widget .dw-copy{display:none}}
@media(max-width:860px){.ds-hero{background-image:none}.ds-hero .ds-wrap{grid-template-columns:1fr;min-height:auto;padding-top:42px;padding-bottom:0}.ds-hero-copy{max-width:680px}.ds-hero-media{display:block;min-height:0;height:clamp(340px,62vw,520px);order:2;margin:22px -20px 0}.ds-hero-photo{width:100%;height:100%;object-fit:cover;object-position:center right}.ds-diana-widget{top:auto;bottom:90px}.ds-whatsapp-widget{right:16px;bottom:16px;padding:12px;border-radius:50%;width:52px;height:52px;justify-content:center}.ds-whatsapp-widget span{display:none}}
@media(max-width:560px){.ds-hero-media{height:360px;margin-left:-18px;margin-right:-18px}.ds-diana-widget{left:10px;bottom:84px}.ds-whatsapp-widget{right:14px;bottom:14px}}

/* Corrección final del hero: texto independiente e imagen a la derecha */
.ds-hero{background-image:none;background-color:#e5e9db}
.ds-hero .ds-wrap{grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:clamp(28px,4vw,72px);align-items:stretch;min-height:clamp(650px,88vh,800px);padding-top:58px;padding-bottom:0}
.ds-hero-copy{max-width:560px;align-self:center}
.ds-hero-media{display:block;align-self:stretch;min-height:clamp(560px,80vh,760px);overflow:hidden}
.ds-hero-photo{width:100%;height:100%;object-fit:cover;object-position:82% center;display:block}
@media(max-width:860px){.ds-hero .ds-wrap{grid-template-columns:1fr;min-height:auto;padding-top:42px}.ds-hero-copy{max-width:680px}.ds-hero-media{display:block;min-height:0;height:clamp(340px,62vw,520px);order:2;margin:22px -20px 0}.ds-hero-photo{object-position:82% center}}
@media(max-width:560px){.ds-hero-media{height:360px;margin-left:-18px;margin-right:-18px}}

/* En tablets y escritorio el hero conserva dos columnas como en la referencia */
@media (min-width:761px){.ds-hero .ds-wrap{grid-template-columns:minmax(0,1fr) minmax(0,1fr);min-height:clamp(650px,88vh,800px);padding-top:58px;padding-bottom:0;gap:clamp(28px,4vw,72px)}.ds-hero-copy{max-width:560px;align-self:center}.ds-hero-media{display:block;order:initial;align-self:stretch;min-height:clamp(560px,80vh,760px);height:auto;margin:0;overflow:hidden}.ds-hero-photo{width:100%;height:100%;object-fit:cover;object-position:82% center}}
@media (max-width:760px){.ds-hero .ds-wrap{grid-template-columns:1fr;min-height:auto;padding-top:42px}.ds-hero-copy{max-width:680px}.ds-hero-media{display:block;order:2;height:clamp(340px,62vw,520px);min-height:0;margin:22px -20px 0}.ds-hero-photo{object-position:82% center}}
@media (min-width:761px){.ds-hero-media{height:clamp(650px,88vh,800px);min-height:0}.ds-site .ds-hero-photo{height:100%;width:100%;max-width:none;object-fit:cover;object-position:82% center;display:block}}
