html, body {
  overflow-x: hidden;
}

:root {
  --bg-main: #111111;
  --bg-alt: #111111;
  --bg-light: #f4f4f4;
  --text-main: #ffffff;
  --text-muted: #b5b5b5;
  --accent: #c0a98c; /* papel kraft */
  --font-main: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
}

/* Helpers */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* HEADER / NAVBAR */

.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 20;
}


/* HEADER SCROLLEADO (GLASS MODE) */
.header.scrolled {
  background: rgba(17, 17, 17, 0.72); /* negro suave translúcido */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.45rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo {
  height: clamp(58px, 7vw, 110px);
  width: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(192,169,140,0.28));
}

/* Botón menú (mobile) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding-inline: 8px;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Estado abierto se completa desde JS */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

/* Links */

.nav-links {
  position: fixed;
  inset-inline: 0;
  top: 60px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(0, 0, 0, 0.96);
  padding: 1.5rem 1.25rem 2rem;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-links.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}




/* HERO */

.hero {
  min-height: 100vh;
  padding-top: 72px; /* espacio para el header */
  position: relative;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;

}

/* HERO BACKGROUND FADE REAL */

.hero-bg,
.hero-bg-next {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg {
  z-index: 0;
  opacity: 1;
}

.hero-bg-next {
  z-index: 1;
  opacity: 0;
}

/* El overlay sigue arriba de todo */
.hero-overlay {
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(192,169,140,0.3), transparent 55%),
              rgba(0,0,0,0.6);
  mix-blend-mode: normal;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 4.5rem;
}
.hero-text {
  max-width: 520px;
  animation: fade-up 0.9s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 32rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Botones */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: #111111;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
}

/* Indicador de scroll */

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), var(--accent));
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 20px;
  top: -20px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  animation: scroll-indicator 1.4s infinite ease-in-out;
}

/* SECCIONES GENERALES */

.section {
  padding-block: 5rem;
  background: var(--bg-main);
}

.section-alt {
  padding-block: 5rem;
  background: var(--bg-alt);
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.section p {
  color: var(--text-muted);
  max-width: 40rem;
}

/* Footer */

.footer {
  padding-block: 1.5rem;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ANIMACIONES */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-indicator {
  0% {
    top: -20px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    top: 60px;
    opacity: 0;
  }
}

/* ========= DESKTOP ========= */

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

  .nav-links {
    position: static;
    flex-direction: row;
    background: transparent;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    padding: 0;
    gap: 1.5rem;
  }


  .hero-scroll {
    justify-self: flex-end;
    align-self: flex-end;
    margin-bottom: 0.8rem;
  }
}

/* ============ HERO ULTRA MINIMAL ============ */

.hero-minimal {
  max-width: 720px;
  margin-inline: auto;
}

/* Animación general por ítems */
.hero-kicker,
.hero-headline,
.hero-copy,
.hero-actions-minimal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  animation: heroItemUp 0.8s ease-out forwards;
}

/* Stagger */
.hero-headline { animation-delay: 0.08s; }
.hero-copy { animation-delay: 0.16s; }
.hero-actions-minimal { animation-delay: 0.26s; }

@keyframes heroItemUp {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Kicker minimal (línea arriba del título) */
.hero-kicker {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.8rem;
}

/* Título principal sans-serif grande */
.hero-headline {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  line-height: 1.15;
  color: #f9f9f7;
  margin-bottom: 1.4rem;
}

/* Texto descriptivo ancho y limpio */
.hero-copy {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  max-width: 34rem;
  margin-inline: auto;
  margin-bottom: 2.4rem;
}

/* Contenedor de botones */
.hero-actions-minimal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

/* Botón principal */
.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.3rem;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* Filled */
.btn-hero-primary {
  background: #f5f3ee;
  color: #111111;
  border-color: #f5f3ee;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.55);
}

/* Outline minimal */
.btn-hero-secondary {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.35);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}




/*--------------------------------------------------CATALOGO-----------------------------------------------------/*/
/* ================================
   BLACK GLASS PRO – PREMIUM CARDS
   ================================ */

.catalogo-card {
  position: relative;
  padding: 2.4rem 1.8rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.28); /* vidrio oscuro */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(192,169,140,0.22); /* borde dorado suave */
  box-shadow: 
    0 8px 28px rgba(0,0,0,0.3),
    inset 0 0 20px rgba(255,255,255,0.03);

  transition: 
    transform .35s cubic-bezier(.15,.84,.3,1),
    box-shadow .35s ease,
    border-color .35s ease,
    background .35s ease;

  opacity: 0;
  transform: translateY(25px);
}

.catalogo-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Imagen flotando */
.catalogo-img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 1.2rem;
  transition: transform .4s ease;
  transform: translateY(0);
  pointer-events: none;
}

/* Hover Pro */
.catalogo-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 18px 48px rgba(0,0,0,0.45),
    inset 0 0 40px rgba(192,169,140,0.12);

  border-color: rgba(192,169,140,0.45);
  background: rgba(10,10,10,0.55);
}

/* Imagen levita */
.catalogo-card:hover .catalogo-img {
  transform: translateY(-8px) scale(1.03);
}



/* Glow dorado animado */
.catalogo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.05),
    rgba(192,169,140,0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .4s ease;
}

.catalogo-card:hover::before {
  opacity: 1;
}

.catalogo-grid {
  display: grid;
  justify-content: center;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}



/* CARD NEOGLASS PRO */
.catalogo-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 2rem 1.6rem;
  transition: transform .4s cubic-bezier(.16,.84,.44,1),
              box-shadow .4s ease,
              border-color .4s ease,
              background .4s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}

/* Glow dinámico */
.catalogo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), 
             rgba(255,255,255,0.25), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}

.catalogo-card:hover::after {
  opacity: 1;
}

/* Hover */
.catalogo-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
}

/* Imagen */
.catalogo-img {
  width: 100%;
  transition: transform .45s ease;
}

.catalogo-card:hover .catalogo-img {
  transform: translateY(-6px) scale(1.05);
}

.catalogo-img {
  height: 300px;
  object-fit: contain;
  width: 100%;
  padding: 10px 0;
}

/* ==== FIJAR ALTURA IGUAL PARA TODAS LAS IMÁGENES ==== */

.catalogo-img-wrapper {
    width: 100%;
    height: 350px;      /* 🔥 Ajustá acá si querés más grande o más chico */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catalogo-img {
    max-height: 95%;   /* la imagen nunca supera la altura */
    max-width: 95%;    /* mantiene proporción */
    object-fit: contain;
    display: block;
}


.catalogo-img-chica {
    max-height: 100%;   /* la imagen nunca supera la altura */
    max-width: 100%;    /* mantiene proporción */
    object-fit: contain;
    display: block;
}



/* ==========================================
   ESTILO EDITORIAL ZARA PARA LOS TEXTOS
   ========================================== */

/* TITULO DEL PRODUCTO */
.catalogo-item-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #f2f2f2;
  margin-bottom: 0.8rem;
  text-align: left;
}

/* DESCRIPCIÓN EDITORIAL */
.catalogo-description {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);

  max-width: 260px; /* estilo zara angosto */
  text-align: left;

  margin-top: 0.6rem;
  margin-left: 0.15rem; /* se corre poquito a la izquierda */
}

/* SEPARACIÓN ENTRE LAS LÍNEAS TIPO “FICHA TÉCNICA” */
.catalogo-description br {
  line-height: 2.6;
}





/* ============================================
   TITULO CON BANDA NEGRA ESTILO EDITORIAL
   ============================================ */


.catalogo-title-bar {
  width: 100%;
  background: #c0a98c;
  color: #f3e7d8;
  font-size: 2.8rem;
  font-weight: 800;
  padding: 0.8rem 1.4rem;
  letter-spacing: 0.08em;
  margin: 3rem 0 2.5rem;
  display: inline-block;

  transform: translateX(-40px);
  opacity: 0;
  filter: blur(4px);
  transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.9s ease,
              filter 0.9s ease;

                
}

/* Cuando aparece en pantalla */
.catalogo-title-bar.visible {
  transform: translateX(0);
  opacity: 1;
  filter: blur(0);
}









/* =============================
   BLOQUES EDITORIALES PREMIUM
   ============================= */

.editorial-block {
  width: 100%;
  margin: 6rem 0 4rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.editorial-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.18);

  /* Animación inicial */
  opacity: 0;
  transform: translateY(40px) scale(1.06);
  transition: 
    opacity 1s ease,
    transform 1.1s cubic-bezier(.16,.84,.44,1);
}

/* 2 fotos lado a lado */
.editorial-block.double {
  gap: 1.5rem;
}

.editorial-block.double .editorial-img {
  max-height: 420px;
  width: 50%;
}

/* Foto súper panorámica */
.editorial-block.wide .editorial-img {
  max-height: 380px;
  border-radius: 18px;
}

/* Aparece al hacer scroll */
.editorial-block.visible .editorial-img {
  opacity: 1;
  transform: translateY(0) scale(1);
}



/* =============================
   BLOQUES EDITORIALES PREMIUM 2.0
   Con efectos: fade + slide + zoom + parallax
   ============================= */

.editorial-block {
  width: 100%;
  margin: 6rem 0 4rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.editorial-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);

  /* Estado inicial */
  opacity: 0;
  transform: translateY(40px) scale(1.12);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(.16,.84,.44,1);
}

/* 2 fotos */
.editorial-block.double {
  gap: 1.5rem;
}

.editorial-block.double .editorial-img {
  max-height: 420px;
  width: 50%;
}

/* Panorámica */
.editorial-block.wide .editorial-img {
  max-height: 380px;
  border-radius: 18px;
}

/* Cuando aparece en pantalla */
.editorial-block.visible .editorial-img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* PARALLAX SUAVE (en movimiento de scroll) */
.editorial-img.parallax {
  transition: transform 0.2s linear;
}



/* TILT 3D + ZOOM */
.editorial-img.tilt {
  transition: transform 0.35s ease, filter 0.35s ease;
  transform-style: preserve-3d;
}

.editorial-img.tilt:hover {
  filter: brightness(1.05);
}


.editorial-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.editorial-highlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255,255,255,0.18), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}

.editorial-img-wrapper:hover .editorial-highlight {
  opacity: 1;
}


.catalogo-wrapper {
  width: min(1400px, 92%); /* ANCHO PERFECTO */
  margin: 0 auto;
}


/* ============================
   TITLE – DIOR GOLD COUTURE WIPE
   ============================ */

.catalogo-title-bar {
  position: relative;
  width: 100%;
  overflow: hidden;

  background: transparent;   /* El fondo lo hará la animación */
  color: #f6f1e8;
  font-size: 2.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 1.4rem 1.6rem;
  margin: 4rem 0 3rem;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

/* Cuando aparece en pantalla */
.catalogo-title-bar.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Barra dorada que hace el WIPE */
.catalogo-title-bar::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.6) 0%,
    rgba(192,169,140,0.92) 20%,
    rgba(255,245,230,0.55) 45%,
    rgba(192,169,140,0.92) 70%,
    rgba(0,0,0,0.6) 100%
  );

  transform: translateX(-110%);
  transition: transform 1.2s cubic-bezier(.16,.84,.44,1);
}

/* Cuando aparece → WIPE */
.catalogo-title-bar.visible::before {
  transform: translateX(0);
}

/* El texto aparece DESPUÉS del wipe */
.catalogo-title-bar span {
  position: relative;
  z-index: 2;

  opacity: 0;
  filter: blur(4px);
  transition: opacity .65s ease .55s, filter .65s ease .55s;
}

/* Texto visible */
.catalogo-title-bar.visible span {
  opacity: 1;
  filter: blur(0);
}



/* ================================
   ANIMACIÓN EDITORIAL ZARA
   ================================ */

.catalogo-card {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.23,1,0.32,1);
}

/* Cuando entra en pantalla */
.catalogo-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animación del TÍTULO y TEXTO */
.catalogo-card .catalogo-item-title,
.catalogo-card .catalogo-description {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.8s ease-out 0.15s,
    transform 0.8s cubic-bezier(0.23,1,0.32,1) 0.15s;
}

/* Cuando la card aparece: texto aparece */
.catalogo-card.visible .catalogo-item-title,
.catalogo-card.visible .catalogo-description {
  opacity: 1;
  transform: translateY(0);
}

/* Delay escalonado para más elegancia */
.catalogo-card:nth-child(1).visible { transition-delay: .05s; }
.catalogo-card:nth-child(2).visible { transition-delay: .12s; }
.catalogo-card:nth-child(3).visible { transition-delay: .19s; }
.catalogo-card:nth-child(4).visible { transition-delay: .26s; }
.catalogo-card:nth-child(5).visible { transition-delay: .33s; }
.catalogo-card:nth-child(6).visible { transition-delay: .40s; }


/* =============================================
   DIOR / BALMAIN WIPE REVEAL TITLE (PREMIUM)
   ============================================= */

.catalogo-title-wipe {
  position: relative;
  width: 100%;
  text-align: center;

  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;

  color: rgba(255,255,255,0); /* El texto inicia invisible */
  margin: 5rem 0 3.8rem;

  overflow: hidden;

  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);

  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.23,1,.32,1),
    filter .8s ease;
}

/* Barra que hace el "wipe" */
.catalogo-title-wipe::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.2),
    #ffffff,
    rgba(255,255,255,0.15)
  );

  transform: translateX(-100%);
  transition: transform 1s cubic-bezier(.25,1,.3,1);
}

/* Revelación del texto */
.catalogo-title-wipe.visible {
  color: #e9e6e2;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* El wipe se desplaza */
.catalogo-title-wipe.visible::before {
  transform: translateX(100%);
}


/* HERO PREMIUM – PRADA + YSL */

.hero-premium {
  max-width: 600px;
  animation: fadeUpHero 1.1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* TAGLINE estilo Dior */
.hero-tagline-premium {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.38em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  opacity: 0.85;
}

/* TÍTULO editorial estilo PRADA */
.hero-title-premium {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 1.05;
  color: #f8f8f6;
  margin-bottom: 1.4rem;
}



/* Texto editorial */
.hero-subtext {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
  margin-bottom: 2.3rem;
}

/* BOTÓN PRINCIPAL — DORADO PREMIUM */
.btn-gold-outline {
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(192,169,140,0.6);
  color: #e7dcc7;
  background: rgba(0,0,0,0.25);
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  transition: all .35s ease;
}

.btn-gold-outline:hover {
  background: rgba(192,169,140,0.1);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}

/* SECUNDARIO MINIMALISTA */
.btn-gold-minimal {
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  background: transparent;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  transition: all .35s ease;
}

.btn-gold-minimal:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}


@keyframes fadeUpHero {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* SPLIT TITLE CELINE / YSL */
.shimmer-split {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
  overflow: hidden;
}

.shimmer-split span {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateY(15px);
  filter: blur(6px);
  animation: splitFade 1.2s ease forwards;
}

.shimmer-split span:nth-child(1) {
  animation-delay: .15s;
}

.shimmer-split span:nth-child(2) {
  animation-delay: .40s;
}

/* LINEA GOLD SHIMMER */
.shimmer-split::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: -15%;
  width: 130%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(192,169,140,0.7),
    rgba(255,244,225,0.9),
    rgba(192,169,140,0.7),
    transparent
  );

  transform: translateX(-120%);
  animation: shimmerLine 1.5s cubic-bezier(.25,1,.3,1) forwards;
  animation-delay: .9s;
}

/* ANIMACIONES */
@keyframes splitFade {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes shimmerLine {
  to {
    transform: translateX(100%);
  }
}




/*----------------------------------------------------------------CONTACTO--------------------------------------------------*/

/* ===========================================
   FORMULARIO BLACK GLASS LUXURY
   =========================================== */

.contact-section {
  padding: 6rem 0;
  display: flex;
  justify-content: center;
}

.contact-wrapper {
  width: min(900px, 92%);
}

/* Título estilo shimmer-split que ya tenés */

.contact-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 0.32em;
  font-size: clamp(2.6rem, 5vw, 2.8rem);
  text-align: center;
  color: #f5f2ec;
  margin-bottom: 2.8rem;

  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  animation: contactTitleFade 1s ease forwards;
}

@keyframes contactTitleFade {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.contact-title span {
  display: block;
}

/* GRID FORM */
.contact-form {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Contenedor */
.form-group {
  position: relative;
}

.form-group.full {
  grid-column: 1 / -1;
}

/* Inputs estilo Dior */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 1rem 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  color: #f2f2f2;
  font-size: 0.95rem;

  transition: border-color 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(6px);
}

/* Hover */
.form-group input:hover,
.form-group textarea:hover {
  background: rgba(255,255,255,0.08);
}

/* Focus */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}

/* Floating labels */
.form-group label {
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  pointer-events: none;

  transition: all .35s ease;
}

/* Cuando escribís */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 0.2rem;
  font-size: 0.70rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}

/* BOTÓN */
.btn-contact {
  grid-column: 1 / -1;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(192,169,140,0.55);
  color: #e6ddc9;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;

  transition: all .35s ease;
  cursor: pointer;
}

.btn-contact:hover {
  background: rgba(192,169,140,0.15);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
}

/* MENSAJE ÉXITO */
.form-success {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0.5rem;
  color: var(--accent);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity .4s ease;
}






/* ============================
   DIVIDER PHOTO — PREMIUM FX
   ============================ */

.divider-photo {
  margin: 6rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.divider-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 18px;

  /* Estado inicial */
  opacity: 0;
  transform: translateY(40px) scale(1.12);

  box-shadow: 0 24px 52px rgba(0,0,0,0.28);

  transition:
    opacity 1.2s ease,
    transform 1.3s cubic-bezier(.16,.84,.44,1);
}

/* Cuando aparece en pantalla */
.divider-photo.visible .divider-img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Parallax suave */
.divider-img.parallax-divider {
  transition: transform .15s linear;
}




/* ===========================
   WHATSAPP FLOAT PREMIUM FIX
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(circle, #c0a98c 0%, #9e8974 100%);
  border-radius: 50%;
  box-shadow: 
    0 10px 28px rgba(0,0,0,0.55),
    0 0 18px rgba(192,169,140,0.75);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  animation: floatUp .9s ease-out forwards;
  opacity: 0;
  transform: translateY(25px);

  z-index: 999;
  transition: transform .35s ease, box-shadow .35s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.65),
    0 0 22px rgba(255,244,215,0.95);
}

.wa-icon {
  width: 58%;
  height: 58%;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.35));
}

@keyframes floatUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*-----------------------------------------------------------------NUEVO HERO HOME */



.hero-new-title {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
}

/* ============================================
   HERO TITLE – SPLIT + GOLD WIPE (Montserrat)
   ============================================ */

.hero-title-split {
  display: inline-block;
  text-align: center;

  /* Mantengo tu tipografía original */
  font-family: "Montserrat", sans-serif;
  font-weight: 600;

  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: 0.02em;

  color: #f6f5f3;
  margin-bottom: 1.4rem;
  position: relative;
  overflow: hidden;
}

.hero-title-split span {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(10px);
  animation: splitFadeHero 1.1s ease forwards;
}

.hero-title-split span:nth-child(1) {
  animation-delay: .20s;
}

.hero-title-split span:nth-child(2) {
  animation-delay: .45s;
}

/* WIPE DORADO */
.hero-title-split::after {
  content: "";
  position: absolute;
  left: -15%;
  bottom: -8px;
  width: 130%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(192,169,140,0.75),
    rgba(255,244,227,0.95),
    rgba(192,169,140,0.75),
    transparent
  );

  transform: translateX(-120%);
  animation: heroGoldWipe 1.3s cubic-bezier(.25,1,.3,1) forwards;
  animation-delay: .85s;
}

/* Animaciones */
@keyframes splitFadeHero {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroGoldWipe {
  to {
    transform: translateX(0);
  }
}








/* ======================================
   CONTACTO — DIOR EDITION (PREMIUM)
   ====================================== */

.contact-dior {
  padding: 6rem 0;
  display: flex;
  justify-content: center;
}

.contact-dior-container {
  width: min(1300px, 95%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(0,0,0,0.20);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.40);
  backdrop-filter: blur(12px);
}

/* FOTO */
.contact-dior-photo {
  position: relative;
  overflow: hidden;
}

.contact-dior-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  transform: scale(1.1);
  transition: transform 1.2s ease;
}

.contact-dior-photo:hover img {
  transform: scale(1);
}

/* Overlay dorado */
.gold-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(192,169,140,0.15),
    rgba(0,0,0,0.25)
  );
  pointer-events: none;
}

/* CONTENIDO DEL FORM */
.contact-dior-content {
  padding: 3.8rem 3.2rem;
}

/* Título Dior */
.contact-dior-title {
  position: relative;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3rem);
  color: #f3f0eb;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.6rem;

  overflow: hidden;
}

/* Animación del texto */
.contact-dior-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  animation: diorTitleUp 1.2s ease forwards;
}

@keyframes diorTitleUp {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Línea Dior gold */
.contact-title-line {
  margin-top: 10px;
  width: 120%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192,169,140,0.85),
    rgba(255,244,227,0.95),
    rgba(192,169,140,0.85),
    transparent
  );
  animation: diorLineSwipe 1.4s cubic-bezier(.25,1,.3,1) forwards;
  transform: translateX(-120%);
}

@keyframes diorLineSwipe {
  to { transform: translateX(0); }
}

/* SUBTEXTO */
.contact-dior-sub {
  font-family: "Poppins", sans-serif;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 2.4rem;
  line-height: 1.7;
}

/* FORM */
.contact-dior-form {
  display: grid;
  gap: 1.6rem;
}

.form-dior-group {
  width: 100%;
}

.form-dior-group.full {
  grid-column: span 2;
}

/* Inputs Dior */
.form-dior-group input,
.form-dior-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  color: #f3f3f3;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all .3s ease;
  backdrop-filter: blur(8px);
}

.form-dior-group input:focus,
.form-dior-group textarea:focus {
  border-color: rgba(192,169,140,0.65);
  background: rgba(255,255,255,0.10);
  outline: none;
}

/* BOTÓN */
.btn-dior-submit {
  padding: 1rem 3rem;
  border-radius: 999px;
  background: rgba(192,169,140,0.15);
  border: 1px solid rgba(192,169,140,0.55);
  color: #e6ddc9;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all .35s ease;
  cursor: pointer;
}

.btn-dior-submit:hover {
  background: rgba(192,169,140,0.28);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* ÉXITO */
.form-success {
  text-align: center;
  color: var(--accent);
  opacity: 0;
  transition: opacity .4s ease;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-dior-container {
    grid-template-columns: 1fr;
  }

  .form-dior-group.full {
    grid-column: span 1;
  }

  .contact-dior-content {
    padding: 2.8rem 1.8rem;
  }
}


.contact-title {
  position: relative;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(192,169,140,0.8),
    rgba(255,244,225,1),
    rgba(192,169,140,0.8),
    transparent
  );

  animation: goldPulse 2.8s ease-in-out infinite;
}

@keyframes goldPulse {
  0%, 100% { opacity: .25; }
  50% { opacity: 1; }
}


/* ===========================
   HEADER – BLACK BAR MINIMAL
   =========================== */

.header-minimal {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: 60px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 60;
  display: flex;
  align-items: center;
}

.nav-minimal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Logo */
.logo-minimal img {
  height: 48px;
  width: auto;
  transition: transform .3s ease;
}

.logo-minimal:hover img {
  transform: scale(1.05);
}

/* NAV LINKS (desktop) */
.nav-links-minimal {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links-minimal a {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}

.nav-links-minimal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: rgba(255,255,255,0.85);
  transition: width .35s ease;
}

.nav-links-minimal a:hover::after {
  width: 100%;
}

/* ============ MOBILE MENU ============ */

.nav-minimal-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-minimal-toggle span {
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 10px;
  transition: all .3s ease;
}


.nav-minimal-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-minimal-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-minimal-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.nav-links-minimal.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(6px);
  gap: 1.8rem;
}

@media (max-width: 820px) {
  .nav-links-minimal {
    display: none;
  }
  .nav-minimal-toggle {
    display: flex;
  }
}


/* ===========================================HEADER CINEMATIC =========================================== */

.header-cinematic {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;

  /*background: rgba(0,0,0,0.45);   
  backdrop-filter: blur(6px);     
  -webkit-backdrop-filter: blur(6px);*/

  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* SHRINK AL SCROLLEAR */
.header-cinematic.scrolled {
  padding-block: 4px;
  background: #000;
  border-bottom: 1px solid rgba(192,169,140,0.35);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}

/* NAV */
.cinematic-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1120px, 90%);
  margin-inline: auto;
}

/* LOGO */
.logo-cinematic {
  height: clamp(70px, 15vw, 250px);
  transition: height .35s ease, filter .35s ease;
}

.header-cinematic.scrolled .logo-cinematic {
  height: clamp(46px, 6vw, 100px);
  filter: brightness(.85);
}

/* NAV LINKS */
.nav-cinematic {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-cinematic a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: .78rem;
  color: #fff;
  padding-bottom: 4px;
  position: relative;
}

/* Subrayado dorado */
.nav-cinematic a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(192,169,140,0.9),
    #fff4e1,
    rgba(192,169,140,0.9),
    transparent
  );

  transition: width 0.4s cubic-bezier(.25,1,.3,1);
}

.nav-cinematic a:hover::after {
  width: 100%;
}

/* =============================MOBILE MENU============================= */

.cinematic-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.cinematic-toggle span {
  width: 60%;
  height: 2px;
  background: white;
  border-radius: 10px;
  transition: .3s ease;
}

/* OPEN */
.cinematic-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.cinematic-toggle.open span:nth-child(2) {
  opacity: 0;
}
.cinematic-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* MENU MOBILE DESPLEGABLE */
@media (max-width: 820px) {

  .nav-cinematic {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    display: none;

    flex-direction: column;
    gap: 1.5rem;

    padding: 2rem 1.5rem;

    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(6px);
  }

  .nav-cinematic.open {
    display: flex;
  }

  .cinematic-toggle {
    display: flex;
  }
}



/* ============================REDES ============================ */

.social-section {
  --social-glow: rgba(192,169,140,0.28); /* valor por defecto */

  padding: 5.5rem 0 5rem;
  background:
    radial-gradient(circle at top left, var(--social-glow), transparent 55%),
    #050505;
  position: relative;
  transition: background 0.5s ease;
}

.social-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at bottom right, rgba(255,255,255,0.06), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.social-wrapper {
  position: relative;
  z-index: 1;
}


.social-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.social-kicker {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.4rem;
}

.social-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f3f0eb;
  overflow: hidden;
}

.social-title span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
}

.social-sub {
  margin-top: 1.6rem;
  max-width: 34rem;
  margin-inline: auto;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}


.social-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem;
}


.social-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.1rem;

  padding: 1.4rem 1.6rem;
  border-radius: 18px;
  text-decoration: none;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
  backdrop-filter: blur(15px);

  overflow: hidden;
  cursor: pointer;

  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(.23,1,.32,1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
}


.social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--sx,50%) var(--sy,50%),
              rgba(255,255,255,0.22),
              transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}

.social-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(192,169,140,0.55);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 20px 46px rgba(0,0,0,0.55);
}

.social-card:hover::after {
  opacity: 1;
}


.social-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;

  background: radial-gradient(circle at 10% 0%,
              rgba(255,255,255,0.22),
              rgba(0,0,0,0.9));
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 26px rgba(0,0,0,0.6);
}


.social-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 65%);
  opacity: 0;
  transform: scale(0.2);
  transition: opacity .35s ease, transform .35s ease;
}

.social-card:hover .social-icon::after {
  opacity: 0.6;
  transform: scale(1);
}

.social-icon-inner {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f8f5ee;
}


.social-icon.instagram {
  background: radial-gradient(circle at 0 0,
              #f9ce5a, #e95950, #bc2a8d, #8a3ab9);
}

.social-icon.tiktok {
  background: radial-gradient(circle at 0 0,
              #25f4ee, #000000, #fe2c55);
}

.social-icon.mail {
  background: radial-gradient(circle at 0 0,
              #c0a98c, #111);
}

.social-icon.phone {
  background: radial-gradient(circle at 0 0,
              #6be28f, #111);
}


.social-content h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #f4f2ee;
  margin-bottom: 0.28rem;
}

.social-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0.35rem;
}

.social-content p {
  white-space: normal;
  word-break: break-word;
}

.social-cta {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
}


@media (max-width: 640px) {
  .social-card {
    padding: 1.2rem 1.3rem;
  }
}


/* Temas según la red que seleccionamos */
.social-section[data-theme="instagram"] {
  --social-glow: rgba(188,42,141,0.38);  
}

.social-section[data-theme="tiktok"] {
  --social-glow: rgba(37,244,238,0.32);  
}

.social-section[data-theme="mail"] {
  --social-glow: rgba(192,169,140,0.40); 
}

.social-section[data-theme="phone"] {
  --social-glow: rgba(107,226,143,0.34); 
}


/* ============================
   EXPERIENCIA — NUEVO Y LIMPIO
   ============================ */

.experiencia-section {
  padding: 6rem 0;
  background: #0a0a0a;
}

.exp-title {
  text-align: center;
  font-size: 2.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  color: #f5f2ec;
}





/* ======================================
   EXPERIENCIA – LOOKBOOK PREMIUM
====================================== */

.exp-section {
  padding: 6rem 0;
  background: #ffedd3; 
  color: #111;
}


.exp-title {
  text-align: center;
  font-size: 2.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 3.8rem;
  color: #111;
}

/* ===============================MARQUEE INFINITO =============================== */

.exp-marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  gap: 0;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  margin-bottom: 4rem;
}

.exp-marquee-track {
  display: flex;
  gap: 1.6rem;
  animation: expMarquee 22s linear infinite;
}

.exp-marquee-track img {
  height: 260px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  flex-shrink: 0;
  transition: transform .3s ease;
}

.exp-marquee-track img:hover {
  transform: scale(1.05);
}

@keyframes expMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}




/* ======================================EXPERIENCIA TITULO ====================================== */

.exp-title-cinematic {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.exp-title-cinematic span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 5vw, 3.4rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(20px);
  filter: blur(10px);

  animation: expTitleUp 1.2s ease forwards;
}

.exp-title-cinematic span:nth-child(1) {
  animation-delay: .15s;
}
.exp-title-cinematic span:nth-child(2) {
  animation-delay: .45s;
}



.exp-title-cinematic::after {
  content: "";
  position: absolute;
  left: -20%;
  bottom: -4px;
  width: 140%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192,169,140,0.85),
    rgba(255,244,225,1),
    rgba(192,169,140,0.85),
    transparent
  );

  transform: translateX(-120%);
  animation: expGoldWipe 1.4s cubic-bezier(.25,1,.3,1) forwards;
  animation-delay: .75s;
}

@keyframes expTitleUp {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes expGoldWipe {
  to {
    transform: translateX(0);
  }
}



/* ============================================================EXPERIENCIA – LOOKBOOK ============================================================ */

.exp-lookbook {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 1.6rem;
  margin-bottom: 5rem;
}

.exp-lookbook-item {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0,0,0,0.18);
  position: relative;

  opacity: 0;
  transform: translateY(25px) scale(1.05);
  filter: blur(6px);
  transition:
    opacity .9s ease,
    transform 1.1s cubic-bezier(.23,1,.32,1),
    filter .9s ease;
}

.exp-lookbook-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.exp-lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.exp-lookbook-item:hover img {
  transform: scale(1.06);
}


.exp-lookbook-item.tall {
  grid-row: span 2;
}

.exp-lookbook-item.wide {
  grid-column: span 2;
}

.exp-lookbook-item.full {
  grid-column: span 3;
}

.exp-lookbook-item.small {
  grid-row: span 1;
  grid-column: span 1;
}


@media (max-width: 900px) {
  .exp-lookbook {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .exp-lookbook-item.full,
  .exp-lookbook-item.wide,
  .exp-lookbook-item.tall {
    grid-column: span 2;
    grid-row: span 1;
  }
}



/* ==============================marquee logos============================== */

.exp-marquee-logos {
  width: 100vw;               
  margin-left: calc(50% - 50vw); 
  overflow: hidden;
  padding: 2.8rem 0;

  background: #ffedd3;

  mask-image: linear-gradient(to right,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,1) 6%,      
      rgba(0,0,0,1) 94%,
      rgba(0,0,0,0) 100%
  );
}

.exp-marquee-track-logos {
  display: flex;
  align-items: center;
  gap: 4rem;

  
  animation: marqueeLogos 13s linear infinite;
}

.exp-marquee-track-logos img {
  max-height: 70px;
  max-width: 170px;
  object-fit: contain;
  opacity: 0.9;
  transition: transform .35s ease, opacity .35s ease;
}

.exp-marquee-track-logos img:hover {
  transform: scale(1.12);
  opacity: 1;
}

@keyframes marqueeLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.exp-marquee-track-logos {
  display: flex;
  width: max-content;
  animation: marqueeLoop 18s linear infinite;
}

.logos-run {
  display: flex;
  align-items: center;
  gap: 4rem;
  
}

@keyframes marqueeLoop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}




/* ============================= CLIENTES HEADER ============================= */

.clientes-header {
    position: relative;
    text-align: center;
    padding: 20px 20px 35px;
    background: #ffedd3;
    overflow: hidden;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}


.clientes-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 18vw;
    font-weight: 700;
    letter-spacing: -4px;
    color: rgba(0,0,0,0.05);
    pointer-events: none;
    user-select: none;
    line-height: 0.8;
    white-space: nowrap;
}


.clientes-title {
    position: relative;
    font-size: 3.7rem;
    letter-spacing: 0.6rem;
    font-weight: 600;
    color: #111;
    margin: 0;
    animation: titleFade 1.2s ease forwards;
    opacity: 0;
}

/* Subtítulo */
.clientes-subtitle {
    font-size: 1.1rem;
    color: #333;
    font-weight: 300;
    margin-top: 20px;
    letter-spacing: 1px;
    animation: subtitleFade 1.4s ease forwards;
    opacity: 0;
}


@keyframes titleFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
        letter-spacing: 0.2rem;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 0.6rem;
    }
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .clientes-title {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }
    .clientes-bg-text {
        font-size: 28vw;
    }
}




/* ============================TITULO CLIENTES – GOLD WIPE============================ */

.clientes-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}


.clientes-title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  color: #1a1a1a; 
  letter-spacing: 0.18em;
  text-transform: uppercase;
  
  position: relative;
  display: inline-block;
  overflow: hidden;

  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  animation: fadeTitleUp 1s ease forwards;
}

@keyframes fadeTitleUp {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.clientes-title span {
  display: inline-block;
  position: relative;
  z-index: 2;
  animation: clientsTracking 1.3s cubic-bezier(.23,1,.32,1) forwards;
  animation-delay: 0.4s;
}


@keyframes clientsTracking {
  0% { letter-spacing: 0.1em; opacity: 0; }
  100% { letter-spacing: 0.32em; opacity: 1; }
}


.clientes-title::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(192,169,140,0.05),
    rgba(192,169,140,0.9),
    rgba(255,244,227,0.95),
    rgba(192,169,140,0.9),
    rgba(192,169,140,0.05)
  );
  transform: translateX(-120%);
  animation: goldWipe 1.15s cubic-bezier(.25,1,.3,1) forwards;
  animation-delay: 0.15s;
}

@keyframes goldWipe {
  to {
    transform: translateX(120%);
  }
}

.clientes-subtitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #4a4a4a;
  letter-spacing: 0.25em;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(12px);
  filter: blur(6px);
  animation: subtitleFade 1s ease forwards;
  animation-delay: 1.1s;
}

@keyframes subtitleFade {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}



/* ================================productos clientes================================ */


.masonry-cinematic {
  width: 100vw;           
  margin: 5rem 0;
  padding: 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}


.masonry-grid {
  columns: 5;              
  column-gap: 30px;
  padding: 0 40px;         
  width: 100%;
}

@media(max-width: 1400px){
  .masonry-grid { columns: 4; }
}

@media(max-width: 1100px){
  .masonry-grid { columns: 3; }
}

@media(max-width: 800px){
  .masonry-grid { columns: 2; }
}

@media(max-width: 520px){
  .masonry-grid { columns: 1; }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  opacity: 0;
  transform: translateY(30px) scale(1.03);
  transition: 
      opacity 0.9s ease,
      transform 1s cubic-bezier(.23,1,.32,1);
}

.masonry-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.masonry-item img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  transition: transform .45s ease, box-shadow .45s ease;
  display: block;
}


.masonry-item.tall img {
  height: 500px;
}

.masonry-item.wide img {
  height: 360px;
}

.masonry-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 22px 55px rgba(0,0,0,0.45);
}



.header-cinematic.scrolled .logo-cinematic {
  transform: scale(0.86);
  filter: drop-shadow(0 0 8px rgba(192,169,140,0.35));
  transition: transform .35s ease, filter .35s ease;
}



.logo-cinematic {
  transition: transform .6s ease;
  transform-style: preserve-3d;
}

.cinematic-logo:hover .logo-cinematic {
  transform: rotateY(12deg) rotateX(8deg) scale(1.08);
}





/* ============================================================FOOTER CINEMATIC============================================================ */

.footer-cinematic {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #000;
  padding: 4.5rem 0 3rem;
  text-align: center;
  position: relative;

  background: linear-gradient(
    180deg,
    #0a0a0a 0%,
    #000000 60%,
    #0a0a0a 100%
  );
}

/* ===============================LOGO FOOTER=============================== */

.footer-logo-wrapper {
  position: relative;
  display: inline-block;
}

.footer-logo {
  width: clamp(120px, 22vw, 220px);
  opacity: 0.95;
  transition: transform .6s ease, filter .5s ease;
  transform-style: preserve-3d;
}

.footer-logo:hover {
  transform: perspective(800px) rotateY(12deg) rotateX(6deg) scale(1.08);
  filter: drop-shadow(0 0 35px rgba(192,169,140,0.45));
}


.footer-logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(192,169,140,.35),
    transparent 60%
  );
  filter: blur(25px);
  z-index: -1;
  transition: transform .4s ease, opacity .4s ease;
  opacity: .55;
}

.footer-logo-wrapper:hover .footer-logo-glow {
  transform: scale(1.2);
  opacity: .75;
}

/* ===============================FRASE EDITORIAL=============================== */

.footer-claim {
  margin-top: 1.4rem;
  font-size: .9rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  opacity: 0;
  animation: footerFadeUp .9s ease forwards;
  animation-delay: .25s;
}

/* Fade up */
@keyframes footerFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===============================FOOTER REDES=============================== */

.footer-social {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.footer-social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .15em;
  text-decoration: none;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);

  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);

  transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

.footer-social-icon:hover {
  transform: translateY(-4px) scale(1.08);
  background: rgba(192,169,140,0.22);
  border-color: rgba(192,169,140,0.55);
}


.footer-social-icon.ig { background: radial-gradient(circle, #e95950, #bc2a8d, #8a3ab9); }
.footer-social-icon.tk { background: radial-gradient(circle, #25f4ee, #fe2c55); }
.footer-social-icon.mail { background: radial-gradient(circle, #c0a98c, #000); }
.footer-social-icon.ph { background: radial-gradient(circle, #6be28f, #000); }


.footer-social-icon.ig:hover,
.footer-social-icon.tk:hover,
.footer-social-icon.mail:hover,
.footer-social-icon.ph:hover {
  filter: brightness(1.12);
}

/* ==============================FOOTER + COPYRIGHT=============================== */

.footer-bottom {
  margin-top: 3.2rem;
}

.footer-line {
  width: 60%;
  margin: 0 auto 1rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192,169,140,0.8),
    rgba(255,244,225,1),
    rgba(192,169,140,0.8),
    transparent
  );
}

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: .18em;
}

.social-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.social-icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 22px;
  height: 22px;
}


.wa-icon {
  display: block;
  margin: 0 auto;
}