/* =========================================
   FC LUXE SPA & BEAUTY — Home Page CSS
   ========================================= */

/* ── HERO ─────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--container-pad);
  padding-top: 100px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: top center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.35) 0%,
    rgba(17, 17, 17, 0.55) 40%,
    rgba(17, 17, 17, 0.65) 60%,
    rgba(17, 17, 17, 0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 90vw;
  text-align: center;
  margin: 0 auto;
  will-change: opacity, transform;
}
.hero__title {
  color: var(--white);
  margin-top: 16px;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.9;
  text-shadow:
    0 4px 24px rgba(0, 0, 0, 0.45),
    0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero__title em {
  font-style: italic;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 20px;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.hero__actions .btn--ghost {
  color: var(--white);
}

.hero__actions .btn--ghost .btn__arrow {
  background: var(--white);
}

.hero__actions .btn--ghost .btn__arrow::after {
  border-color: var(--white);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  right: var(--container-pad);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__scroll-hint span {
  font-family: var(--font-subtitle);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes floatDeco {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(2deg);
  }
  66% {
    transform: translateY(-6px) rotate(-1.5deg);
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ── DRAG SLIDER DE SERVICIOS ────────────── */
.drag-slider {
  background: var(--white);
  padding: clamp(48px, 5vw, 72px) 0 clamp(32px, 4vw, 52px);
  position: relative;
  isolation: isolate;
}

.drag-slider::before {
  content: "";
  position: absolute;
  inset: -60px 0 0 0;
  background-image: url("../rsc/png/decor/130.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.drag-slider__header {
  text-align: center;
  padding: 0 var(--container-pad);
  margin-bottom: clamp(36px, 5vw, 60px);
  position: relative;
  z-index: 1;
}

.drag-slider__eyebrow {
  font-family: var(--font-subtitle);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-mist);
  display: block;
  margin-bottom: 10px;
}

.drag-slider__title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--charcoal);
  line-height: 1.05;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.drag-slider__title em {
  font-style: italic;
  color: var(--pink-mist);
}

.drag-slider__hint {
  margin-top: 14px;
  font-family: var(--font-subtitle);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.drag-slider__hint-icon {
  font-size: 1rem;
  opacity: 0.5;
}

/* Viewport — desborda sin scrollbar */
.drag-slider__viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  padding: 24px 0 40px;
  position: relative;
  z-index: 1;
}

.drag-slider__viewport.is-dragging {
  cursor: grabbing;
}

/* Track — flex con las cards */
.drag-slider__track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  padding: 0 clamp(24px, 5vw, 80px);
  user-select: none;
  will-change: transform;
  width: max-content;
}

/* Card individual */
.drag-slider__card {
  flex-shrink: 0;
  width: clamp(286px, 33.8vw, 416px);
  transform: rotate(var(--card-rotate, 0deg));
  transform-origin: bottom center;
  transition:
    transform 0.4s var(--ease-luxury),
    filter 0.4s var(--ease-luxury);
}

.drag-slider__card:hover {
  transform: rotate(0deg) translateY(-12px);
  z-index: 2;
}

.drag-slider__card-inner {
  display: block;
  text-decoration: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

/* Cuando no se está arrastrando, los links vuelven a ser clickeables */
.drag-slider__viewport:not(.is-dragging) .drag-slider__card-inner {
  pointer-events: auto;
}

.drag-slider__card-img-wrap {
  position: relative;
  width: 100%;
  overflow: visible;
  background: transparent;
}

.drag-slider__card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.07));
  transition:
    filter 0.4s var(--ease-luxury),
    transform 0.4s var(--ease-luxury);
}

.drag-slider__card:hover .drag-slider__card-img {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.14))
    drop-shadow(0 3px 6px rgba(220, 144, 174, 0.18)) saturate(80%);
  transform: scale(1.03);
}

/* Label centrado sobre la imagen */
.drag-slider__card-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: clamp(1.43rem, 2.6vw, 2.08rem);
  color: transparent;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.1;
  opacity: 0;
  transition:
    opacity 0.35s var(--ease-luxury),
    color 0.35s var(--ease-luxury),
    text-shadow 0.35s var(--ease-luxury);
  pointer-events: none;
  padding: 12px;
}

.drag-slider__card:hover .drag-slider__card-label {
  opacity: 1;
  color: #ffffff;
  text-shadow:
    0 0 18px rgba(220, 144, 174, 0.9),
    0 2px 12px rgba(220, 144, 174, 0.6),
    0 4px 24px rgba(220, 144, 174, 0.4);
}

.drag-slider__footer {
  text-align: center;
  padding-top: clamp(32px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

.drag-slider__footer .btn--outline {
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--charcoal);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.08);
  transition:
    background var(--duration-mid) var(--ease-luxury),
    box-shadow var(--duration-mid) var(--ease-luxury),
    transform var(--duration-mid) var(--ease-luxury);
}

.drag-slider__footer .btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.22),
    0 2px 8px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
}

/* ── SOBRE NOSOTROS ───────────────────── */
.about {
  background: var(--white);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  min-height: 100vh;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0 0 -60px 0;
  background-image: url("../rsc/png/decor/130.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.about__marble {
  display: none;
}

/* Grid roto del container: imagen al borde izquierdo del viewport */
.about__grid {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 0;
  align-items: center;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Columna imagen: sin padding, pegada al extremo izquierdo */
.about__images {
  position: relative;
  z-index: 2;
}

.about__img-main {
  line-height: 0;
}

.about__img-main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* Sombra que sigue el contorno del PNG, no el cuadrado */
  filter: drop-shadow(8px 0 24px rgba(0, 0, 0, 0.22))
    drop-shadow(3px 0 8px rgba(0, 0, 0, 0.14));
}

/* Columna texto: padding propio para contenido */
.about__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
  position: relative;
  z-index: 1;
}

.about__text h2 {
  margin-top: 12px;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.09),
    0 1px 3px rgba(0, 0, 0, 0.06);
}

.about__text h2 em {
  font-style: italic;
}

/* ── GALERÍA STICKY ───────────────────────── */
.gallery {
  background: transparent;
  padding: 0;
  /* La sección ocupa suficiente alto para que el pin se active */
  min-height: 250vh;
}

.gallery__sticky-wrap {
  /* El pin de GSAP posiciona este elemento */
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 4vw, 52px);
  padding: clamp(48px, 6vw, 80px) var(--container-pad);
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Textura de fondo sutil sobre el charcoal */
.gallery__sticky-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../rsc/png/decor/130.png");
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Header centrado */
.gallery__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.gallery__eyebrow {
  color: var(--soft-fawn);
}

.gallery__header h2 {
  color: var(--white);
}

.gallery__header h2 em {
  font-style: italic;
}

.gallery__sub {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin-top: 4px;
  line-height: 1.65;
}

/* Los 3 slots de imagen equidistantes */
.gallery__trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.gallery__slot {
  position: relative;
  /* Marco rosa */
  border-radius: 20px;
  padding: 5px;
  background: linear-gradient(
    135deg,
    rgba(237, 92, 155, 0.55) 0%,
    rgba(247, 185, 215, 0.3) 50%,
    rgba(219, 172, 96, 0.35) 100%
  );
  box-shadow:
    0 0 0 1px rgba(237, 92, 155, 0.2),
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery__slot-inner {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}

.gallery__slot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 16px;
  /* Las imágenes empiezan ocultas; JS las activa */
  opacity: 0;
  transition: none; /* GSAP maneja el fade */
}

/* Footer CTA centrado */
.gallery__footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.gallery__cta {
  color: rgba(255, 255, 255, 0.75) !important;
  border-color: rgba(255, 255, 255, 0.25);
}

.gallery__cta .btn__arrow {
  background: rgba(255, 255, 255, 0.75) !important;
}

.gallery__cta .btn__arrow::after {
  border-color: rgba(255, 255, 255, 0.75) !important;
}

.gallery__cta:hover {
  color: var(--white) !important;
}

/* ── RESPONSIVE GALERÍA ───────────────────── */
@media (max-width: 1024px) {
  .gallery__trio {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .gallery {
    min-height: 200vh;
  }

  .gallery__trio {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .gallery__slot-inner {
    aspect-ratio: 4 / 3;
  }
}

/* ── TESTIMONIOS ──────────────────────── */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding) 0;
  background: linear-gradient(
    160deg,
    #fce4ef 0%,
    #fdf0f6 30%,
    #fdf7fa 60%,
    #ffffff 100%
  );
}

/* Destellos dorados */
.t-spark {
  position: absolute;
  color: var(--soft-fawn);
  font-style: normal;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(219, 172, 96, 0.9));
  animation: sparkPulse 3s ease-in-out infinite;
}

.t-spark[data-size="sm"] {
  font-size: 1.1rem;
  animation-duration: 2.6s;
}
.t-spark[data-size="md"] {
  font-size: 1.7rem;
  animation-duration: 3.2s;
}
.t-spark[data-size="lg"] {
  font-size: 2.4rem;
  animation-duration: 3.8s;
}

/* Offset de animación para que no parpadeen todos a la vez */
.t-spark:nth-child(2) {
  animation-delay: 0.3s;
}
.t-spark:nth-child(3) {
  animation-delay: 0.7s;
}
.t-spark:nth-child(4) {
  animation-delay: 1.1s;
}
.t-spark:nth-child(5) {
  animation-delay: 0.5s;
}
.t-spark:nth-child(6) {
  animation-delay: 1.4s;
}
.t-spark:nth-child(7) {
  animation-delay: 0.2s;
}
.t-spark:nth-child(8) {
  animation-delay: 0.9s;
}
.t-spark:nth-child(9) {
  animation-delay: 1.7s;
}
.t-spark:nth-child(10) {
  animation-delay: 0.4s;
}
.t-spark:nth-child(11) {
  animation-delay: 1.2s;
}
.t-spark:nth-child(12) {
  animation-delay: 2s;
}
.t-spark:nth-child(13) {
  animation-delay: 0.6s;
}
.t-spark:nth-child(14) {
  animation-delay: 1.5s;
}
.t-spark:nth-child(15) {
  animation-delay: 0.1s;
}
.t-spark:nth-child(16) {
  animation-delay: 1.9s;
}
.t-spark:nth-child(17) {
  animation-delay: 0.8s;
}
.t-spark:nth-child(18) {
  animation-delay: 1.3s;
}
.t-spark:nth-child(19) {
  animation-delay: 2.2s;
}
.t-spark:nth-child(20) {
  animation-delay: 0.55s;
}
.t-spark:nth-child(21) {
  animation-delay: 1.65s;
}
.t-spark:nth-child(22) {
  animation-delay: 0.35s;
}
.t-spark:nth-child(23) {
  animation-delay: 2.4s;
}

@keyframes sparkPulse {
  0% {
    opacity: 0;
    transform: scale(0.7) rotate(0deg);
  }
  40% {
    opacity: 1;
    transform: scale(1.1) rotate(15deg);
  }
  60% {
    opacity: 0.85;
    transform: scale(1) rotate(10deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.7) rotate(0deg);
  }
}

.testimonials__header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.testimonials__header h2 em {
  font-style: italic;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* ── LIQUID GLASS CARD ── */
.testimonial-card {
  position: relative;
  border-radius: 28px;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  isolation: isolate;

  /* Cuerpo del vidrio: muy transparente, fuertemente borroso */
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(28px) saturate(180%) brightness(1.08);
  -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(1.08);

  /* Sombra exterior: difusa rosa + acento dorado + profundidad */
  box-shadow:
    0 2px 0 0 rgba(255, 255, 255, 0.85),
    /* rim superior brillante */ 0 24px 48px rgba(237, 92, 155, 0.18),
    /* halo rosa suave */ 0 8px 20px rgba(219, 172, 96, 0.1),
    /* acento dorado */ 0 1px 3px rgba(146, 25, 71, 0.12),
    /* sombra base */ inset 0 1.5px 0 rgba(255, 255, 255, 0.9),
    /* highlight top inside */ inset 0 -1px 0 rgba(255, 255, 255, 0.3); /* reflejo base inside */

  /* Borde degradado tipo espejo */
  border: 1.5px solid transparent;
  background-clip: padding-box;

  transition:
    transform var(--duration-mid) var(--ease-luxury),
    box-shadow var(--duration-mid) var(--ease-luxury),
    backdrop-filter 0.3s ease;
}

/* Borde con gradiente rosa-blanco-rosa — simula el borde del vidrio */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(237, 92, 155, 0.5) 25%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(219, 172, 96, 0.45) 75%,
    rgba(255, 255, 255, 0.8) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/* Specular highlight: franja de luz que baja desde arriba-izquierda */
.testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52%;
  border-radius: 28px 28px 60% 60% / 28px 28px 40% 40%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.1) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.015);
  backdrop-filter: blur(36px) saturate(200%) brightness(1.12);
  -webkit-backdrop-filter: blur(36px) saturate(200%) brightness(1.12);
  box-shadow:
    0 2px 0 0 rgba(255, 255, 255, 0.95),
    0 32px 64px rgba(237, 92, 155, 0.26),
    0 12px 28px rgba(219, 172, 96, 0.18),
    0 2px 6px rgba(146, 25, 71, 0.14),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.4);
}

/* Contenido por encima de los pseudo-elementos */
.testimonial-card > * {
  position: relative;
  z-index: 2;
}

.testimonial-card__stars {
  font-size: 1.9rem;
  color: var(--soft-fawn);
  letter-spacing: 4px;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(219, 172, 96, 0.85))
    drop-shadow(0 0 2px rgba(219, 172, 96, 0.5));
}

.testimonial-card blockquote p {
  font-size: 1.06rem;
  line-height: 1.9;
  color: #4a1a2e;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 18px;
  /* Línea separadora con gradiente */
  border-top: 1px solid;
  border-image: linear-gradient(
      90deg,
      rgba(237, 92, 155, 0),
      rgba(237, 92, 155, 0.4),
      rgba(219, 172, 96, 0.35),
      rgba(237, 92, 155, 0)
    )
    1;
  margin-top: auto;
}

.testimonial-card__name {
  font-family: var(--font-subtitle);
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  color: var(--charcoal);
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
}

.testimonial-card__service {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--white);
  /* Badge también con micro-glass */
  background: rgba(237, 92, 155, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  width: fit-content;
  box-shadow: 0 2px 8px rgba(237, 92, 155, 0.25);
}

/* ── CTA FINAL ────────────────────────── */
.cta-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--charcoal);
}

.cta-section__bg {
  position: absolute;
  inset: 0;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: var(--mid-gray);
}

/* Layout 3 columnas */
.cta-section__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  height: 100%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* Columnas de modelos */
.cta-section__model {
  display: flex;
  align-items: flex-end;
  height: 100%;
  overflow: hidden;
}

.cta-section__model img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 0 40px rgba(219, 172, 96, 0.15));
}

.cta-section__model--left {
  justify-content: flex-start;
  align-items: flex-end;
  padding-bottom: 0;
}

.cta-section__model--left img {
  transform-origin: bottom left;
  object-position: bottom left;
  vertical-align: bottom;
  margin-bottom: 0;
  align-self: flex-end;
}

.cta-section__model--right {
  justify-content: flex-end;
}

.cta-section__model--right img {
  transform-origin: bottom right;
}

/* Contenido central */
.cta-section__content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(24px, 4vw, 64px);
  padding-bottom: 80px;
  z-index: 2;
}

.cta-section__content h2 {
  color: var(--white);
}

.cta-section__content h2 em {
  font-style: italic;
}

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 1024px) {
  .drag-slider__card {
    width: clamp(234px, 46.8vw, 338px);
  }

  .about__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about__images {
    height: 55vw;
    min-height: 320px;
  }

  .about__text {
    padding: clamp(48px, 6vw, 72px) var(--container-pad);
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  /* CTA: ocultar modelos en tablet, contenido ocupa todo */
  .cta-section__layout {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
  }

  .cta-section__model {
    display: none;
  }

  .cta-section__content {
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .drag-slider__card {
    width: clamp(208px, 78vw, 286px);
  }

  .drag-slider__card {
    transform: rotate(
      var(--card-rotate, 0deg)
    ); /* sin perspectiva 3D en mobile */
  }

  .drag-slider__card:hover {
    transform: rotate(var(--card-rotate, 0deg)) translateY(-6px);
  }

  .about__images {
    height: 72vw;
    min-height: 260px;
  }

  .gallery__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section__deco {
    display: none;
  }
}
