/* =========================================================
   ESTILOS POR SECCIÓN
   Orden: header → hero → (próximas secciones se agregan abajo)
   ========================================================= */

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
  background-color: rgba(250, 247, 242, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 168, 224, 0.2);
  transition: border-color var(--t-base), background-color var(--t-base), backdrop-filter var(--t-base);
}

.header.is-scrolled {
  border-bottom-color: rgba(196, 168, 224, 0.3);
  background-color: rgba(250, 247, 242, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header__inner {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.header__logo-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header__logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: var(--w-medium);
  color: var(--color-violeta-profundo);
  letter-spacing: 0.01em;
}

.header__logo-tagline {
  font-size: 0.6rem;
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-violeta-profundo);
  margin-top: 4px;
}

.nav {
  display: none;
}

@media (min-width: 1080px) {
  .nav {
    display: flex;
    gap: var(--space-5);
    align-items: center;
  }
  .nav__link {
    font-size: 0.88rem;
    color: var(--color-violeta-profundo);
    position: relative;
    padding-block: var(--space-2);
    transition: color var(--t-fast);
    white-space: nowrap;
  }
  .nav__link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-dorado);
    transition: width var(--t-base), left var(--t-base);
  }
  .nav__link:hover { color: var(--color-dorado); }
  .nav__link:hover::after { width: 100%; left: 0; }
}

.header__cta {
  display: none;
}

@media (min-width: 1080px) {
  .header__cta {
    display: inline-flex;
    padding: var(--space-3) var(--space-5);
    font-size: 0.92rem;
  }
}

/* Botón menú mobile */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

@media (min-width: 1080px) {
  .menu-toggle { display: none; }
}

.menu-toggle__line {
  height: 1.5px;
  background-color: var(--color-violeta-profundo);
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Menú mobile drawer — fuera del header, por encima de todo */
.mobile-nav {
  position: fixed;
  inset: 0;
  /* Fondo 100% sólido sin transparencia */
  background-color: #FAF6EE;
  z-index: 200;
  padding: calc(var(--header-h) + var(--space-6)) var(--section-px) var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--t-base), opacity var(--t-base), visibility var(--t-base);
}

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

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-violeta-profundo);
  padding-block: var(--space-4);
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.mobile-nav__link:hover,
.mobile-nav__link:active {
  color: var(--color-dorado);
  padding-left: var(--space-2);
}

.mobile-nav__cta {
  margin-top: var(--space-5);
  align-self: stretch;
}

/* Cuando el menú mobile está abierto, el toggle del header debe quedar por encima */
body.menu-open .header { z-index: 210; }

@media (min-width: 1080px) {
  .mobile-nav { display: none; }
}

/* =========================================================
   HERO — fullscreen con imagen de fondo, contenido centrado
   ========================================================= */

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('../public/foto-hero.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

@supports (background-image: url('data:image/webp;base64,')) {
  .hero {
    background-image: url('../public/foto-hero.webp');
  }
}

@supports not (background-image: url('data:image/webp;base64,')) {
  .hero {
    background-image: url('../public/foto-hero-compressed.jpeg');
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(30, 10, 60, 0.08);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-h) + var(--space-7));
  padding-bottom: var(--space-9);
  padding-inline: var(--section-px);
  width: 100%;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

.hero__copy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: -1;
}

.hero__title {
  font-size: clamp(2.6rem, 1.8rem + 4.5vw, 4.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: var(--w-regular);
  color: #1E1035;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(14, 6, 28, 0.25);
}

.hero__title em {
  font-style: italic;
  color: #D4A843;
}

/* Divisor dorado con rombo central */
.hero__divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 4px auto;
}

.hero__divider-line {
  width: 48px;
  height: 1px;
  background-color: #D4A843;
}

.hero__divider-diamond {
  background: linear-gradient(135deg, #C8952A 0%, #F0D060 35%, #E8C460 50%, #F5E88A 65%, #D4A843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.6rem;
  line-height: 1;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 0.9rem + 0.8vw, 1.25rem);
  line-height: 1.5;
  color: #1E1035;
  font-weight: 400;
  max-width: 560px;
  margin-inline: auto;
  text-wrap: pretty;
  text-shadow: 0 1px 12px rgba(14, 6, 28, 0.20);
}

.hero__lead {
  font-size: 1rem;
  line-height: var(--lh-relaxed);
  color: rgba(59, 37, 104, 0.85);
  max-width: 580px;
  margin: 0 auto;
  text-shadow: 0 1px 12px rgba(14, 6, 28, 0.20);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, background 0.25s ease;
  border: none;
}

.hero__btn--gold {
  background: linear-gradient(135deg, #D4A843, #E8C460);
  color: #ffffff;
}

.hero__btn--gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.hero__btn--dark {
  background: #1E1035;
  color: #ffffff;
}

.hero__btn--dark:hover {
  background: #3B2568;
  transform: translateY(-2px);
}

/* Indicador de scroll al fondo */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: hero-bounce 2s infinite ease-in-out;
}

.hero__scroll-text {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #3B2568;
  opacity: 0.6;
  text-transform: uppercase;
  font-family: var(--font-sans);
  white-space: nowrap;
}

.hero__scroll-chevron {
  width: 20px;
  height: 20px;
  color: #3B2568;
  opacity: 0.6;
}

/* =========================================================
   SECCIÓN — "Esto es para vos si…"
   Espejo emocional: el lead se reconoce. Prepara la venta del Método.
   Layout asimétrico 5/7 (intro izquierda · lista derecha)
   ========================================================= */

.para-vos {
  background-color: #FAF7F2;
  position: relative;
  overflow: clip;
}

/* Ornamento geométrico: triángulos sagrados al fondo */
.para-vos__ornament {
  position: absolute;
  top: 4%;
  right: -10%;
  width: clamp(340px, 42vw, 580px);
  opacity: 0.14;
  color: var(--color-violeta-profundo);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.para-vos > .container {
  position: relative;
  z-index: 1;
}

.para-vos__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (min-width: 960px) {
  .para-vos__inner {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-9);
  }
}

/* ---- Columna izquierda: intro ---- */
.para-vos__intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: sticky;
  top: calc(var(--header-h) + var(--space-5));
}

@media (max-width: 959px) {
  .para-vos__intro { position: static; }
}

.para-vos__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.para-vos__eyebrow-line {
  width: 32px;
  height: 1px;
  background-color: var(--color-dorado);
  flex-shrink: 0;
}

.para-vos__title {
  font-size: clamp(2rem, 1.6rem + 1.8vw, 3.2rem);
  line-height: 1.1;
  color: var(--color-violeta-profundo);
  text-wrap: balance;
}

.para-vos__title em {
  font-style: italic;
  color: var(--color-dorado);
}

.para-vos__lead {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--color-tinta-suave);
  max-width: 420px;
}

/* ---- Columna derecha: lista de puntos ---- */
.para-vos__list {
  display: flex;
  flex-direction: column;
}

.para-vos__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: baseline;
  padding-block: var(--space-5);
  border-bottom: var(--border-subtle);
  transition: background-color var(--t-base);
}

.para-vos__item:first-child {
  padding-top: 0;
}

.para-vos__item:last-child {
  border-bottom: none;
}

.para-vos__item:hover .para-vos__num {
  color: var(--color-dorado);
  transform: translateX(2px);
}

.para-vos__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
  font-weight: var(--w-regular);
  color: var(--color-violeta-medio);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  transition: color var(--t-base), transform var(--t-base);
  min-width: 2.5ch;
}

.para-vos__text {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  line-height: 1.5;
  color: var(--color-tinta);
  font-weight: var(--w-regular);
  text-wrap: pretty;
}

/* ---- Cierre con quote destacada ---- */
/* En desktop la mantenemos en la columna derecha (col 2) para no
   solaparse con la columna izquierda sticky al scrollear. */
.para-vos__quote {
  margin-top: var(--space-7);
  margin-inline: 0;
  padding: var(--space-8) var(--space-6) var(--space-6);
  background:
    linear-gradient(135deg, var(--color-lavanda-claro) 0%, #E8DCF2 60%, var(--color-lavanda) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 169, 97, 0.35);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  box-shadow: var(--shadow-md), inset 0 0 0 6px rgba(255, 255, 255, 0.35);
}

@media (min-width: 960px) {
  .para-vos__quote {
    grid-column: 2;
    margin-top: var(--space-7);
    padding: var(--space-9) var(--space-7) var(--space-7);
    max-width: 640px;
  }
}

/* Patrón geométrico sutil al fondo (rayos suaves) */
.para-vos__quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(201, 169, 97, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(123, 91, 161, 0.15) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* Marco interno dorado */
.para-vos__quote::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  pointer-events: none;
  z-index: 1;
}

/* Esquinas tipo paspartú */
.para-vos__quote-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-dorado);
  z-index: 3;
  pointer-events: none;
}
.para-vos__quote-corner--tl {
  top: 8px; left: 8px;
  border-right: none; border-bottom: none;
}
.para-vos__quote-corner--tr {
  top: 8px; right: 8px;
  border-left: none; border-bottom: none;
}
.para-vos__quote-corner--bl {
  bottom: 8px; left: 8px;
  border-right: none; border-top: none;
}
.para-vos__quote-corner--br {
  bottom: 8px; right: 8px;
  border-left: none; border-top: none;
}

/* Comilla SVG dorada de fondo */
.para-vos__quote-mark {
  position: absolute;
  top: 18px;
  right: 22px;
  width: clamp(56px, 8vw, 88px);
  color: var(--color-dorado);
  opacity: 0.45;
  z-index: 2;
  pointer-events: none;
}

/* Eyebrow tipo manifiesto */
.para-vos__quote-eyebrow {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 0 var(--space-4);
  font-family: var(--font-micro);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-dorado);
  font-weight: var(--w-medium);
}

.para-vos__quote-eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: var(--color-dorado);
  opacity: 0.7;
}

.para-vos__quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 1.85rem);
  line-height: 1.4;
  color: var(--color-violeta-profundo);
  text-wrap: balance;
  position: relative;
  z-index: 4;
  margin: 0;
  letter-spacing: -0.01em;
}

.para-vos__quote-text strong {
  font-weight: var(--w-regular);
  color: var(--color-dorado);
  font-style: italic;
}

/* Sello inferior con diamante centrado */
.para-vos__quote-seal {
  position: relative;
  z-index: 4;
  margin-top: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--color-dorado);
  opacity: 0.7;
}

.para-vos__quote-seal-line {
  flex: 1;
  height: 1px;
  background-color: currentColor;
  opacity: 0.45;
  max-width: 100px;
}

.para-vos__quote-seal-diamond {
  width: 7px;
  height: 7px;
  background-color: currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* =========================================================
   SECCIÓN — MÉTODO MELISART v2
   Fondo lavanda claro, layout 2 columnas desktop
   ========================================================= */

.metodo {
  display: none;
}

/* Ornamento geométrico: flor de la vida en esquina */
.metodo__ornament {
  position: absolute;
  top: -10%;
  left: -12%;
  width: clamp(420px, 50vw, 680px);
  opacity: 0.13;
  color: var(--color-dorado);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Segundo ornamento decorativo: vesica piscis en la esquina opuesta */
.metodo__ornament-2 {
  position: absolute;
  bottom: -12%;
  right: -8%;
  width: clamp(280px, 36vw, 460px);
  opacity: 0.1;
  color: var(--color-dorado);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Constelación de puntos dorados (decoración sutil) */
.metodo__stars {
  position: absolute;
  top: 25%;
  right: 8%;
  width: 180px;
  opacity: 0.3;
  color: var(--color-dorado);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.metodo > .container {
  position: relative;
  z-index: 1;
}

/* Ornamento sutil de fondo: blueprint dorado al 4% en la esquina */
.metodo::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -8%;
  width: 480px;
  height: 480px;
  background-image: radial-gradient(circle, rgba(201, 169, 97, 0.18) 1px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.4;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 70%);
  pointer-events: none;
}

.metodo__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: var(--space-7);
  position: relative;
  z-index: 1;
}

.metodo__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-dorado);
}

.metodo__eyebrow-line {
  width: 32px;
  height: 1px;
  background-color: var(--color-dorado);
}

.metodo__title {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.4rem);
  line-height: 1.1;
  color: var(--color-crema-claro);
  text-wrap: balance;
}

.metodo__title em {
  font-style: italic;
  color: var(--color-dorado);
}

.metodo__anchor {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  color: var(--color-lavanda);
  text-wrap: balance;
  line-height: 1.5;
  margin-top: var(--space-2);
  max-width: 640px;
}

.metodo__lead {
  font-size: var(--fs-body);
  color: var(--color-lavanda);
  line-height: var(--lh-relaxed);
  text-wrap: pretty;
  max-width: 600px;
  opacity: 0.8;
}

/* Divisor sutil arriba de la grilla */
.metodo__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-block: var(--space-7) var(--space-7);
  color: var(--color-dorado);
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

.metodo__divider-line {
  width: 60px;
  height: 1px;
  background-color: currentColor;
}

.metodo__divider-diamond {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background-color: currentColor;
}

/* ---- Grilla de los 8 módulos ---- */
.metodo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

@media (min-width: 600px) {
  .metodo__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

@media (min-width: 960px) {
  .metodo__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }
}

.metodo__card {
  position: relative;
  padding: var(--space-6) var(--space-5);
  background-color: rgba(250, 246, 238, 0.03);
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--t-base), border-color var(--t-base), background-color var(--t-base), box-shadow var(--t-base);
  overflow: hidden;
}

.metodo__card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, 0.55);
  background-color: rgba(250, 246, 238, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(201, 169, 97, 0.15);
}

.metodo__card-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: var(--w-regular);
  color: var(--color-dorado);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  opacity: 0.85;
  transition: opacity var(--t-base);
}

.metodo__card:hover .metodo__card-num {
  opacity: 1;
}

.metodo__card-icon {
  width: 40px;
  height: 40px;
  color: var(--color-dorado);
  transition: transform var(--t-base);
}

.metodo__card:hover .metodo__card-icon {
  transform: scale(1.05);
}

.metodo__card-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: var(--w-medium);
  color: var(--color-crema-claro);
  line-height: 1.2;
  letter-spacing: var(--ls-tight);
  margin-top: auto;
}

.metodo__card-desc {
  font-size: var(--fs-small);
  line-height: 1.5;
  color: var(--color-lavanda);
  opacity: 0.75;
}

/* CTA final del bloque Método */
.metodo__cta-wrap {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
  position: relative;
  z-index: 1;
}

.metodo__cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.35rem);
  color: var(--color-crema-claro);
  text-wrap: balance;
  max-width: 520px;
  line-height: 1.4;
}

.metodo__cta-text em {
  color: var(--color-dorado);
  font-style: italic;
}

/* Botón primario sobre fondo violeta: invertimos a dorado sólido */
.section--metodo-cta {
  background-color: var(--color-dorado);
  color: var(--color-violeta-profundo);
  font-weight: var(--w-semibold);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.25);
}

.section--metodo-cta:hover {
  background-color: var(--color-dorado-claro);
  color: var(--color-violeta-profundo);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.4);
}

/* =========================================================
   SECCIÓN — SERVICIOS (3 tarjetas escalera)
   Activación · Acompañamiento 1:1 · Método (destacada)
   ========================================================= */

.servicios {
  background-color: #FAF7F2;
  position: relative;
  overflow: clip;
}

/* Ornamento geométrico: hexagrama estrella de seis puntas */
.servicios__ornament {
  position: absolute;
  top: 5%;
  left: -10%;
  width: clamp(300px, 38vw, 500px);
  opacity: 0.11;
  color: var(--color-violeta-medio);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.servicios__ornament-2 {
  position: absolute;
  bottom: 8%;
  right: -8%;
  width: clamp(240px, 30vw, 400px);
  opacity: 0.1;
  color: var(--color-dorado);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.servicios > .container {
  position: relative;
  z-index: 1;
}

.servicios__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-7);
}

.servicios__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-dorado);
}

.servicios__eyebrow-line {
  width: 32px;
  height: 1px;
  background-color: currentColor;
}

.servicios__title {
  font-size: clamp(2rem, 1.6rem + 1.8vw, 3.2rem);
  line-height: 1.1;
  color: var(--color-violeta-profundo);
  text-wrap: balance;
}

.servicios__title em {
  font-style: italic;
  color: var(--color-dorado);
}

.servicios__lead {
  font-size: var(--fs-body);
  color: var(--color-tinta-suave);
  line-height: var(--lh-relaxed);
  max-width: 580px;
  text-wrap: pretty;
}

/* ---- Grilla de 3 cards ---- */
.servicios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: stretch;
}

@media (min-width: 900px) {
  .servicios__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    align-items: stretch;
  }
}

/* ---- Tarjeta base ---- */
.servicio {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-7) var(--space-6);
  background-color: var(--color-blanco);
  border: 1px solid rgba(201, 169, 97, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.servicio:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 97, 0.55);
  box-shadow: var(--shadow-lg);
}

/* Tarjeta destacada: el Método */
.servicio--destacado {
  background-color: var(--color-violeta-profundo);
  color: var(--color-crema);
  border-color: var(--color-dorado);
  border-width: 1.5px;
  box-shadow: 0 16px 40px rgba(45, 27, 78, 0.25), 0 0 0 1px rgba(201, 169, 97, 0.3);
}

@media (min-width: 900px) {
  .servicio--destacado {
    transform: translateY(-12px);
  }
  .servicio--destacado:hover {
    transform: translateY(-18px);
  }
}

.servicio--destacado:hover {
  box-shadow: 0 24px 56px rgba(45, 27, 78, 0.35), 0 0 0 1px rgba(201, 169, 97, 0.5);
}

.servicio--destacado .servicio__name,
.servicio--destacado .servicio__resultado-label,
.servicio--destacado .servicio__lista-titulo {
  color: var(--color-crema-claro);
}

.servicio--destacado .servicio__subtitle,
.servicio--destacado .servicio__desc,
.servicio--destacado .servicio__lista li {
  color: var(--color-lavanda);
}

.servicio--destacado .servicio__divider {
  border-top-color: rgba(201, 169, 97, 0.3);
}

/* Badge en la tarjeta destacada */
.servicio__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: var(--space-2) var(--space-4);
  background-color: var(--color-dorado);
  color: var(--color-violeta-profundo);
  font-family: var(--font-micro);
  font-size: 0.7rem;
  font-weight: var(--w-semibold);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.35);
}

/* Header de la tarjeta: número romano + ícono edificio */
.servicio__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.servicio__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-dorado);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.servicio__edificio {
  width: 56px;
  height: 80px;
  color: var(--color-dorado);
  flex-shrink: 0;
  opacity: 0.85;
}

.servicio__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.2rem + 0.6vw, 1.75rem);
  font-weight: var(--w-medium);
  line-height: 1.15;
  color: var(--color-violeta-profundo);
  letter-spacing: var(--ls-tight);
}

.servicio__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-body);
  color: var(--color-violeta-medio);
  line-height: 1.4;
}

.servicio__desc {
  font-size: 0.95rem;
  color: var(--color-tinta-suave);
  line-height: 1.6;
}

/* Bloque resultado destacado */
.servicio__resultado {
  padding: var(--space-3) var(--space-4);
  background-color: rgba(201, 169, 97, 0.08);
  border-left: 2px solid var(--color-dorado);
  border-radius: var(--radius-sm);
}

.servicio--destacado .servicio__resultado {
  background-color: rgba(201, 169, 97, 0.12);
}

.servicio__resultado-label {
  display: block;
  font-family: var(--font-micro);
  font-size: 0.7rem;
  font-weight: var(--w-semibold);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-dorado);
  margin-bottom: var(--space-1);
}

.servicio__resultado-text {
  font-size: 0.95rem;
  color: var(--color-tinta);
  line-height: 1.5;
}

.servicio--destacado .servicio__resultado-text {
  color: var(--color-crema-claro);
}

/* Divider sutil dentro de la card */
.servicio__divider {
  border: none;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  margin-block: var(--space-2);
}

/* Lista para quién es / no es */
.servicio__listas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.servicio__lista-titulo {
  font-family: var(--font-micro);
  font-size: 0.72rem;
  font-weight: var(--w-semibold);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-violeta-medio);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.servicio__lista-titulo--no { color: var(--color-tinta-muted); }

.servicio__lista {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.servicio__lista li {
  position: relative;
  padding-left: var(--space-5);
  font-size: 0.92rem;
  color: var(--color-tinta-suave);
  line-height: 1.45;
}

.servicio__lista li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 1rem;
  font-weight: var(--w-bold);
}

.servicio__lista--si li::before {
  content: "+";
  color: var(--color-dorado);
}

.servicio__lista--no li::before {
  content: "—";
  color: var(--color-tinta-muted);
}

/* Quote frase ancla dentro de la card (Activación y Método) */
.servicio__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--color-violeta-medio);
  line-height: 1.4;
  text-wrap: balance;
}

.servicio--destacado .servicio__quote {
  color: var(--color-dorado);
}

/* CTA al pie de la card — empuja al fondo */
.servicio__cta {
  margin-top: auto;
  padding-top: var(--space-2);
}

.servicio__cta .btn {
  width: 100%;
}

/* CTA específico de la card destacada: dorado sólido sobre violeta */
.servicio--destacado .servicio__cta .btn {
  background-color: var(--color-dorado);
  color: var(--color-violeta-profundo);
  border-color: var(--color-dorado);
  font-weight: var(--w-semibold);
}

.servicio--destacado .servicio__cta .btn:hover {
  background-color: var(--color-dorado-claro);
  color: var(--color-violeta-profundo);
}

/* =========================================================
   SECCIÓN — SOBRE MÍ (3 capítulos visuales)
   Demolición y Cimiento. Layout editorial zigzag.
   ========================================================= */

.sobre-mi {
  background: linear-gradient(160deg, #EDE8F5 0%, #D9CCF0 50%, #C8B4E0 100%);
  position: relative;
  overflow: visible;
  padding: 40px 0;
}

/* Ornamento geométrico: flor de la vida */
.sobre-mi__ornament {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 120px;
  height: 180px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.sobre-mi__ornament-2 {
  position: absolute;
  bottom: 25%;
  left: 15%;
  width: clamp(260px, 32vw, 420px);
  opacity: 0.15;
  color: var(--color-dorado);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.sobre-mi > .container {
  position: relative;
  z-index: 1;
}

.sobre-mi__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-7);
}

.sobre-mi__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-dorado);
}

.sobre-mi__eyebrow-line {
  width: 32px;
  height: 1px;
  background-color: currentColor;
}

.sobre-mi__title {
  font-size: clamp(2rem, 1.6rem + 1.8vw, 3.2rem);
  line-height: 1.1;
  color: var(--color-violeta-profundo);
  text-wrap: balance;
}

.sobre-mi__title em {
  font-style: italic;
  color: var(--color-dorado);
}

.sobre-mi__lead {
  font-size: var(--fs-body);
  color: var(--color-tinta-suave);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  text-wrap: pretty;
}

/* =========================================================
   TARJETA DE PERFIL — Foto + Bio
   Marco dorado con esquinas tipo cuadros editoriales,
   asimetría 5/7 en desktop, stack centrado en mobile.
   ========================================================= */
.sobre-mi__perfil {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  margin-top: var(--space-8);
  margin-bottom: var(--space-9);
  align-items: center;
}

@media (min-width: 900px) {
  .sobre-mi__perfil {
    grid-template-columns: 6fr 7fr;
    gap: var(--space-8);
  }
}

/* ---- Foto con marco ---- */
.sobre-mi__perfil-foto {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  margin: 0;
}

@media (min-width: 900px) {
  .sobre-mi__perfil-foto {
    align-items: flex-start;
  }
}

.sobre-mi__perfil-arc {
  width: 380px;
  height: 620px;
  border-radius: 190px 190px 12px 12px;
  overflow: hidden;
  border: 2px solid rgba(212, 168, 67, 0.60);
  box-shadow: var(--shadow-md), var(--shadow-gold);
  flex-shrink: 0;
}

.sobre-mi__perfil-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.sobre-mi__perfil-caption {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-micro);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-dorado);
}

.sobre-mi__perfil-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: var(--color-dorado);
  opacity: 0.6;
}

/* ---- Bio editorial ---- */
.sobre-mi__perfil-bio {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.sobre-mi__perfil-eyebrow {
  color: var(--color-dorado);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.sobre-mi__perfil-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background-color: var(--color-dorado);
  opacity: 0.6;
}

.sobre-mi__perfil-title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--w-regular);
  line-height: var(--lh-snug);
  color: var(--color-violeta-profundo);
  letter-spacing: var(--ls-tight);
  text-wrap: balance;
  margin: 0;
}

.sobre-mi__perfil-title em {
  font-style: italic;
  color: var(--color-dorado);
}

.sobre-mi__perfil-text {
  font-size: var(--fs-body);
  color: var(--color-tinta-suave);
  line-height: var(--lh-relaxed);
  text-wrap: pretty;
  max-width: 60ch;
}

.sobre-mi__perfil-text strong {
  font-weight: var(--w-semibold);
  color: var(--color-violeta-profundo);
}

.sobre-mi__perfil-creds {
  list-style: none;
  margin: var(--space-2) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sobre-mi__perfil-creds li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-micro);
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  color: var(--color-violeta-profundo);
}

.sobre-mi__perfil-cred-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-dorado);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---- Capítulos ---- */
.sobre-mi__chapters {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.chapter {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 900px) {
  .chapter {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  /* Zigzag: capítulo 2 invierte el orden */
  .chapter--reverse .chapter__visual {
    order: 2;
  }
  .chapter--reverse .chapter__copy {
    order: 1;
  }
}

/* Visual del capítulo: placeholder con gradiente + SVG narrativo */
.chapter__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  isolation: isolate;
  max-width: 300px;
  width: 100%;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .chapter__visual {
    aspect-ratio: 3 / 4;
    max-width: 340px;
  }
  .chapter:not(.chapter--reverse) .chapter__visual {
    margin-inline: 0 auto;
  }
  .chapter--reverse .chapter__visual {
    margin-inline: auto 0;
  }
}

.chapter__visual--1 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.chapter__visual--2 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.chapter__visual--3 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.chapter__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 27, 78, 0.25) 0%, rgba(139, 98, 196, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.chapter__visual-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--color-dorado);
}

.chapter__visual--3 .chapter__visual-svg {
  color: var(--color-violeta-medio);
  opacity: 0.55;
}

/* Sello con número de capítulo */
.chapter__seal {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-pill);
  background-color: rgba(250, 246, 238, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 169, 97, 0.4);
  font-family: var(--font-micro);
  font-size: 0.7rem;
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-crema-claro);
}


/* Caption inferior con número romano grande */
.chapter__visual-num {
  position: absolute;
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 10;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.25rem, 1.5rem + 2.5vw, 3.75rem);
  line-height: 1;
  color: var(--color-dorado);
  opacity: 0.85;
  letter-spacing: var(--ls-tight);
}


/* Copy del capítulo */
.chapter__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 520px;
}

.chapter__label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-dorado);
  font-family: var(--font-micro);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  font-weight: var(--w-medium);
}

.chapter__label-line {
  width: 28px;
  height: 1px;
  background-color: currentColor;
}

.chapter__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.6rem);
  line-height: 1.1;
  color: var(--color-violeta-profundo);
  letter-spacing: var(--ls-tight);
  font-weight: var(--w-regular);
}

.chapter__text {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--color-tinta-suave);
  text-wrap: pretty;
}

/* ---- Quote final destacada ---- */
/* ---------- SOBRE MÍ: frase card ---------- */
.sobre-mi__frase-card {
  max-width: 720px;
  margin: 48px auto 0;
  background: rgba(237, 232, 245, 0.60);
  border: 1px solid rgba(212, 168, 67, 0.35);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.sobre-mi__frase-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sobre-mi__frase-icon {
  width: 32px;
  height: 32px;
  stroke: #C8922A;
  stroke-width: 1.2;
  fill: none;
}

.sobre-mi__frase-sep {
  width: 1px;
  height: 60px;
  background: rgba(212, 168, 67, 0.40);
  flex-shrink: 0;
}

.sobre-mi__frase-texto {
  margin: 0;
  padding: 0;
}

.sobre-mi__frase-texto p {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  color: #1E1035;
}

.sobre-mi__frase-texto p em {
  font-style: italic;
  color: #C8922A;
}

@media (max-width: 768px) {
  /* Header: glassmorphism en mobile */
  .header {
    background-color: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(196, 168, 224, 0.2);
    border-bottom: 1px solid rgba(196, 168, 224, 0.2);
  }

  /* Imagen: más compacta en mobile */
  .sobre-mi__perfil-arc {
    width: 240px;
    height: 360px;
    border-radius: 120px 120px 8px 8px;
  }

  /* Card de frase con brújula: visible en mobile, diseño vertical */
  .sobre-mi__frase-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 14px;
    margin: 32px auto 0;
  }

  /* 5.svg: visible en mobile como decoración de fondo */
  .sobre-mi__corner--right {
    display: block;
    right: -80px;
    height: 420px;
    opacity: 0.35;
  }
}

@media (max-width: 600px) {
  .sobre-mi__frase-sep {
    width: 60px;
    height: 1px;
  }
}

/* Esquinas decorativas inferiores */
.sobre-mi__corner {
  position: absolute;
  bottom: 0;
  height: 550px;
  width: auto;
  margin: 0;
  padding: 0;
  z-index: 0;
  pointer-events: none;
}

.sobre-mi__corner--left {
  left: -120px;
}

.sobre-mi__corner--right {
  right: -120px;
}

@media (max-width: 767px) {
  .sobre-mi__corner {
    display: none;
  }
  .sobre-mi__corner--right {
    display: block;
    right: -80px;
    height: 420px;
    opacity: 0.35;
  }
}

.sobre-mi__quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.2rem);
  line-height: 1.25;
  color: var(--color-violeta-profundo);
  text-wrap: balance;
  letter-spacing: var(--ls-tight);
}

.sobre-mi__quote-text em {
  color: var(--color-dorado);
  font-style: italic;
}

.sobre-mi__quote-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-top: var(--space-2);
}

.sobre-mi__quote-author-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: var(--w-medium);
  color: var(--color-violeta-profundo);
  letter-spacing: 0.01em;
}

.sobre-mi__quote-author-role {
  font-family: var(--font-micro);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-dorado);
}

/* =========================================================
   SECCIÓN — CÓMO TRABAJO (3 disciplinas integradas)
   Emocional · Energética · Acción concreta
   ========================================================= */

.como-trabajo {
  background-color: #FAF7F2;
  color: #1E1035;
  position: relative;
  overflow: clip;
}

/* Ornamento geométrico: trinidad de círculos */
.como-trabajo__ornament {
  position: absolute;
  bottom: -12%;
  left: -10%;
  width: clamp(360px, 44vw, 560px);
  opacity: 0.14;
  color: var(--color-violeta-medio);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.como-trabajo > .container {
  position: relative;
  z-index: 1;
}

.como-trabajo__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-7);
}

.como-trabajo__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-dorado);
}

.como-trabajo__eyebrow-line {
  width: 32px;
  height: 1px;
  background-color: currentColor;
}

.como-trabajo__title {
  font-size: clamp(2rem, 1.6rem + 1.8vw, 3.2rem);
  line-height: 1.1;
  color: var(--color-violeta-profundo);
  text-wrap: balance;
}

.como-trabajo__title em {
  font-style: italic;
  color: var(--color-dorado);
}

.como-trabajo__lead {
  font-size: var(--fs-body);
  color: var(--color-tinta-suave);
  line-height: var(--lh-relaxed);
  max-width: 580px;
  text-wrap: pretty;
}

/* ---- Grilla 3 disciplinas ---- */
.como-trabajo__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}

@media (min-width: 800px) {
  .como-trabajo__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }

  /* Línea horizontal dorada que une las 3 columnas a la altura de los íconos */
  .como-trabajo__grid::before {
    content: "";
    position: absolute;
    top: 44px; /* alinea con el centro del círculo del ícono (88px / 2) */
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    background: linear-gradient(to right,
      transparent 0%,
      rgba(201, 169, 97, 0.45) 15%,
      rgba(201, 169, 97, 0.45) 85%,
      transparent 100%
    );
    z-index: 0;
    pointer-events: none;
  }
}

.disciplina {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  padding-inline: var(--space-3);
}

.disciplina__icon-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-crema-claro);
  border: 1.5px solid var(--color-dorado);
  border-radius: 50%;
  transition: transform var(--t-base), box-shadow var(--t-base), background-color var(--t-base);
}

.disciplina:hover .disciplina__icon-wrap {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  background-color: var(--color-blanco);
}

.disciplina__icon {
  width: 40px;
  height: 40px;
  color: var(--color-dorado);
  transition: transform var(--t-base);
}

.disciplina:hover .disciplina__icon {
  transform: scale(1.08);
}

/* Número romano discreto sobre el círculo */
.disciplina__num {
  position: absolute;
  top: -12px;
  right: -8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-violeta-medio);
  background-color: var(--color-crema-claro);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 169, 97, 0.3);
  letter-spacing: 0;
}

.disciplina__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.2rem + 0.6vw, 1.75rem);
  font-weight: var(--w-medium);
  color: var(--color-violeta-profundo);
  line-height: 1.15;
  letter-spacing: var(--ls-tight);
  margin-top: var(--space-2);
}

.disciplina__desc {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--color-tinta-suave);
  text-wrap: pretty;
  max-width: 320px;
}

.disciplina__detalle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-dorado);
  line-height: 1.4;
  margin-top: var(--space-1);
}

/* ---- Frase ancla cierre ---- */
.como-trabajo__anchor {
  margin-inline: auto;
  max-width: 800px;
  padding: var(--space-7) var(--space-5);
  text-align: center;
  position: relative;
}

@media (min-width: 700px) {
  .como-trabajo__anchor {
    padding: var(--space-7) var(--space-7);
  }
}

.como-trabajo__anchor::before,
.como-trabajo__anchor::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-dorado), transparent);
  margin-inline: auto;
}

.como-trabajo__anchor::before { margin-bottom: var(--space-6); }
.como-trabajo__anchor::after  { margin-top: var(--space-6); }

.como-trabajo__anchor-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 2rem);
  line-height: 1.35;
  color: var(--color-violeta-profundo);
  text-wrap: balance;
  letter-spacing: var(--ls-tight);
}

.como-trabajo__anchor-text strong {
  font-weight: var(--w-regular);
  color: var(--color-dorado);
  font-style: italic;
}

/* =========================================================
   SECCIÓN — TESTIMONIOS
   3 cards siempre visibles · prueba social distribuida por servicio
   ========================================================= */

.testimonios {
  background: linear-gradient(160deg, #EDE8F5 0%, #D9CCF0 50%, #C8B4E0 100%);
  position: relative;
  overflow: visible;
}

.testimonios > .container {
  position: relative;
  z-index: 1;
}

.testimonios__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-7);
}

.testimonios__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-dorado);
}

.testimonios__eyebrow-line {
  width: 32px;
  height: 1px;
  background-color: currentColor;
}

.testimonios__title {
  font-size: clamp(2rem, 1.6rem + 1.8vw, 3.2rem);
  line-height: 1.1;
  color: var(--color-violeta-profundo);
  text-wrap: balance;
}

.testimonios__title em {
  font-style: italic;
  color: var(--color-dorado);
}

.testimonios__lead {
  font-size: var(--fs-body);
  color: var(--color-tinta-suave);
  line-height: var(--lh-relaxed);
  max-width: 540px;
  text-wrap: pretty;
}

/* ---- Carrusel de testimonios ---- */
.testimonios__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-5);
  max-width: 900px;
  margin-inline: auto;
}

.carousel__track-wrapper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.carousel__track {
  position: relative;
}

/* ---- Card de testimonio (carrusel) ---- */
.testimonio-card {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 48px 56px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 168, 67, 0.30);
  border-radius: 20px;
  text-align: left;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonio-card.is-active {
  display: flex;
  opacity: 1;
}

.testimonio-card.is-fading-out {
  opacity: 0;
}

.testimonio-card__comilla {
  font-family: var(--font-display);
  font-size: 80px;
  color: #C8922A;
  opacity: 0.25;
  line-height: 0.5;
  margin-bottom: 8px;
  user-select: none;
  pointer-events: none;
}

.testimonio-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: #C8922A;
  line-height: 1.4;
  margin-bottom: 24px;
}

.testimonio-card__divider {
  width: 60px;
  height: 1px;
  background: rgba(212, 168, 67, 0.40);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.testimonio-card__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #3B2568;
  line-height: 1.75;
  margin-bottom: 32px;
  text-wrap: pretty;
}

.testimonio-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonio-card__avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B2568, #7B5BAA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  object-fit: cover;
}

.testimonio-card__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonio-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: #1E1035;
  line-height: 1.2;
}

.testimonio-card__rol {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7B5BAA;
}

/* ---- Flechas de navegación ---- */
.carousel__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(212, 168, 67, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  color: #C8922A;
}

.carousel__arrow svg {
  width: 22px;
  height: 22px;
  stroke: #C8922A;
  stroke-width: 1.5;
}

.carousel__arrow:hover {
  background: rgba(212, 168, 67, 0.15);
  border-color: rgba(212, 168, 67, 0.60);
}

/* ---- Dots indicadores ---- */
.carousel__controls {
  display: flex;
  justify-content: center;
  margin-top: var(--space-6);
}

.carousel__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.30);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
}

.carousel__dot.carousel__dot--active {
  width: 24px;
  border-radius: 4px;
  background: #C8922A;
}

/* ---- Mobile: flechas debajo de la card ---- */
@media (max-width: 767px) {
  .testimonios__carousel {
    flex-wrap: wrap;
    gap: var(--space-4);
  }

  .carousel__track-wrapper {
    order: 1;
    width: 100%;
    flex: 0 0 100%;
  }

  .carousel__arrow {
    order: 2;
    flex: 0 0 auto;
  }

  .testimonio-card {
    padding: 24px 20px;
  }

  .testimonio-card__comilla {
    font-size: 56px;
  }

  .testimonio-card__quote {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .testimonio-card__text {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  /* 4.svg visible como decoración de fondo en mobile */
  .testimonios__corner--left {
    display: block !important;
    left: -80px;
    height: 420px;
    opacity: 0.35;
  }
  .testimonios__corner--right {
    display: none;
  }
}

/* =========================================================
   SECCIÓN — CONTACTO
   Fondo crema suave, layout dos columnas: imagen + copy
   ========================================================= */

.contacto {
  background: linear-gradient(
    135deg,
    #FAF7F2 0%,
    #F5F0FA 50%,
    #EDE8F5 100%
  );
  position: relative;
  overflow: hidden;
  padding: 0;
  padding-top: 0;
  margin-top: 0;
  min-height: 90vh;
}

/* Flor de la vida — esquina superior derecha */
.contacto__flor {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 200px;
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Destellos dorados */
.contacto__destello {
  position: absolute;
  font-size: 14px;
  color: #C8922A;
  opacity: 0.40;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.contacto__destello--1 { top: 12%;  right: 52%; }
.contacto__destello--2 { top: 28%;  right: 38%; }
.contacto__destello--3 { top: 55%;  right: 30%; }
.contacto__destello--4 { top: 72%;  right: 48%; }
.contacto__destello--5 { top: 40%;  right: 22%; }

/* ---- Layout dos columnas ---- */
.contacto__layout {
  display: flex;
  align-items: center;
  min-height: 90vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---- Columna izquierda: imagen ---- */
.contacto__imagen {
  position: absolute;
  width: 60%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.contacto__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* fade derecho: disuelve el borde derecho de la imagen */
.contacto__img-fade-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(245, 240, 250, 0.5) 50%,
    #F5F0FA 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* fade arriba y abajo: toque mínimo solo en los extremos */
.contacto__img-fade-tb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(245, 240, 250, 0.30) 0%,
    transparent 6%,
    transparent 94%,
    rgba(237, 232, 245, 0.30) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ---- Columna derecha: copy ---- */
.contacto__copy {
  width: 50%;
  margin-left: 50%;
  padding: 60px 60px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 3;
  background: transparent;
}

/* Label versales */
.contacto__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A07820;
  margin-bottom: 8px;
}

/* Divisor con rombo */
.contacto__divisor {
  display: none;
}
.contacto__divisor-line {
  flex: 1;
  height: 1px;
  background: rgba(212, 168, 67, 0.45);
  max-width: 48px;
}
.contacto__divisor-rombo {
  font-size: 8px;
  color: #C8922A;
  opacity: 0.70;
}

/* H2 */
.contacto__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 1.8rem + 2vw, 3.5rem);
  line-height: 1.15;
  color: #1E1035;
  margin-bottom: 20px;
  text-wrap: balance;
}

/* Subtextos */
.contacto__subtexto {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.contacto__subtexto-1 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  color: #1E1035;
  line-height: 1.4;
}
.contacto__subtexto-2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: #C8922A;
  line-height: 1.4;
}

/* Divisor fino */
.contacto__divisor-fino {
  width: 100%;
  height: 1px;
  background: rgba(212, 168, 67, 0.30);
  margin-bottom: 28px;
}

/* Botón principal "Declaro en Obra" */
.contacto__btn-obra {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  max-width: 460px;
  border: 1.5px solid rgba(212, 168, 67, 0.60);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 24px;
}

.contacto__btn-obra:hover {
  border-color: rgba(212, 168, 67, 0.90);
  background: rgba(255, 255, 255, 0.80);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.20);
}

.contacto__btn-icono {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 168, 67, 0.50);
  border-radius: 8px;
  background: rgba(212, 168, 67, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8922A;
}

.contacto__btn-icono svg {
  width: 24px;
  height: 24px;
  stroke: #C8922A;
  stroke-width: 1.2;
}

.contacto__btn-texto {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1E1035;
  line-height: 1.3;
}

/* Texto secundario */
.contacto__wa-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #1E1035;
  margin: 0;
  line-height: 1.4;
}

.contacto__wa-link {
  display: none;
}

.contacto__cta-frase {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: #3B2568;
  text-align: left;
  margin-bottom: 12px;
  line-height: 1.4;
}

.contacto__redes {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.contacto__red-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(59, 37, 104, 0.5);
  transition: color 0.2s ease;
}

.contacto__red-icon:hover {
  color: #C8922A;
}

.contacto__red-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}


/* ---- Mobile ---- */
@media (max-width: 768px) {
  .contacto {
    min-height: 100vh;
    background-image: url('../public/final.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
  }

  .contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/final.webp');
    background-position: center center;
    background-size: cover;
    filter: blur(6px);
    z-index: -1;
  }

  @supports not (background-image: url('data:image/webp;base64,')) {
    .contacto {
      background-image: url('../public/final-compressed.jpeg');
    }

    .contacto::before {
      background-image: url('../public/final-compressed.jpeg');
    }
  }

  .contacto__layout {
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
  }

  .contacto__imagen {
    display: none;
  }

  .contacto__img-fade-right {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
      to bottom,
      rgba(245, 240, 250, 0.40) 0%,
      rgba(245, 240, 250, 0.35) 25%,
      rgba(245, 240, 250, 0.65) 45%,
      rgba(245, 240, 250, 0.85) 65%,
      #F5F0FA 85%,
      #F5F0FA 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .contacto__copy {
    width: 100%;
    margin-left: 0;
    padding: 120px 24px 60px 24px;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.25) 30%, rgba(255,255,255,0.5) 60%, rgba(255,255,255,0.7) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contacto__label {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .contacto__divisor {
    justify-content: center;
  }

  .contacto__title {
    font-size: 36px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .contacto__subtexto {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .contacto__divisor-fino {
    margin-left: auto;
    margin-right: auto;
  }

  .contacto__btn-obra {
    width: 100%;
    max-width: 100%;
  }

  .contacto__wa-link {
    display: none;
  }

  .contacto__wa-link:active {
    background-color: rgba(255, 255, 255, 0.85);
  }

  .contacto__wa-text {
    text-align: center;
    margin: 0;
    font-weight: 500;
    font-size: 15px;
    color: #1E1035;
  }

  /* Servicios: header más compacto en mobile */
  .servicio {
    gap: var(--space-3);
    padding: var(--space-5) var(--space-5);
  }
  .servicio__header {
    margin-bottom: 0;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .servicio__edificio {
    width: 24px;
    height: 34px;
  }
  .servicio__num {
    font-size: 1.05rem;
  }
}

/* =========================================================
   FOOTER (minimal, centrado)
   ========================================================= */

.footer {
  background-color: #0F0820;
  color: rgba(255, 255, 255, 0.55);
  padding: 40px 0 32px;
  position: relative;
  overflow: hidden;
}

/* ---- Filas genéricas ---- */
.footer__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 24px;
}

/* Fila 1: Logo + Tagline */
.footer__row--1 {
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__logo:hover {
  opacity: 0.8;
}

.footer__logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__logo-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
}

.footer__logo-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  text-wrap: balance;
  margin-top: 8px;
  max-width: 600px;
}

/* Divisor */
.footer__divider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto;
  width: 200px;
  color: #C8922A;
}

.footer__divider-line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.footer__divider-diamond {
  font-size: 8px;
  opacity: 0.70;
}

/* Fila 2: Redes sociales */
.footer__row--social {
  gap: 0;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0 8px;
}

.footer__social-link i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: rgba(200, 146, 42, 0.70);
  stroke-width: 1.5;
}

.footer__social-link:hover,
.footer__social-link:hover i {
  color: #C8922A;
  stroke: #C8922A;
}

.footer__social-sep {
  color: rgba(255, 255, 255, 0.30);
  padding: 0 12px;
}

/* Fila 3: Copyright + Frase */
.footer__row--3 {
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.footer__copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.30);
  margin: 0;
}

.footer__frase {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: #C8922A;
  margin: 0;
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  .footer {
    padding: 32px 0 24px;
  }

  .footer__tagline {
    font-size: 15px;
  }

  .footer__row--nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    row-gap: 12px;
  }

  .footer__nav-sep {
    padding: 0 8px;
  }

  .footer__row--social {
    flex-direction: column;
    gap: 12px;
  }

  .footer__social-sep {
    display: none;
  }

  .footer__social-link {
    padding: 0;
  }
}

/* =========================================================
   STICKY WHATSAPP (mobile)
   ========================================================= */

/* Sticky WhatsApp en paleta MelisArt: dorado sólido + ícono violeta profundo.
   Anillo dorado sutil con animación de pulso para llamar la atención sin saturar. */

/* =========================================================
   ACTUALIZACIONES Y NUEVAS SECCIONES — v2
   ========================================================= */

/* ---------- HEADER: transparente sobre hero, sólido al scroll ---------- */
.header {
  background-color: transparent;
}
.header.is-scrolled {
  background-color: rgba(250, 247, 242, 0.95);
}
.mobile-nav {
  background-color: var(--color-lavanda-card);
}

/* ---------- BOTÓN DORADO ---------- */
.btn--gold {
  background-color: var(--color-dorado);
  color: var(--color-violeta-profundo);
  box-shadow: var(--shadow-md);
}
.btn--gold:hover {
  background-color: var(--color-dorado-claro);
  box-shadow: var(--shadow-gold);
}
.section--violeta .btn--gold,
.metodo .btn--gold {
  background-color: var(--color-dorado);
  color: var(--color-violeta-profundo);
}

.testimonios .btn--gold {
  background: linear-gradient(135deg, #D4A843, #E8C460);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

.testimonios .btn--gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.testimonios .btn--ghost {
  background-color: var(--color-violeta-profundo);
  color: var(--color-blanco);
  border-color: var(--color-violeta-profundo);
}

.testimonios .btn--ghost:hover {
  background-color: var(--color-violeta-medio);
  color: var(--color-blanco);
  border-color: var(--color-violeta-medio);
}

/* ---------- HERO: WA inline link ---------- */
.hero__wa-line {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-small);
  color: var(--color-tinta-suave);
  margin-top: var(--space-2);
}
.hero__wa-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-dorado);
}
.hero__wa-link {
  color: var(--color-violeta-medio);
  font-weight: var(--w-medium);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero__wa-link:hover { color: var(--color-dorado); }

/* ---------- PARA VOS: check mark ✦ ---------- */
.para-vos__check {
  color: var(--color-dorado);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* ---------- MÉTODO MELISART v2 ---------- */

@keyframes metodo-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes sparkle-pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.7; }
}

.metodo2 {
  position: relative;
  overflow: visible;
  padding: 40px 0;
  background: linear-gradient(160deg, #EDE8F5 0%, #D9CCF0 50%, #C8B4E0 100%);
}

/* Geometría sagrada esquina superior derecha */
.metodo2__geo {
  position: absolute;
  width: 320px;
  opacity: 0.75;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.metodo2__geo--top {
  top: 50px;
  left: 5%;
}

.metodo2__geo--bottom {
  bottom: 100px;
  right: 8%;
}

/* Sparkles */
.metodo2__sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: sparkle-pulse 3s infinite ease-in-out;
}
.metodo2__sparkle--1 { width: 14px; top: 25%; left: 35%; animation-delay: 0s; }
.metodo2__sparkle--2 { width: 10px; top: 50%; left: 70%; animation-delay: 0.8s; }
.metodo2__sparkle--3 { width: 12px; top: 70%; left: 42%; animation-delay: 1.6s; }
.metodo2__sparkle--4 { width: 8px;  top: 35%; left: 65%; animation-delay: 2.4s; }
.metodo2__sparkle--5 { width: 14px; top: 55%; left: 30%; animation-delay: 0.4s; }
.metodo2__sparkle--6 { width: 10px; top: 75%; left: 60%; animation-delay: 1.2s; }

/* Ramitas lavanda */
/* BLOQUE 1: Header centrado */
.metodo2__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 48px;
  padding-inline: var(--section-px);
}

/* Contenedor principal (dos columnas) */
.metodo2__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

@media (max-width: 767px) {
  .metodo2__container {
    flex-direction: column;
    gap: var(--space-8);
  }
}

/* Columna izquierda (imagen) */
.metodo2__col-left {
  flex: 0 0 40%;
  display: flex;
  align-items: stretch;
}

@media (max-width: 767px) {
  .metodo2__col-left {
    flex: 1 1 auto;
    width: 100%;
    justify-content: center;
  }
}

.metodo2__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #5C3A9A 0%, #8B62C4 25%, #C8B0E0 50%, #8B62C4 75%, #5C3A9A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.metodo2__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 3vw + 1rem, 3.25rem);
  font-weight: 600;
  color: #1E1035;
  line-height: 1.15;
}

.metodo2__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: 2px auto;
}

.metodo2__divider-line {
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C8B0E0, transparent);
}

.metodo2__divider-diamond {
  background: linear-gradient(135deg, #5C3A9A 0%, #8B62C4 25%, #C8B0E0 50%, #8B62C4 75%, #5C3A9A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.6rem;
}

.metodo2__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.375rem;
  color: #7B5BAA;
  line-height: 1.3;
}

.metodo2__lead {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #3B2568;
  line-height: 1.7;
}

.metodo2__edificio {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(123, 91, 170, 0.20));
}

@media (max-width: 767px) {
  .metodo2__edificio {
    max-width: 260px;
    margin: 0 auto;
  }
}

/* Columna derecha: lista de módulos */
.metodo2__col-right {
  flex: 0 0 60%;
  position: relative;
}

@media (max-width: 767px) {
  .metodo2__col-right {
    flex: 1 1 auto;
    width: 100%;
  }
}

/* Línea decorativa vertical */
.metodo2__decoration-line {
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  pointer-events: none;
}

.metodo2__decoration-symbol {
  font-size: 1.2rem;
  background: linear-gradient(135deg, #5C3A9A 0%, #8B62C4 25%, #C8B0E0 50%, #8B62C4 75%, #5C3A9A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  line-height: 1;
}

@media (max-width: 767px) {
  .metodo2__decoration-line {
    position: static;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .metodo2__decoration-symbol {
    font-size: 1rem;
  }
}

.metodo2__lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.metodo2__modulo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 0.5px solid rgba(196, 168, 224, 0.25);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.metodo2__modulo.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.metodo2__modulo:last-child { border-bottom: none; }

.metodo2__letra {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 600;
  background: linear-gradient(135deg, #5C3A9A 0%, #8B62C4 25%, #C8B0E0 50%, #8B62C4 75%, #5C3A9A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  width: 56px;
  text-align: center;
  flex-shrink: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .metodo2__letra { font-size: 2.5rem; width: 52px; }
}

@media (max-width: 767px) {
  .metodo2__letra { font-size: 2.25rem; width: 48px; }
}

.metodo2__icono-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 146, 42, 0.50);
  background: rgba(200, 146, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metodo2__icono-wrap i,
.metodo2__icono-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #8B62C4;
  stroke-width: 1.5;
  fill: none;
  opacity: 1;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .metodo2__icono-wrap { width: 44px; height: 44px; }
}

@media (max-width: 767px) {
  .metodo2__icono-wrap { width: 42px; height: 42px; }
}

.metodo2__texto {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metodo2__nombre {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1E1035;
  line-height: 1.3;
}

.metodo2__nombre em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #5C3A9A 0%, #8B62C4 25%, #C8B0E0 50%, #8B62C4 75%, #5C3A9A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.875rem;
}

.metodo2__desc {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #3B2568;
  opacity: 0.85;
  line-height: 1.45;
}

/* Footer full-width */
.metodo2__footer {
  position: relative;
  z-index: 1;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--section-px);
  margin-top: var(--space-9);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-5);
}

.metodo2__footer-divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  max-width: 400px;
}

.metodo2__footer-divider .metodo2__divider-line {
  flex: 1;
  max-width: none;
}

.metodo2__frase {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 600;
  color: #1E1035;
  line-height: 1.4;
  max-width: 680px;
}

.metodo2__frase em {
  font-style: italic;
  background: linear-gradient(135deg, #FFD700 0%, #FFF8DC 30%, #FFD700 50%, #FFF8DC 70%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.95em;
}

.metodo2__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 767px) {
  .metodo2__ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

.metodo2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, background 0.25s ease;
  border: none;
}

.metodo2__btn--gold {
  background: linear-gradient(135deg, #D4A843, #E8C460);
  color: #ffffff;
}
.metodo2__btn--gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.metodo2__btn--dark {
  background: #1E1035;
  color: #ffffff;
}
.metodo2__btn--dark:hover {
  background: #3B2568;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .metodo2__btn { width: 100%; max-width: 320px; }
}

/* Esquinas decorativas inferiores */
.metodo2__corner {
  position: absolute;
  bottom: 0;
  height: 550px;
  width: auto;
  margin: 0;
  padding: 0;
  z-index: 0;
  pointer-events: none;
}

.metodo2__corner--left {
  left: -120px;
}

.metodo2__corner--right {
  right: -120px;
}

@media (max-width: 767px) {
  .metodo2__corner {
    display: none;
  }
  .metodo2__corner--left {
    display: block !important;
    left: -80px;
    height: 420px;
    opacity: 0.35;
  }
}

/* z-index para contenido */
.metodo2 {
  z-index: 1;
}

/* ---------- 3 PILARES ---------- */
.pilares {
  background-color: #2D1B52;
  position: relative;
  overflow: hidden;
}

.pilares__inner {
  position: relative;
  z-index: 1;
}

/* Decoraciones geométricas */
.pilares__geo {
  position: absolute;
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}
.pilares__geo--left  {
  left: 3%;
  top: 5%;
}
.pilares__geo--right {
  right: 4%;
  bottom: 8%;
}

/* Sparkles */
.pilares__sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
  width: 14px;
  height: 14px;
}

@media (max-width: 767px) {
  .pilares__geo {
    opacity: 0.10;
    width: 150px;
    height: 150px;
  }
  .pilares__geo--left {
    top: 15%;
    transform: none;
    left: -30px;
  }
  .pilares__geo--right {
    top: auto;
    bottom: 15%;
    transform: none;
    right: -30px;
  }
}

.pilares__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.pilares__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--color-dorado);
}
.pilares__eyebrow-line {
  width: 28px; height: 1px;
  background-color: var(--color-dorado);
}

.pilares__title {
  font-size: var(--fs-h2);
  color: var(--color-crema-claro);
  margin-bottom: var(--space-2);
}

.pilares__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-dorado-claro);
  font-size: var(--fs-lead);
  margin-bottom: var(--space-4);
}

.pilares__lead {
  color: var(--color-lavanda-claro);
  font-weight: var(--w-light);
  line-height: var(--lh-relaxed);
}

/* Grid de 3 columnas sin fondo */
.pilares__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.pilar {
  flex: 1;
  padding: 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(212, 175, 80, 0.40);
}

.pilar:last-child {
  border-right: none;
}

/* Círculo con ícono */
.pilar__circle {
  width: 100px;
  height: 100px;
  border: 1.5px solid rgba(232, 196, 96, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pilar__num {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #C8952A 0%, #F0D060 35%, #E8C460 50%, #F5E88A 65%, #D4A843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.pilar__name {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-crema-claro);
  margin-bottom: 4px;
}

.pilar__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  background: linear-gradient(135deg, #C8952A 0%, #F0D060 35%, #E8C460 50%, #F5E88A 65%, #D4A843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.pilar__desc {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-lavanda-claro);
  line-height: 1.7;
  font-weight: 400;
}

/* Frase final */
.pilares__anchor {
  margin: 56px auto 0;
  max-width: 560px;
  border: 1px solid rgba(212, 175, 80, 0.50);
  border-radius: 12px;
  padding: 28px 40px;
  background: rgba(255, 255, 255, 0.20);
  text-align: center;
}

.pilares__anchor-line1 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-crema-claro);
  line-height: 1.4;
}

.pilares__anchor-line2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  background: linear-gradient(135deg, #C8952A 0%, #F0D060 35%, #E8C460 50%, #F5E88A 65%, #D4A843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 767px) {
  .pilares__grid {
    flex-direction: column;
    align-items: stretch;
  }

  .pilar {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 80, 0.40);
    padding: 32px 0;
  }

  .pilar:last-child {
    border-bottom: none;
  }

  .pilar__circle {
    width: 80px;
    height: 80px;
  }

  .pilar__circle i {
    width: 32px !important;
    height: 32px !important;
  }

  .pilares__anchor {
    padding: 18px 20px;
    margin-top: 36px;
  }

  .pilares__anchor-line1,
  .pilares__anchor-line2 {
    font-size: 19px;
  }
}

/* ---------- SERVICIOS: nuevos elementos ---------- */
.servicios__subtitle-italic {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-dorado);
  font-size: var(--fs-lead);
  margin-top: calc(-1 * var(--space-2));
}

.servicio__badge-tag {
  font-family: var(--font-micro);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-dorado);
  opacity: 0.8;
  margin-bottom: var(--space-2);
}

.servicio--destacado .servicio__badge-tag {
  color: var(--color-dorado);
}

.servicio__para-quien {
  font-size: var(--fs-small);
  color: var(--color-tinta-suave);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2);
}

.servicio--destacado .servicio__para-quien {
  color: var(--color-lavanda);
}

.servicio__que-titulo {
  font-family: var(--font-micro);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-tinta-muted);
  margin-bottom: var(--space-2);
}

.servicio--destacado .servicio__que-titulo {
  color: var(--color-lavanda);
  opacity: 0.7;
}

/* Tercera card: Método MelisArt Premium (Violeta) */
.servicios__grid > .servicio:nth-child(3) {
  background-color: var(--color-violeta-profundo);
  color: var(--color-crema);
  border: 1.5px solid rgba(212, 168, 67, 0.70);
  border-top: 3px solid #D4A843;
  box-shadow: 0 8px 40px rgba(212, 168, 67, 0.15), 0 2px 8px rgba(59, 37, 104, 0.10);
}

.servicios__grid > .servicio:nth-child(3):hover {
  border-color: rgba(212, 168, 67, 0.90);
  box-shadow: 0 16px 56px rgba(212, 168, 67, 0.25), 0 4px 12px rgba(59, 37, 104, 0.15);
}

.servicios__grid > .servicio:nth-child(3) .servicio__name {
  color: var(--color-crema-claro);
}

.servicios__grid > .servicio:nth-child(3) .servicio__subtitle,
.servicios__grid > .servicio:nth-child(3) .servicio__desc,
.servicios__grid > .servicio:nth-child(3) .servicio__lista li {
  color: #FFFFFF;
}

.servicios__grid > .servicio:nth-child(3) .servicio__resultado-label {
  color: var(--color-crema-claro);
}

.servicios__grid > .servicio:nth-child(3) .servicio__badge-tag {
  background: linear-gradient(135deg, #B8820A, #D4A843);
  color: #FFFFFF;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 1;
  margin-bottom: var(--space-2);
}

.servicios__grid > .servicio:nth-child(3) .servicio__para-quien {
  color: #FFFFFF;
}

.servicios__grid > .servicio:nth-child(3) .servicio__divider {
  border-top-color: rgba(201, 169, 97, 0.3);
}

.servicios__grid > .servicio:nth-child(3) .servicio__cta .btn--ghost {
  background-color: var(--color-dorado);
  color: #FFFFFF;
  border: 1.5px solid var(--color-dorado);
  font-weight: 600;
}

.servicios__grid > .servicio:nth-child(3) .servicio__cta .btn--ghost:hover {
  background-color: var(--color-dorado-claro);
  color: #FFFFFF;
  border-color: var(--color-dorado-claro);
}

.servicios__grid > .servicio:nth-child(3) .servicio__resultado-text {
  color: #FFFFFF;
}

.servicios__bottom {
  margin-top: var(--space-8);
  background: var(--color-violeta-profundo);
  border-radius: var(--radius-xl);
  padding: var(--space-7) var(--space-6);
  text-align: center;
  color: var(--color-crema);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.servicios__bottom-text {
  font-size: var(--fs-body);
  color: var(--color-lavanda);
  line-height: var(--lh-relaxed);
  max-width: 520px;
}

.servicios__bottom-cta-label {
  font-family: var(--font-micro);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-dorado);
  opacity: 0.8;
}

.servicios__bottom .btn--gold {
  color: #FFFFFF;
}

.servicios__bottom .btn--gold svg {
  fill: #FFFFFF;
}

.btn__text--mobile { display: none; }
.btn__text--desktop { display: inline; }

@media (max-width: 768px) {
  .servicios__bottom .btn--gold {
    align-self: center;
    width: auto;
    font-size: 0.9rem;
    padding: 12px 22px;
  }
  .btn__text--desktop { display: none; }
  .btn__text--mobile { display: inline; }
}

/* ---------- SOBRE MÍ: credenciales ---------- */
.sobre-mi__creds {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sobre-mi__cred {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.sobre-mi__cred-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(196, 168, 224, 0.25);
  border: 1px solid rgba(212, 168, 67, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sobre-mi__cred-icon {
  width: 22px;
  height: 22px;
  stroke: #C8922A;
  stroke-width: 1.5;
  fill: none;
}

.sobre-mi__cred-sep {
  width: 1px;
  height: 40px;
  background: rgba(212, 168, 67, 0.50);
  flex-shrink: 0;
}

.sobre-mi__cred-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sobre-mi__cred-title {
  font-family: var(--font-micro);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1E1035;
  text-transform: uppercase;
}

.sobre-mi__cred-sub {
  font-family: var(--font-micro);
  font-size: 12px;
  font-weight: 400;
  color: #C8922A;
}

/* ---------- MI HISTORIA (nueva sección) ---------- */
.historia {
  background-color: #2D1B52;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  overflow: hidden;
}

.historia > .container {
  position: relative;
  z-index: 1;
}

.historia__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.historia__title {
  font-size: var(--fs-h2);
  color: var(--color-violeta-profundo);
  margin-bottom: var(--space-3);
}

.historia__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-dorado);
  font-size: var(--fs-lead);
}

.chapter__subt {
  font-family: var(--font-micro);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-xwide);
  text-transform: uppercase;
  color: var(--color-dorado);
  opacity: 0.7;
  margin-bottom: var(--space-2);
}

.historia__quote {
  text-align: center;
  margin-top: var(--space-9);
  padding: var(--space-6);
  border-top: 1px solid rgba(201,169,97,0.3);
}

.historia__quote .sobre-mi__quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.7rem);
  color: var(--color-violeta-profundo);
  line-height: 1.5;
}

/* ---------- TESTIMONIOS: quote + chips + cierre ---------- */
.testimonio__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--color-dorado);
  line-height: 1.4;
  margin-bottom: var(--space-4);
}

.testimonios__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-7);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-dorado-claro);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-small);
  color: var(--color-violeta-profundo);
  background: rgba(255,255,255,0.35);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.chip:hover {
  border-color: var(--color-dorado);
  background: rgba(201,169,97,0.08);
}

.testimonios__cierre {
  text-align: center;
  margin-top: var(--space-8);
}

.testimonios__cierre-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem);
  line-height: 1.4;
  color: var(--color-violeta-profundo);
  margin-bottom: var(--space-6);
}

.testimonios__cierre-text em {
  font-style: italic;
  background: linear-gradient(135deg, #D4A843, #E8C460);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonios__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* Esquinas decorativas inferiores */
.testimonios__corner {
  position: absolute;
  bottom: 0;
  height: 550px;
  width: auto;
  margin: 0;
  padding: 0;
  z-index: 0;
  pointer-events: none;
}

.testimonios__corner--left {
  left: -120px;
}

.testimonios__corner--right {
  right: -120px;
}

@media (max-width: 767px) {
  .testimonios__corner {
    display: none;
  }
}

/* ---------- CONTACTO: card oscura ---------- */
.contacto__card {
  background: var(--color-violeta-profundo);
  border: 1px solid rgba(201,169,97,0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
  margin-top: var(--space-6);
  color: var(--color-crema);
}

.contacto__card-text {
  color: var(--color-lavanda);
  font-size: var(--fs-lead);
  line-height: var(--lh-relaxed);
  max-width: 480px;
}

.contacto__card-text strong {
  color: var(--color-crema-claro);
  font-weight: var(--w-medium);
}

.contacto__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.contacto__link {
  font-size: var(--fs-small);
  color: var(--color-lavanda);
  opacity: 0.8;
  transition: color var(--t-fast), opacity var(--t-fast);
}

.contacto__link:hover {
  color: var(--color-dorado);
  opacity: 1;
}

.contacto__link-sep {
  color: var(--color-dorado);
  opacity: 0.4;
  font-size: 0.6rem;
}

/* ---------- FOOTER: layout actualizado ---------- */
.footer {
  background-color: #0F0820;
  padding-block: var(--space-7) var(--space-5);
}

}

/* ---------- HERO BACKGROUND sobre lila ---------- */
.hero {
  background-color: var(--color-crema-claro);
}

/* ---------- SERVICE CARDS: glassmorphism sobre lila ---------- */
.servicio:not(.servicio--destacado) {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 97, 0.25);
}

.servicio:not(.servicio--destacado):hover {
  border-top: 3px solid var(--color-dorado);
  transform: translateY(-4px);
}

/* ---------- SERVICIOS: fondo de sección ---------- */
.servicios {
  background-color: #FAF7F2;
}

/* =========================================================
   COLORES DE TEXTO POR TIPO DE FONDO
   ========================================================= */

/* SOBRE FONDO DEGRADÉ LAVANDA: metodo2, sobre-mi, historia */
.metodo2 .metodo2__title,
.metodo2 .metodo2__subtitle {
  color: #1E1035;
}
.metodo2 .metodo2__lead {
  color: #2D1B52;
}
.metodo2 .metodo2__eyebrow,
.metodo2 .metodo2__modulo .metodo2__nombre em,
.metodo2 .metodo2__frase em {
  background: linear-gradient(135deg, #5C3A9A 0%, #8B62C4 25%, #C8B0E0 50%, #8B62C4 75%, #5C3A9A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sobre-mi .sobre-mi__title,
.sobre-mi .historia__title {
  color: #1E1035;
}
.sobre-mi .sobre-mi__perfil-text,
.sobre-mi .sobre-mi__quote-text {
  color: #2D1B52;
}
.sobre-mi .sobre-mi__perfil-eyebrow,
.sobre-mi .sobre-mi__quote-text em {
  color: #A07820;
}

.historia .historia__title {
  color: #FFFFFF;
}
.historia .historia__subtitle {
  color: rgba(255, 255, 255, 0.82);
}
.historia .chapter__title {
  color: #FFFFFF;
}
.historia .chapter__text {
  color: rgba(255, 255, 255, 0.82);
}
.historia .chapter__label {
  color: #E8C460;
}
.historia .chapter__subt {
  color: #E8C460;
}
.historia .historia__quote .sobre-mi__quote-text {
  color: rgba(255, 255, 255, 0.82);
}
.historia .historia__quote .sobre-mi__quote-text em {
  color: #E8C460;
}

/* SOBRE FONDO VIOLETA OSCURO: pilares, como-trabajo */
.pilares .pilares__title,
.pilares .pilar__name {
  color: #FFFFFF;
}
.pilares .pilares__subtitle,
.pilares .pilares__lead,
.pilares .pilar__desc,
.pilares .pilares__anchor-line1 {
  color: rgba(255, 255, 255, 0.82);
}
.pilares .pilares__eyebrow,
.pilares .pilar__num,
.pilares .pilares__anchor-line2 {
  color: #E8C460;
}
.pilares .pilares__anchor-line2 em {
  color: #E8C460;
}
.pilares .pilar__sub {
  color: rgba(255, 255, 255, 0.7);
}

.como-trabajo .como-trabajo__title {
  color: #1E1035;
}
.como-trabajo .como-trabajo__title em {
  color: #D4A843;
}
.como-trabajo .como-trabajo__lead {
  color: #3B2568;
}
.como-trabajo .como-trabajo__eyebrow {
  color: #A07820;
}
.como-trabajo .disciplina__name {
  color: #1E1035;
}
.como-trabajo .disciplina__desc {
  color: #3B2568;
}
.como-trabajo .disciplina__detalle {
  color: #A07820;
}
.como-trabajo .disciplina__icon-wrap {
  background-color: rgba(59, 37, 104, 0.06);
  border-color: #D4A843;
}
.como-trabajo .disciplina__icon {
  color: #3B2568;
}
.como-trabajo .disciplina__num {
  color: #A07820;
  background-color: rgba(59, 37, 104, 0.06);
}
.como-trabajo .como-trabajo__anchor-text {
  color: #1E1035;
}
.como-trabajo .como-trabajo__anchor-text strong {
  color: #3B2568;
}

/* SOBRE FONDO CREMA: para-vos, servicios, testimonios */
.para-vos .para-vos__title,
.para-vos .para-vos__text {
  color: #1E1035;
}
.para-vos .para-vos__lead {
  color: #3B2568;
}
.para-vos .eyebrow {
  color: #A07820;
}

.testimonios .testimonios__title {
  color: #1E1035;
}
.testimonios .testimonios__lead {
  color: #3B2568;
}
.testimonios .testimonios__eyebrow {
  color: #A07820;
}
.testimonios .testimonio__name {
  color: #1E1035;
}
.testimonios .testimonio__text {
  color: #3B2568;
}

/* SVG wave transitions */
.wave-transition {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}

/* ---- WhatsApp sticky (todos los dispositivos) ---- */
#whatsapp-sticky {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  z-index: 9999;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease;
}
#whatsapp-sticky:hover {
  transform: scale(1.08);
}

/* ---------- HERO: mobile adjustments ---------- */
@media (max-width: 768px) {
  .hero__copy::before {
    background: none !important;
  }
}
