/* ─────────────────────────────────────────────────────────────────────────
 * Peach Studio · Landing styles V2
 * Identidad: Playfair Display + Montserrat Light · blanco sobre foto · acentos durazno
 * ───────────────────────────────────────────────────────────────────────── */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #fafaf7;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; font-weight: 400; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Tipografías y elementos comunes */
.section-title, h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
}
.section-title { font-size: clamp(40px, 5vw, 72px); margin-bottom: 32px; }
.section-lede { font-size: 18px; max-width: 640px; margin-bottom: 80px; color: #555; line-height: 1.6; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 40px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  /* Logo blanco original (Vanilla Right) sobre hero oscuro */
  filter: brightness(0) invert(1);
  transition: filter 0.3s, height 0.3s;
}
.nav.scrolled .nav-logo-img {
  filter: none;
  height: 40px;
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: white;
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s, opacity 0.2s;
}
.nav.scrolled .nav-links a { color: #1a1a1a; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  color: white;
  padding: 12px 20px 12px 24px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  transition: transform 0.2s, background 0.2s;
}
.nav.scrolled .nav-cta { background: #1a1a1a; color: white; }
.nav-cta:hover { transform: translateY(-2px); }
.nav-cta svg { transition: transform 0.2s; }
.nav-cta:hover svg { transform: translateX(2px); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav { padding: 16px 24px; }
}

/* ── HERO ── */
/* HERO · full-bleed cinematográfico */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: flex-end;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlideshow 18s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
@keyframes heroSlideshow {
  0%, 28% { opacity: 1; transform: scale(1); }
  33%, 95% { opacity: 0; }
  100% { opacity: 0; transform: scale(1.04); }
}

/* Vignette direccional: oscuro abajo-izquierda · transparente arriba-derecha
   → el texto se lee y la imagen se ve limpia en el resto del frame */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.45) 35%,
      rgba(0,0,0,0.1) 65%,
      rgba(0,0,0,0) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px 80px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: white;
  text-shadow: 0 3px 18px rgba(0,0,0,0.5);
}
/* Frase 1 · más grande · una sola línea en desktop */
.hero-title-frase {
  display: block;
  font-size: clamp(30px, 4.6vw, 76px);
  line-height: 1.05;
  margin-bottom: 14px;
  font-weight: 400;
  white-space: nowrap;
}
/* "En 48 horas." · grande pero proporcional · italic */
.hero-title-promesa {
  display: block;
  font-size: clamp(44px, 6vw, 104px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-title-promesa em {
  font-style: italic;
  font-weight: 400;
}

/* Mobile · permitir que la frase 1 se quiebre si no entra */
@media (max-width: 640px) {
  .hero-title-frase {
    white-space: normal;
    font-size: clamp(24px, 6.5vw, 44px);
  }
  .hero-title-promesa {
    font-size: clamp(40px, 11vw, 76px);
  }
}
.hero-subtitle {
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 44px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-block;
  background: white;
  color: #1a1a1a;
  padding: 20px 40px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.hero-microcopy {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin: 0;
}

/* Mobile · todo se compacta hacia abajo */
@media (max-width: 768px) {
  .hero {
    min-height: 640px;
  }
  .hero-content {
    padding: 0 28px 48px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Nav · revierte a comportamiento original (blanco sobre hero, oscuro al scrollear) */
.nav-logo-img {
  filter: brightness(0) invert(1);
}
.nav.scrolled .nav-logo-img {
  filter: none;
}
.nav-links a {
  color: white;
}
.nav.scrolled .nav-links a { color: #1a1a1a; }
.nav-cta {
  background: rgba(0,0,0,0.55);
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}
.nav.scrolled .nav-cta {
  background: #1a1a1a;
  border-color: transparent;
}

/* ── PROCESO ── */
.proceso {
  padding: 140px 0;
  background: #fafaf7;
}
.proceso-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px 32px;
  counter-reset: step;
  border-top: 1px solid #ddd;
  padding-top: 64px;
}
.proceso-steps li {
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 80px;
  color: #d8b8a0;
  display: block;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1;
}
.proceso-steps h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}
.proceso-steps p { color: #555; font-size: 15px; line-height: 1.6; }

/* ── TESTIMONIOS ── */
.testimonios {
  padding: 80px 0 60px;
  background: var(--color-vanilla, #f5efe6);
  color: var(--color-charcoal, #2a2a2a);
}
.testimonios-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0 0 32px;
  text-align: center;
}
.testimonios-rating {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-left: 8px;
}
.testimonios-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.testimonio-card {
  background: #fff;
  padding: 20px 18px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonio-stars {
  color: #e8a33d;
  font-size: 13px;
  letter-spacing: 2px;
}
.testimonio-text {
  font-size: 13px;
  line-height: 1.5;
  color: #444;
  margin: 0;
}
.testimonio-author {
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #999;
  margin: 0;
  margin-top: auto;
}
.testimonios-link {
  text-align: center;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.testimonios-link a {
  color: var(--color-charcoal, #2a2a2a);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.testimonios-link a:hover { opacity: 0.7; }
@media (max-width: 900px) {
  .testimonios-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .testimonios-row { grid-template-columns: 1fr; }
}

/* ── PRODUCTOS ── */
.productos {
  padding: 140px 0;
  background: #1a1a1a;
  color: white;
}
.productos .section-eyebrow { color: #aaa; }
.productos .section-lede { color: #bbb; }
.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.producto-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Estado seleccionado/activo · gradiente negro → durazno · premium */
.producto-card:hover,
.producto-card:focus,
.producto-card:focus-visible {
  transform: translateY(-8px);
  background:
    linear-gradient(135deg,
      #0e0e0e 0%,
      #1f1814 40%,
      #4a3424 70%,
      #b8927a 100%);
  border-color: rgba(216, 184, 160, 0.6);
  color: white;
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.45),
    0 12px 24px rgba(184, 146, 122, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  outline: none;
}
.producto-card:hover .card-tag,
.producto-card:focus .card-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(216, 184, 160, 0.5);
  color: #e8d4be;
}
.producto-card:hover h3,
.producto-card:focus h3 {
  color: white;
}
.producto-card:hover h3 em,
.producto-card:focus h3 em {
  color: #e8d4be; /* italic "Pia" en durazno claro · contrasta sobre el gradiente */
}
.producto-card:hover .card-lede,
.producto-card:focus .card-lede {
  color: rgba(255, 255, 255, 0.85);
}
.producto-card:hover li,
.producto-card:focus li {
  color: rgba(255, 255, 255, 0.8);
}
.producto-card:hover li span,
.producto-card:focus li span {
  color: #d8b8a0;
}
.producto-card:hover .card-price-label,
.producto-card:focus .card-price-label {
  color: white;
}
.producto-card:hover .card-price-sub,
.producto-card:focus .card-price-sub {
  color: rgba(255, 255, 255, 0.55);
}
.producto-card:hover .card-cta,
.producto-card:focus .card-cta {
  gap: 14px;
  color: #e8d4be;
  border-top-color: rgba(255, 255, 255, 0.12);
}

/* Card destacada · ya tiene gradient base · al seleccionar refuerza el premium */
.producto-card.destacado {
  background: linear-gradient(135deg, #5a3a2a 0%, #2a1a14 100%);
  border-color: rgba(216, 184, 160, 0.35);
}
.producto-card.destacado:hover,
.producto-card.destacado:focus {
  background:
    linear-gradient(135deg,
      #2a1a14 0%,
      #4a3424 40%,
      #8a6650 70%,
      #d8b8a0 100%);
  border-color: rgba(232, 212, 190, 0.7);
}
.producto-card.destacado:hover h3 em,
.producto-card.destacado:focus h3 em {
  color: #ffeed8;
}
.card-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  margin-bottom: 28px;
  align-self: flex-start;
  color: #ccc;
}
.producto-card.destacado .card-tag {
  border-color: rgba(216, 184, 160, 0.5);
  color: #d8b8a0;
}
.producto-card h3 {
  font-size: 30px;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.1;
}
.producto-card h3 em {
  color: #d8b8a0;
  font-weight: 400;
}
.card-lede {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 28px;
  line-height: 1.55;
}
.producto-card ul {
  margin-bottom: 28px;
  flex: 1;
}
.producto-card li {
  font-size: 14px;
  color: #ccc;
  padding: 8px 0;
  display: flex;
  gap: 10px;
}
.producto-card li span {
  color: #d8b8a0;
  flex-shrink: 0;
}
.card-price-label {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 2px;
  color: white;
}
.card-price-sub {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d8b8a0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  align-self: flex-start;
  transition: gap 0.2s;
}

/* ── CASOS ── */
.casos {
  padding: 0;
  background: #fafaf7;
}
.casos > .container > .section-eyebrow,
.casos > .container > .section-title,
.casos > .container > .section-lede {
  padding-top: 0;
  padding-bottom: 0;
}
.casos > .container > .section-eyebrow { padding-top: 140px; }
.casos > .container > .section-lede { padding-bottom: 80px; }

/* Intro de la sección */
.casos-intro {
  padding-top: 140px;
  padding-bottom: 80px;
}

/* CASO FULL · cada caso es un bloque full-width con fondo propio */
.caso-full {
  padding: 100px 40px;
  position: relative;
}
.caso-full > .caso-header,
.caso-full > .caso-galeria,
.caso-full > .caso-obra-block,
.caso-full > .caso-renders,
.caso-full > .caso-obra-cta {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
/* Antes/después · ancho más compacto para que los pares no dominen toda la pantalla */
.caso-full > .caso-pares {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Fondos alternados por caso · paleta coherente */
.caso-full.bg-crema {
  background: #fafaf7;
  color: #1a1a1a;
}
.caso-full.bg-negro {
  background: #1a1a1a;
  color: white;
}
.caso-full.bg-negro .caso-tag,
.caso-full.bg-negro .caso-galeria-label { color: #888; }
.caso-full.bg-negro .caso-desc { color: #ccc; }
.caso-full.bg-negro .caso-par-label { color: #aaa; }

.caso-full.bg-taupe-claro {
  background: #efe9df;
  color: #1a1a1a;
}
.caso-full.bg-taupe-claro .caso-par-label,
.caso-full.bg-taupe-claro .caso-galeria-label { color: #7a6f5e; }

.caso-full.bg-taupe-oscuro {
  background: #2a2622;
  color: white;
}
.caso-full.bg-taupe-oscuro .caso-tag,
.caso-full.bg-taupe-oscuro .caso-galeria-label { color: #b9ad9b; }
.caso-full.bg-taupe-oscuro .caso-desc { color: #d8d3ca; }
.caso-full.bg-taupe-oscuro .caso-par-label { color: #b9ad9b; }
.caso-full.bg-taupe-oscuro .caso-obra-cta { color: #d8d3ca; }
.caso-full.bg-taupe-oscuro .caso-obra-cta a { color: white; }

/* Bloque de obra · estilo distinto del de pares (más informal, foto-collage) */
.caso-obra-block {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px dashed rgba(0,0,0,0.12);
}
.caso-full.bg-negro .caso-obra-block,
.caso-full.bg-taupe-oscuro .caso-obra-block {
  border-top-color: rgba(255,255,255,0.12);
}
.caso-obra-block .caso-galeria-grid img {
  aspect-ratio: 1/1; /* cuadradas, tipo IG */
  border-radius: 8px;
  opacity: 0.95;
}
.caso-header {
  max-width: 920px;
  margin: 0 auto 64px;
  text-align: center;
}
.caso-header .caso-tag {
  text-align: center;
  margin-bottom: 24px;
}
.caso-header h3 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 28px;
  line-height: 1.1;
}
.caso-desc {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}

/* Pares antes/después · cada par es grid de 2 */
.caso-pares {
  display: grid;
  gap: 64px;
  margin-bottom: 64px;
}
.caso-par-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}
.caso-par-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.caso-par-grid figure {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin: 0;
  background: #e8e4dc;
}
.caso-par-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.caso-par-grid figure:hover img {
  transform: scale(1.04);
}
.caso-par-grid figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Galería adicional · grid de imágenes sueltas */
.caso-galeria,
.caso-renders {
  margin-bottom: 48px;
}
.caso-renders {
  background: #1a1a1a;
  margin-left: -40px;
  margin-right: -40px;
  padding: 80px 40px;
  margin-bottom: 64px;
  border-radius: 0;
}
.caso-renders .caso-galeria-label {
  color: #d8b8a0;
}
.caso-galeria-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
  text-align: center;
}
.caso-galeria-label em {
  text-transform: none;
  letter-spacing: 0.01em;
  font-style: italic;
}
.caso-galeria-grid {
  display: grid;
  gap: 16px;
}
.caso-galeria-grid.one { grid-template-columns: 1fr; max-width: 800px; margin: 0 auto; }
.caso-galeria-grid.two { grid-template-columns: 1fr 1fr; }
.caso-galeria-grid.three { grid-template-columns: repeat(3, 1fr); }
.caso-galeria-grid.four { grid-template-columns: repeat(4, 1fr); }
.caso-galeria-grid.five { grid-template-columns: repeat(5, 1fr); }
.caso-galeria-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.5s ease;
}
.caso-galeria-grid img:hover {
  transform: translateY(-4px);
}
.caso-renders .caso-galeria-grid img {
  aspect-ratio: 3/2;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* En obra · tag fuerte */
.caso-en-obra .caso-tag strong {
  background: #d8b8a0;
  color: #1a1a1a;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 11px;
  margin-left: 6px;
  letter-spacing: 0.15em;
}
.caso-obra-cta {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: #555;
}
.caso-obra-cta a {
  color: #1a1a1a;
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

@media (max-width: 900px) {
  .caso-galeria-grid.four,
  .caso-galeria-grid.five { grid-template-columns: repeat(2, 1fr); }
  .caso-galeria-grid.three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .caso-par-grid { grid-template-columns: 1fr; }
  .caso-galeria-grid.two,
  .caso-galeria-grid.three,
  .caso-galeria-grid.four,
  .caso-galeria-grid.five { grid-template-columns: 1fr 1fr; }
  .caso-full { margin-bottom: 80px; padding-bottom: 60px; }
}

/* Compat con clases antiguas (no se usan más pero por las dudas) */
.caso {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.caso:last-child { margin-bottom: 0; }
.caso.reverse { grid-template-columns: 1fr 1fr; }
.caso.reverse .caso-media { order: 2; }
.caso.reverse .caso-text { order: 1; padding-right: 0; padding-left: 40px; }
.caso-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #e8e4dc;
}
.caso-media video, .caso-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caso-media-split {
  display: flex;
  flex-direction: column;
}
.caso-media-split .split-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: flex 0.5s ease;
}
.caso-media-split:hover .split-antes { flex: 0.6; }
.caso-media-split:hover .split-despues { flex: 1.4; }
.split-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.split-antes { border-bottom: 2px solid rgba(255,255,255,0.95); }
.casos-cta {
  margin-top: 80px;
  padding: 64px 56px;
  background: #1a1a1a;
  color: white;
  border-radius: 24px;
  text-align: center;
}
.casos-cta-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d8b8a0;
  margin-bottom: 20px;
}
.casos-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.casos-cta p {
  color: #bbb;
  font-size: 15px;
}
.casos-cta a {
  color: #d8b8a0;
  border-bottom: 1px solid currentColor;
}
.casos-cta a:hover { color: white; border-bottom-color: white; }
.caso-pill {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}
.caso-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d8b8a0;
  margin-bottom: 24px;
}
.caso-text h3 {
  font-size: clamp(28px, 3.4vw, 48px);
  margin-bottom: 24px;
  font-weight: 400;
}
.caso-text p { color: #555; font-size: 17px; line-height: 1.65; }
@media (max-width: 768px) {
  .caso, .caso.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }
  .caso.reverse .caso-media { order: 1; }
  .caso.reverse .caso-text { order: 2; padding-left: 0; }
  .caso-media { aspect-ratio: 1/1; }
}

/* ── AGUS ── */
.agus {
  padding: 140px 0;
  background: #1a1a1a;
  color: white;
}
.agus-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: center;
}
.agus-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.agus-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 30%;
  transform: scale(1.35);
  transform-origin: 45% 30%;
}
.agus-text .section-eyebrow { color: #aaa; }
.agus-text .section-title { color: white; margin-bottom: 40px; }
.agus-text p {
  font-size: 17px;
  color: #ccc;
  margin-bottom: 24px;
  line-height: 1.7;
}
.agus-signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #d8b8a0 !important;
  font-size: 19px !important;
  margin-top: 40px !important;
}
@media (max-width: 768px) {
  .agus-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── VISITA ── */
.visita {
  padding: 140px 0;
  background: #fafaf7;
}
.visita .section-title { max-width: 800px; }
.visita-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 24px;
}
.visita-card {
  background: #2a2a2a;
  color: white;
  padding: 56px 48px;
  border-radius: 24px;
}
.visita-precio-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 12px;
}
.visita-precio {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1;
}
.visita-precio-sub {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.visita-incluye {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}
.visita-card ul { margin-bottom: 32px; }
.visita-card li {
  padding: 10px 0;
  font-size: 15px;
  color: #ddd;
  display: flex;
  gap: 12px;
}
.visita-card li span { color: #d8b8a0; }
.visita-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: transform 0.2s;
}
.visita-cta:hover { transform: translateY(-2px); }
.visita-cta-wa {
  background: #25d366;
  color: white;
}
.visita-cta-email {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.visita-microcopy {
  font-size: 13px;
  color: #aaa;
  text-align: center;
  margin-top: 20px;
}
.visita-microcopy a { color: white; border-bottom: 1px solid #aaa; }
.visita-faqs h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 28px;
  margin-bottom: 32px;
  font-weight: 500;
}
.visita-faqs details {
  border-bottom: 1px solid #ddd;
  padding: 22px 0;
  cursor: pointer;
}
.visita-faqs summary {
  font-size: 17px;
  font-weight: 400;
  list-style: none;
  position: relative;
  padding-right: 40px;
  color: #1a1a1a;
}
.visita-faqs summary::-webkit-details-marker { display: none; }
.visita-faqs summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: linear-gradient(currentColor, currentColor) center/2px 100% no-repeat,
              linear-gradient(currentColor, currentColor) center/100% 2px no-repeat;
  transition: transform 0.3s;
}
.visita-faqs details[open] summary::after {
  transform: rotate(45deg);
  background: linear-gradient(currentColor, currentColor) center/100% 2px no-repeat;
}
.visita-faqs details p {
  margin-top: 16px;
  color: #555;
  font-size: 15px;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .visita-info { grid-template-columns: 1fr; gap: 48px; }
  .visita-card { padding: 36px 28px; }
  .visita-precio { font-size: 52px; }
}

/* ── FOOTER ── */
.footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  color: white !important;
  margin-bottom: 20px;
  display: inline-block;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
  max-width: 320px;
}
.footer-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #aaa;
  transition: color 0.2s;
}
.footer a:hover { color: white; }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Reveal-on-scroll (sutil) ── */
@media (prefers-reduced-motion: no-preference) {
  .proceso-steps li,
  .producto-card,
  .caso,
  .agus-grid,
  .visita-info {
    animation: revealUp 0.8s ease-out backwards;
  }
  .proceso-steps li:nth-child(1) { animation-delay: 0.0s; }
  .proceso-steps li:nth-child(2) { animation-delay: 0.1s; }
  .proceso-steps li:nth-child(3) { animation-delay: 0.2s; }
  .proceso-steps li:nth-child(4) { animation-delay: 0.3s; }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
