/* ═══════════════════════════════════════════════════════════════
   AMATISTA ETERNA — Design System CSS v3
   Limpio, sin duplicados, sin parches acumulados.
   ═══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   1. TOKENS
   ────────────────────────────────────────── */
:root {
  --ivory:         oklch(100% 0 0);
  --graphite:      oklch(22% 0.012 285);
  --amethyst:      oklch(50% 0.18 300);
  --amethyst-soft: oklch(67% 0.13 300);
  --lilac:         oklch(84% 0.06 300);
  --lilac-soft:    oklch(96% 0.018 300);
  --stone:         oklch(91% 0.007 285);
  --bg:            var(--ivory);
  --fg:            var(--graphite);
  --border:        oklch(84% 0.012 285 / 55%);

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans:  "Jost", system-ui, sans-serif;

  --s1:  0.25rem;  --s2:  0.5rem;   --s3:  0.75rem;
  --s4:  1rem;     --s6:  1.5rem;   --s7:  1.75rem;  --s8:  2rem;
  --s10: 2.5rem;   --s12: 3rem;     --s16: 4rem;
  --s20: 5rem;     --s24: 6rem;     --s28: 7rem;
  --s32: 8rem;     --s40: 10rem;    --s48: 12rem;

  --container: 1600px;
  --gutter-x:  1.5rem;
  --col-gap:   1.5rem;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-reveal:   cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 0.15s;
  --duration-base: 0.3s;
  --duration-slow: 0.6s;
}

@media (min-width: 48rem) {
  :root { --gutter-x: 3rem; --col-gap: 3rem; }
}


/* ──────────────────────────────────────────
   2. RESET & BASE
   ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 400; line-height: 1.02; letter-spacing: -0.01em; }
::selection { background: var(--amethyst); color: var(--ivory); }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }


/* ──────────────────────────────────────────
   3. LAYOUT
   ────────────────────────────────────────── */
.ae-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter-x);
  box-sizing: border-box;
}

.ae-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
}

/* Mobile — todas columnas en span 12 */
.ae-col-4, .ae-col-5, .ae-col-7, .ae-col-8 { grid-column: span 12; }

@media (min-width: 48rem) {
  .ae-col-4  { grid-column: span 4; }
  .ae-col-5  { grid-column: span 5; }
  .ae-col-7  { grid-column: span 7; }
  .ae-col-8  { grid-column: span 8; }
  .ae-col-offset-1.ae-col-4 { grid-column: 9 / span 4; }
}


/* ──────────────────────────────────────────
   4. TIPOGRAFÍA
   ────────────────────────────────────────── */
.ae-display {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.ae-display em { font-style: italic; font-weight: 300; color: var(--amethyst); }

.ae-h2 { font-size: clamp(2.25rem, 5.5vw, 5rem); }

.ae-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amethyst);
  display: block;
  margin-bottom: 0.75rem;
}
.ae-eyebrow--faint { color: oklch(from var(--graphite) l c h / 55%); }
.ae-eyebrow--muted { color: oklch(from var(--graphite) l c h / 55%); }

.ae-body {
  font-weight: 400;
  color: oklch(from var(--graphite) l c h / 85%);
  line-height: 1.7;
  color: oklch(from var(--graphite) l c h / 82%);
  margin-top: 1.25rem;
}

.ae-hairline-amethyst {
  width: 3rem;
  height: 1px;
  background: var(--amethyst);
  margin-block: var(--s8);
}


/* ──────────────────────────────────────────
   5. BOTONES CTA — sistema unificado
   ────────────────────────────────────────── */
.ae-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--amethyst);
  color: var(--ivory);
  border: 1px solid var(--amethyst);
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  white-space: nowrap;
  transition: background 0.3s var(--ease-in-out), color 0.3s var(--ease-in-out);
}
.ae-btn-cta:hover { background: transparent; color: var(--amethyst); }

.ae-btn-cta--ghost { background: transparent; color: var(--amethyst); }
.ae-btn-cta--ghost:hover { background: var(--amethyst); color: var(--ivory); }

.ae-section-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.ae-section-ctas--right { justify-content: flex-end; }

/* Links inline contacto — NO afectados por el reset */
.ae-link--inline,
.ae-link--amethyst-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--graphite);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.3s;
}
.ae-link--inline:hover,
.ae-link--amethyst-inline:hover { color: var(--amethyst); }


/* ──────────────────────────────────────────
   6. HEADER
   ────────────────────────────────────────── */
.ae-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: oklch(100% 0 0 / 70%);
  border-bottom: 1px solid oklch(from var(--graphite) l c h / 8%);
}

.ae-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s4) var(--gutter-x);
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  box-sizing: border-box;
}

.ae-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.ae-logo__gem { width: 4rem; height: 4rem; flex-shrink: 0; }
.ae-logo__text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--graphite);
}
.ae-logo__text em { font-style: italic; color: var(--amethyst); font-weight: 300; }

.ae-nav { display: none; align-items: center; gap: 2.5rem; }
.ae-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--graphite);
  transition: color var(--duration-base);
}
.ae-nav a:hover { color: var(--amethyst); }

@media (min-width: 48rem) { .ae-nav { display: flex; } }

.ae-header__actions { display: flex; align-items: center; gap: 1rem; }

.ae-icon-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid oklch(from var(--graphite) l c h / 15%);
  color: var(--graphite);
  transition: color var(--duration-base), border-color var(--duration-base);
}
.ae-icon-btn:hover { color: var(--amethyst); border-color: var(--amethyst); }
@media (min-width: 48rem) { .ae-icon-btn { display: inline-flex; } }

.ae-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  padding: 4px;
}
.ae-burger span { display: block; height: 1.5px; background: var(--graphite); transition: transform var(--duration-base), opacity var(--duration-base); }
.ae-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ae-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ae-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 48rem) { .ae-burger { display: none; } }


/* ──────────────────────────────────────────
   7. DRAWER MOBILE
   ────────────────────────────────────────── */
.ae-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(20rem, 85%);
  background: var(--ivory);
  z-index: 200;
  padding: var(--s6) var(--s6);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px oklch(0% 0 0 / 12%);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-expo);
}
.ae-drawer.is-open { transform: translateX(0); }

.ae-drawer__close {
  align-self: flex-end;
  font-size: 1.1rem;
  color: var(--graphite);
  margin-bottom: var(--s6);
  transition: color var(--duration-base);
}
.ae-drawer__close:hover { color: var(--amethyst); }

.ae-drawer__nav {
  display: flex;
  flex-direction: column;
}
.ae-drawer__nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--graphite);
  padding-block: 0.9rem;
  border-bottom: 1px solid oklch(from var(--graphite) l c h / 8%);
  transition: color var(--duration-base), padding-left var(--duration-base);
}
.ae-drawer__nav a:last-child { border-bottom: none; }
.ae-drawer__nav a:hover { color: var(--amethyst); padding-left: 0.5rem; }

.ae-drawer__footer {
  margin-top: auto;
  padding-top: var(--s6);
}

.ae-drawer__overlay {
  position: fixed;
  inset: 0;
  background: oklch(0% 0 0 / 40%);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-in-out);
}
.ae-drawer__overlay.is-open { opacity: 1; pointer-events: auto; }

.ae-btn--ghost {
  display: inline-flex;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--amethyst);
  color: var(--amethyst);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background var(--duration-base), color var(--duration-base);
}
.ae-btn--ghost:hover { background: var(--amethyst); color: var(--ivory); }


/* ──────────────────────────────────────────
   8. SECCIONES BASE
   ────────────────────────────────────────── */
.ae-section {
  padding-block: var(--s28);
  border-top: 1px solid oklch(from var(--graphite) l c h / 8%);
}
@media (min-width: 48rem) { .ae-section { padding-block: var(--s40); } }

.ae-section--soft     { background: var(--lilac-soft); }
.ae-section--contacto { background: var(--ivory); }

.ae-section-head {
  margin-bottom: var(--s16);
  row-gap: var(--s8);
  align-items: start;
}

.ae-col-desc {
  padding-top: 3rem;
  color: oklch(from var(--graphite) l c h / 70%);
  line-height: 1.7;
}


/* ──────────────────────────────────────────
   9. REVEAL ANIMATIONS
   ────────────────────────────────────────── */
.ae-reveal { opacity: 0; transform: translateY(28px); }
.ae-reveal.is-visible { animation: ae-reveal 1.1s var(--ease-reveal) forwards; }
@keyframes ae-reveal { to { opacity: 1; transform: translateY(0); } }
.ae-delay-1 { animation-delay: 0.15s; }
.ae-delay-2 { animation-delay: 0.30s; }
.ae-delay-3 { animation-delay: 0.50s; }
.ae-delay-4 { animation-delay: 0.70s; }


/* ──────────────────────────────────────────
   10. HERO
   ────────────────────────────────────────── */
.ae-hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: var(--ivory);
  color: var(--graphite);
}

.ae-hero__slider { position: absolute; inset: 0; }

.ae-slider-fade {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity, transform;
  animation: 24s var(--ease-in-out) infinite ae-slider-fade;
}
@keyframes ae-slider-fade {
  0%   { opacity: 0; transform: scale(1.02); }
  8%   { opacity: 1; transform: scale(1.04); }
  30%  { opacity: 1; transform: scale(1.07); }
  40%  { opacity: 0; transform: scale(1.09); }
  100% { opacity: 0; transform: scale(1.02); }
}

.ae-hero__img { width: 100%; height: 100%; object-fit: cover; }

.ae-hero__overlay-h {
  position: absolute; inset: 0;
  background: linear-gradient(to right, oklch(100% 0 0 / 88%) 0%, oklch(100% 0 0 / 66%) 50%, oklch(100% 0 0 / 24%) 100%);
}
.ae-hero__overlay-v {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, oklch(100% 0 0 / 34%) 0%, transparent 50%, oklch(100% 0 0 / 54%) 100%);
}

.ae-hero__content {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
  padding: calc(var(--s32) + 3rem) var(--gutter-x) var(--s16);
  align-content: center;
}

.ae-hero__col {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s10);
}
@media (min-width: 48rem) { .ae-hero__col { grid-column: 2 / span 5; } }

.ae-hero__title { font-size: clamp(3.5rem, 8vw, 9rem); color: var(--graphite); }

.ae-hero__body {
  max-width: 28rem;
  margin-top: var(--s8);
  font-size: 1rem;
  line-height: 1.7;
  color: oklch(from var(--graphite) l c h / 72%);
}
@media (min-width: 48rem) { .ae-hero__body { font-size: 1.125rem; } }

.ae-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--s8);
  align-items: flex-start;
}

.ae-hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: var(--s12);
}

.ae-scroll-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: oklch(from var(--graphite) l c h / 55%);
}
.ae-scroll-indicator__bar {
  display: block;
  width: 1px;
  height: 2rem;
  background: oklch(from var(--graphite) l c h / 25%);
  position: relative;
  overflow: hidden;
}
.ae-scroll-dot {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 0.5rem;
  background: var(--amethyst);
  animation: ae-scrolldot 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes ae-scrolldot {
  0%   { opacity: 0; transform: translateY(0); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(28px); }
}

.ae-hero__year {
  display: none;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: oklch(from var(--graphite) l c h / 45%);
}
@media (min-width: 48rem) { .ae-hero__year { display: block; } }


/* ──────────────────────────────────────────
   11. MARQUEE
   ────────────────────────────────────────── */
.ae-marquee-wrap {
  border-block: 1px solid oklch(from var(--graphite) l c h / 12%);
  padding-block: var(--s6);
  overflow: hidden;
  background: var(--ivory);
}
.ae-marquee {
  display: flex;
  gap: 4rem;
  width: max-content;
  white-space: nowrap;
  animation: ae-marquee 38s linear infinite;
}
@keyframes ae-marquee { to { transform: translateX(-50%); } }

.ae-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-style: italic;
  font-weight: 300;
  color: oklch(from var(--graphite) l c h / 80%);
}
.ae-marquee__dot { font-style: normal; font-size: 1rem; color: var(--amethyst); }


/* ──────────────────────────────────────────
   12. VALOR
   ────────────────────────────────────────── */
.ae-section--valor .ae-container { row-gap: var(--s16); }
.ae-section--valor .ae-col-5 { display: flex; flex-direction: column; gap: var(--s6); }

.ae-valor__grid {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 40rem) { .ae-valor__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 48rem) { .ae-valor__grid { grid-column: 7 / span 6; } }

.ae-valor__item { border-top: 1px solid oklch(from var(--graphite) l c h / 15%); padding-top: var(--s6); }
.ae-valor__item-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: var(--s3); }
.ae-valor__num { font-family: var(--font-serif); font-style: italic; color: var(--amethyst); font-size: 1.5rem; }
.ae-valor__title { font-family: var(--font-serif); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 400; line-height: 1.25; margin-bottom: var(--s3); }
.ae-valor__text { font-size: 0.9rem; font-weight: 400; line-height: 1.7; color: oklch(from var(--graphite) l c h / 70%); }


/* ──────────────────────────────────────────
   13. COLECCIÓN
   ────────────────────────────────────────── */
.ae-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 48rem) { .ae-collection-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.ae-product { cursor: pointer; }

.ae-img-hover { overflow: hidden; }
.ae-img-hover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.ae-img-hover:hover img { transform: scale(1.04); }

.ae-product__img-wrap { aspect-ratio: 4/5; position: relative; background: var(--lilac-soft); }

.ae-product__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid oklch(from var(--graphite) l c h / 15%);
  padding-top: 0.75rem;
  margin-top: 1rem;
}

.ae-product__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-block: var(--s2);
}

.ae-product__mat {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  color: oklch(from var(--graphite) l c h / 55%);
}

.ae-product__cod {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--amethyst);
  flex-shrink: 0;
}


/* ──────────────────────────────────────────
   14. PIEZAS ÚNICAS
   ────────────────────────────────────────── */
.ae-unicas__intro {
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 400;
  color: oklch(from var(--graphite) l c h / 85%);
  color: oklch(from var(--graphite) l c h / 72%);
  margin-top: var(--s8);
}

@media (min-width: 48rem) {
  .ae-unicas__intro {
    font-size: 1rem;
  }
}

.ae-unicas-grid { row-gap: var(--s16); align-items: start; }

.ae-unica--lg { grid-column: span 12; }
.ae-unica--md { grid-column: span 12; }
.ae-unica--sm { grid-column: span 12; }

@media (min-width: 40rem) { .ae-unica--sm { grid-column: span 6; } }

@media (min-width: 48rem) {
  .ae-unica--lg { grid-column: span 6; }
  .ae-unica--md { grid-column: span 6; }
  .ae-unica--sm { grid-column: span 4; }
}

.ae-unica--lg .ae-unica__img-wrap { aspect-ratio: 5/6; }
.ae-unica--md .ae-unica__img-wrap { aspect-ratio: 5/6; }
.ae-unica--sm .ae-unica__img-wrap { aspect-ratio: 4/5; }
.ae-unica__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.ae-unica__meta { margin-top: var(--s6); border-top: 1px solid oklch(from var(--graphite) l c h / 15%); padding-top: var(--s4); display: flex; flex-direction: column; gap: var(--s2); }
.ae-unica__nombre {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.1;
  margin-block: var(--s2);
}


/* ──────────────────────────────────────────
   15. PROCESO
   ────────────────────────────────────────── */
.ae-proceso-layout { row-gap: var(--s20); align-items: start; }

.ae-proceso__left {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: var(--s10);
}

@media (min-width: 48rem) {
  .ae-proceso__left {
    grid-column: span 6;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: var(--s8);
    position: static;
  }
}

.ae-proceso__left > div:first-child {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

@media (min-width: 48rem) {
  .ae-proceso__left > div:first-child {
    grid-column: 1 / -1;
  }
}

.ae-proceso__right {
  grid-column: span 12;
  padding-top: 0;
}

@media (min-width: 48rem) {
  .ae-proceso__right {
    grid-column: 8 / span 5;
    padding-top: clamp(6.5rem, 9vw, 8.5rem);
  }
}

.ae-proceso__img {
  aspect-ratio: 4/5.55;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 48rem) {
  .ae-proceso__img {
    max-width: none;
  }

  .ae-proceso__img:not(.ae-proceso__img--offset) {
    grid-column: 1 / span 1;
  }

  .ae-proceso__img--offset {
    grid-column: 2 / span 1;
    margin-left: 0;
  }
}

.ae-proceso__img img { width: 100%; height: 100%; object-fit: cover; }

.ae-proceso__list { list-style: none; display: flex; flex-direction: column; margin-top: 0; }

.ae-paso {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  border-top: 1px solid oklch(from var(--graphite) l c h / 15%);
  padding-block: var(--s8);
}

.ae-paso__num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--amethyst);
  font-size: 1.875rem;
  line-height: 1;
  align-self: start;
  padding-top: 4px;
}

.ae-paso__titulo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: var(--s3);
}

.ae-paso__texto {
  font-weight: 400;
  line-height: 1.7;
  color: oklch(from var(--graphite) l c h / 72%);
}


/* ──────────────────────────────────────────
   16. ENCARGOS
   ────────────────────────────────────────── */
.ae-encargos-layout { row-gap: var(--s14, 3.5rem); align-items: start; }

.ae-encargos__img-col { grid-column: span 12; }
.ae-encargos__copy    { grid-column: span 12; display: flex; flex-direction: column; gap: var(--s6); }

@media (min-width: 48rem) {
  .ae-encargos__img-col { grid-column: 7 / span 6; order: 2; }
  .ae-encargos__copy    { grid-column: span 5; order: 1; padding-top: var(--s8); }
}

.ae-encargos__img { aspect-ratio: 4/4.6; overflow: hidden; }
.ae-encargos__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.ae-encargos__caption { margin-top: var(--s4); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: oklch(from var(--graphite) l c h / 50%); }

.ae-encargos__list { list-style: none; display: flex; flex-direction: column; gap: var(--s4); }
.ae-encargo-paso { display: flex; gap: 1rem; align-items: baseline; }
.ae-encargo-paso__num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--amethyst);
  font-size: 1.45rem;
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}
.ae-encargo-paso__texto { font-size: 0.9375rem; font-weight: 400; line-height: 1.7; color: oklch(from var(--graphite) l c h / 78%); }


/* ──────────────────────────────────────────
   17. TESTIMONIOS
   ────────────────────────────────────────── */
.ae-testimonios-grid {
  row-gap: var(--s16);
}

.ae-testimonios-slider {
  display: flex;
  flex-direction: column;
  gap: var(--s10);
  outline: none;
}

.ae-testimonios-viewport {
  overflow: hidden;
  width: 100%;
}

.ae-testimonios-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s var(--ease-out-expo);
  will-change: transform;
}

.ae-testimonio {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  margin: 0;
}

.ae-testimonio__bar {
  width: 2.5rem;
  height: 1px;
  background: var(--amethyst);
  margin-block: var(--s6);
}

.ae-testimonio__quote {
  position: relative;
  padding-left: 2.75rem;
  max-width: 44rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  line-height: 1.5;
  color: var(--graphite);
}

.ae-testimonio__quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -0.35rem;
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--amethyst);
  opacity: 0.9;
}

.ae-testimonio__cap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid oklch(from var(--graphite) l c h / 15%);
  padding-top: var(--s4);
  margin-top: var(--s8);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.ae-testimonio__city {
  color: oklch(from var(--graphite) l c h / 55%);
}

.ae-testimonios-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.ae-testimonios-counter {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: oklch(from var(--graphite) l c h / 55%);
}

.ae-testimonios-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid oklch(from var(--graphite) l c h / 15%);
  border-radius: 999px;
  background: transparent;
  color: var(--graphite);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-base), color var(--duration-base), border-color var(--duration-base);
  line-height: 1;
  padding-bottom: 2px;
}

.ae-testimonios-btn:hover {
  background: var(--amethyst);
  color: var(--ivory);
  border-color: var(--amethyst);
}

@media (max-width: 47.9375rem) {
  .ae-testimonios-slider {
    gap: var(--s8);
  }

  .ae-testimonio__quote {
    padding-left: 2rem;
    font-size: 1.15rem;
  }

  .ae-testimonio__quote::before {
    font-size: 3.5rem;
    top: -0.25rem;
  }

  .ae-testimonios-controls {
    justify-content: flex-start;
  }

  .ae-testimonio__cap {
    gap: 1rem;
  }
}

#testimonios { 
  position: relative;
  overflow: hidden;
}

#testimonios::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 28%, oklch(50% 0.18 300 / 0.10) 0%, transparent 34%),
    radial-gradient(circle at 88% 78%, oklch(67% 0.13 300 / 0.08) 0%, transparent 28%);
  pointer-events: none;
  z-index: 0;
}

#testimonios::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  background-image: url("../images/hero-amatista-2.jpg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  opacity: 0.12;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 62%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 62%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

#testimonios .ae-container,
#testimonios .ae-section-head,
#testimonios .ae-testimonios-slider {
  position: relative;
  z-index: 1;
}

@media (max-width: 47.9375rem) {
  #testimonios::before,
  #testimonios::after {
    display: none;
  }
}


/* ──────────────────────────────────────────
   18. CTA PERMANENCIA
   ────────────────────────────────────────── */
.ae-cta { text-align: center; }

.ae-cta__inner { max-width: 56rem; margin-inline: auto; }

.ae-cta__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--graphite);
  margin-top: var(--s10);
}
.ae-cta__headline em { font-style: italic; color: var(--amethyst); }

.ae-cta__bar { margin-inline: auto; margin-block: var(--s12); width: 3rem; height: 1px; background: var(--amethyst); }

.ae-cta__body {
  max-width: 36rem;
  margin-inline: auto;
  font-weight: 400;
  line-height: 1.7;
  color: oklch(from var(--graphite) l c h / 70%);
}


/* ──────────────────────────────────────────
   19. CONTACTO
   ────────────────────────────────────────── */
.ae-contacto-layout { row-gap: var(--s16); align-items: start; }

.ae-contacto__info {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.ae-contacto__form-col { grid-column: span 12; }
.ae-contacto__datos {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  margin-top: var(--s8);
}

@media (min-width: 48rem) {
  .ae-contacto__info {
    grid-column: 1 / span 5;
    grid-row: 1;
  }

  .ae-contacto__form-col {
    grid-column: 7 / span 6;
    grid-row: 1 / span 2;
    padding-top: var(--s16);
  }

  .ae-contacto__datos {
    grid-column: 1 / span 5;
    grid-row: 2;
    margin-top: var(--s8);
  }
}

.ae-contacto__fila {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.875rem;
  border-top: 1px solid oklch(from var(--graphite) l c h / 12%);
}

.ae-contacto__fila dt {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amethyst);
  border-radius: 50%;
  color: var(--ivory);
}
.ae-contacto__fila dt svg { stroke: var(--ivory); width: 15px; height: 15px; }

.ae-contacto__fila dd { font-size: 0.9rem; font-weight: 400; color: var(--graphite); }
.ae-contacto__fila dd a { color: var(--graphite); text-decoration: none; transition: color 0.3s; }
.ae-contacto__fila dd a:hover { color: var(--amethyst); }


/* ──────────────────────────────────────────
   20. FORMULARIO
   ────────────────────────────────────────── */
.ae-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s8) var(--s6);
  padding: clamp(1.5rem, 2vw, 2.5rem);
  background: linear-gradient(180deg, var(--ivory) 0%, oklch(from var(--ivory) l c h / 94%) 100%);
  border: 1px solid oklch(from var(--graphite) l c h / 8%);
  box-shadow: 0 18px 45px rgba(44, 36, 58, 0.08);
  border-radius: 2px;
}

.ae-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.ae-form__group:nth-child(1),
.ae-form__group:nth-child(2),
.ae-form__group:nth-child(3),
.ae-form__group:nth-child(4),
.ae-form__actions,
.ae-form__success {
  grid-column: 1 / -1;
}

.ae-form__group:nth-child(1),
.ae-form__group:nth-child(2) {
  grid-column: span 1;
}

.ae-form__group:nth-child(3),
.ae-form__group:nth-child(4) {
  grid-column: 1 / -1;
}

.ae-form .ae-eyebrow {
  color: var(--amethyst);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
}

.ae-form__input,
.ae-form__textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid oklch(from var(--graphite) l c h / 18%);
  padding: 0.95rem 0 0.8rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--graphite);
  transition: border-color var(--duration-base), color var(--duration-base), background-color var(--duration-base);
  outline: none;
  border-radius: 0;
  box-shadow: none;
}

.ae-form__input:hover,
.ae-form__textarea:hover {
  border-bottom-color: oklch(from var(--graphite) l c h / 30%);
}

.ae-form__input:focus,
.ae-form__textarea:focus {
  border-bottom-color: var(--amethyst);
}

.ae-form__textarea {
  resize: none;
  min-height: 9.5rem;
  line-height: 1.6;
}

.ae-form__textarea--short {
  min-height: 4rem;
  max-height: 4rem;
  resize: none;
  overflow-y: auto;
  line-height: 1.6;
}

.ae-form__char-count {
  display: block;
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: oklch(from var(--graphite) l c h / 35%);
  margin-top: 0.35rem;
  transition: color var(--duration-base);
}
.ae-form__char-count.is-near { color: var(--amethyst); }

.ae-form__input::placeholder,
.ae-form__textarea::placeholder {
  color: oklch(from var(--graphite) l c h / 36%);
}

.ae-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1rem;
  padding-top: var(--s2);
}

.ae-form__submit {
  min-width: 13rem;
}

.ae-form__actions .ae-btn-cta {
  box-shadow: none;
}

.ae-form__actions .ae-btn-cta--ghost {
  background: transparent;
  border-color: var(--amethyst);
}

.ae-form__actions .ae-form__submit:hover {
  color: var(--amethyst);
  background: transparent;
}

.ae-form__actions .ae-form__submit:hover .ae-form__arrow {
  color: var(--amethyst);
}

.ae-form__success {
  color: var(--amethyst);
  font-size: 0.875rem;
  font-weight: 500;
  padding-top: var(--s1);
}

@media (max-width: 47.999rem) {
  .ae-form {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
    gap: var(--s8);
  }

  .ae-form__group {
    gap: var(--s4);
  }

  .ae-form__group:nth-child(1),
  .ae-form__group:nth-child(2),
  .ae-form__group:nth-child(3),
  .ae-form__group:nth-child(4),
  .ae-form__actions,
  .ae-form__success {
    grid-column: 1 / -1;
  }

  .ae-form__submit {
    width: 100%;
    min-width: 0;
  }

  .ae-form__actions .ae-btn-cta {
    width: 100%;
    justify-content: center;
  }
}


/* ──────────────────────────────────────────
   21. FOOTER
   ────────────────────────────────────────── */
.ae-footer {
  background: var(--ivory);
  border-top: 1px solid oklch(from var(--graphite) l c h / 10%);
  padding-block: var(--s16);
}

.ae-footer__inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
  row-gap: var(--s6);
  align-items: end;
}

.ae-footer__brand { grid-column: span 12; display: flex; flex-direction: column; gap: var(--s4); }
@media (min-width: 48rem) { .ae-footer__brand { grid-column: span 6; } }

.ae-footer__tagline { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: oklch(from var(--graphite) l c h / 45%); }

.ae-footer__location,
.ae-footer__copy {
  grid-column: span 6;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: oklch(from var(--graphite) l c h / 70%);
}
@media (min-width: 48rem) {
  .ae-footer__location { grid-column: span 3; }
  .ae-footer__copy     { grid-column: span 3; text-align: right; }
}
.ae-footer__coords,
.ae-footer__rights { color: oklch(from var(--graphite) l c h / 45%); margin-top: 4px; }


/* ──────────────────────────────────────────
   22. BOTONES FLOTANTES
   ────────────────────────────────────────── */
.ae-wa-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.ae-wa-btn__label {
  display: none;
  background: var(--graphite);
  color: var(--ivory);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  opacity: 0;
  transition: opacity var(--duration-base);
}
.ae-wa-btn:hover .ae-wa-btn__label { opacity: 1; }
@media (min-width: 48rem) { .ae-wa-btn__label { display: inline-block; } }

.ae-wa-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--amethyst);
  color: white;
  box-shadow: 0 10px 30px -10px oklch(from var(--amethyst) l c h / 55%);
  transition: transform var(--duration-base);
}
.ae-wa-btn:hover .ae-wa-btn__icon { transform: scale(1.05); }
.ae-wa-btn__icon svg { width: 1.75rem; height: 1.75rem; display: block; }

.ae-top-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 55;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid oklch(from var(--amethyst) l c h / 40%);
  background: oklch(100% 0 0 / 80%);
  backdrop-filter: blur(8px);
  color: var(--amethyst);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(0.75rem);
  pointer-events: none;
  transition: opacity var(--duration-base), transform var(--duration-base), background var(--duration-base), color var(--duration-base);
}
.ae-top-btn.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.ae-top-btn:hover { background: var(--amethyst); color: white; }


/* ──────────────────────────────────────────
   23. MODAL COLECCIÓN
   ────────────────────────────────────────── */
.ae-modal-overlay {
  position: fixed;
  inset: 0;
  background: oklch(0% 0 0 / 55%);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-in-out);
  backdrop-filter: blur(4px);
}
.ae-modal-overlay.is-open { opacity: 1; pointer-events: auto; }

.ae-modal {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo);
}
.ae-modal.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }

.ae-modal__inner {
  background: var(--ivory);
  width: 100%;
  max-width: 56rem;
  max-height: 90svh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 48rem) {
  .ae-modal__inner { grid-template-columns: 1fr 1fr; max-height: 85svh; overflow-y: hidden; }
}

.ae-modal__img-wrap { aspect-ratio: 4/5; overflow: hidden; background: var(--lilac-soft); }
@media (min-width: 48rem) { .ae-modal__img-wrap { aspect-ratio: auto; height: 100%; max-height: 85svh; } }
.ae-modal__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out-expo); }
.ae-modal.is-open .ae-modal__img-wrap img { transform: scale(1.02); }

.ae-modal__body { padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; overflow-y: auto; }
@media (min-width: 48rem) { .ae-modal__body { padding: 3rem 2.5rem; } }

.ae-modal__cod { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--amethyst); }
.ae-modal__name { font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 400; line-height: 1.05; color: var(--graphite); }
.ae-modal__bar { width: 2rem; height: 1px; background: var(--amethyst); }
.ae-modal__mat { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: oklch(from var(--graphite) l c h / 55%); }
.ae-modal__desc { font-size: 0.9375rem; font-weight: 400; line-height: 1.7; color: oklch(from var(--graphite) l c h / 75%); flex: 1; }

.ae-modal__ctas { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.5rem; border-top: 1px solid oklch(from var(--graphite) l c h / 12%); margin-top: auto; }

.ae-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.25rem; height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  border: 1px solid oklch(from var(--graphite) l c h / 15%);
  border-radius: 50%;
  color: var(--graphite);
  font-size: 0.875rem;
  cursor: pointer;
  z-index: 2;
  transition: background var(--duration-base), color var(--duration-base);
}
.ae-modal__close:hover { background: var(--graphite); color: var(--ivory); }


/* ──────────────────────────────────────────
   24. ACCESIBILIDAD Y PRINT
   ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .ae-reveal { opacity: 1 !important; transform: none !important; }
}
@media print {
  .ae-header, .ae-drawer, .ae-wa-btn, .ae-top-btn { display: none !important; }
}


/* ══════════════════════════════════════════════════════════════
   25. RESPONSIVE MOBILE (max-width: 47.9375rem)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 47.9375rem) {

  body, main { overflow-x: hidden; }
  img, video { max-width: 100%; height: auto; }
  * { min-width: 0; }

  /* Secciones */
  .ae-section { padding-block: 3.5rem; }
  .ae-container { padding-inline: 1.25rem; }
  .ae-section-head { margin-bottom: 2rem; row-gap: 0.75rem; }

  /* Grid — 1 columna */
  .ae-grid { grid-template-columns: 1fr; column-gap: 0; row-gap: 1.75rem; }
  .ae-col-4, .ae-col-5, .ae-col-7, .ae-col-8 { grid-column: span 1; }

  /* Hero */
  .ae-hero__content { padding: 6rem 1.25rem 3rem; grid-template-columns: 1fr; }
  .ae-hero__col { gap: 1.5rem; }
  .ae-hero__title { font-size: clamp(3rem, 15vw, 5rem); }
  .ae-hero__body { margin-top: 1rem; font-size: 0.9375rem; }
  .ae-hero__ctas { margin-top: 1.25rem; gap: 0.75rem; }
  .ae-hero__foot { margin-top: 1.5rem; }

  /* Valor */
  .ae-section--valor .ae-col-5 { gap: 0.75rem; }
  .ae-valor__grid { grid-column: span 1; grid-template-columns: 1fr; gap: 1.5rem; }

  /* Colección — 1 columna */
  .ae-collection-grid { grid-template-columns: 1fr; gap: 2rem; }
  #coleccion .ae-col-desc { padding-top: 0; margin-top: 0; }

  /* Piezas únicas */
  .ae-unicas-grid { row-gap: 2rem; }
  .ae-unica--lg, .ae-unica--md, .ae-unica--sm { grid-column: span 1; }
  .ae-unicas__intro { margin-top: 0.75rem; }

  /* Proceso */
  .ae-proceso-layout { row-gap: 2rem; }
  .ae-proceso__left { grid-column: span 1; position: static; gap: 1.25rem; }
  .ae-proceso__right { grid-column: span 1; padding-top: 0; }
  .ae-proceso__img { aspect-ratio: 4/3; max-width: 100%; width: 100%; margin-left: 0 !important; }
  .ae-paso { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
  .ae-paso__titulo { font-size: 1.375rem; }
  .ae-paso__num { font-size: 1.375rem; }

  /* Encargos */
  .ae-encargos-layout { row-gap: 1.75rem; }
  .ae-encargos__img-col { grid-column: span 1; order: 1; }
  .ae-encargos__copy { grid-column: span 1; order: 2; padding-top: 0; gap: 0.75rem; }
  .ae-encargos__list { gap: 0.75rem; }

  /* Testimonios */
  .ae-testimonios-grid { row-gap: 2rem; }
  .ae-testimonio { grid-column: span 1; }
  .ae-testimonio--mid, .ae-testimonio--last { padding-top: 0; }

  /* CTA Permanencia */
  .ae-cta { text-align: left; padding-block: 3rem; padding-inline: 1.25rem; }
  .ae-cta__inner { max-width: 100%; padding-inline: 0; }
  .ae-cta__headline { font-size: clamp(1.75rem, 8vw, 3rem); }
  .ae-cta__bar { margin-inline: 0; }
  .ae-cta__body { margin-inline: 0; text-align: left; }

  /* Contacto */
  .ae-contacto-layout { row-gap: 2rem; }
  .ae-contacto__info { grid-column: span 1; order: 1; }
  .ae-contacto__form-col { grid-column: span 1; order: 2; padding-top: 0; }
  .ae-contacto__datos { grid-column: span 1; order: 3; margin-top: 1.25rem; }

  /* Footer */
  .ae-footer { padding-block: 2.5rem; }
  .ae-footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
  .ae-footer__brand { align-items: center; }
  .ae-footer__brand .ae-logo { justify-content: center; }
  .ae-footer__location, .ae-footer__copy { text-align: center; width: 100%; }

  /* Drawer */
  .ae-drawer { padding: 1.25rem; }

  /* Modal */
  .ae-modal { padding: 0; align-items: flex-end; }
  .ae-modal__inner { grid-template-columns: 1fr; max-height: 92svh; border-radius: 16px 16px 0 0; overflow-y: auto; }
  .ae-modal__img-wrap { aspect-ratio: 4/3; max-height: 45svh; }
  .ae-modal__body { padding: 1.5rem 1.25rem 2rem; }
  .ae-modal__close { top: 0.75rem; right: 0.75rem; }

  /* CTAs */
  .ae-section-ctas { justify-content: flex-start; margin-top: 1.75rem; }
  .ae-section-ctas--right { justify-content: flex-start; }
  .ae-btn-cta { font-size: 0.58rem; padding: 0.55rem 1.25rem; }

  /* Flotantes */
  .ae-wa-btn { bottom: 1.25rem; right: 1.25rem; }
  .ae-top-btn { bottom: 1.25rem; left: 1.25rem; }

  /* Z-index */
  .ae-header { z-index: 50; }
  .ae-drawer { z-index: 200; }
  .ae-drawer__overlay { z-index: 199; }
  .ae-modal { z-index: 101; }
  .ae-modal-overlay { z-index: 100; }

}