 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
*{margin:0;padding:0;box-sizing:border-box}
body{background:#0a0a0a;color:#f5f1e8;font-family:'Inter',sans-serif}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/nm.webp'); /* poné el path real de tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* ===== SECCION FONDO BLANCO ===== */
.catalogo-section{padding:100px 40px;background:#fdfcfc}
.catalogo-header{text-align:center;max-width:700px;margin:0 auto 50px}
.eyebrow{font-size:10px;letter-spacing:3px;color:#c9a86a;margin-bottom:16px}
.catalogo-header h2{font-size:42px;font-weight:700;letter-spacing:-1px;color:#0a0a0a}
.catalogo-header .sub{color:rgba(0,0,0,0.55);font-size:15px;margin-top:12px}

/* BUSCADOR VISIBLE EN FONDO BLANCO */
.search-bar-wrap{margin:28px auto 0;position:relative;max-width:520px;display:block !important}
.search-bar-wrap input{width:100%;background:#ffffff;border:1px solid rgba(0,0,0,0.12);border-radius:999px;padding:14px 20px 14px 44px;color:#0a0a0a;font-size:14px;outline:none;box-shadow:0 4px 20px rgba(0,0,0,0.04)}
.search-bar-wrap input:focus{border-color:rgba(201,168,106,0.5);box-shadow:0 4px 24px rgba(201,168,106,0.15)}
.search-bar-wrap input::placeholder{color:rgba(0,0,0,0.35)}
.search-icon{position:absolute;left:16px;top:50%;transform:translateY(-50%);color:rgba(0,0,0,0.3);font-size:18px}

.catalogo-layout{max-width:1200px;margin:0 auto;display:flex;flex-direction:column;gap:24px}

/* ===== TARJETA NEGRA TRANSPARENTE + PREVIEW BLANCA ===== */
.template-card-row{
  display:flex;
  min-height:480px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
  border-radius:24px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  transition:.4s cubic-bezier(.22,1,.36,1);
}
.template-card-row:hover{transform:translateY(-4px);box-shadow:0 24px 70px rgba(0,0,0,0.25)}

.card-left{
  width:32%;
  min-width:320px;
  padding:40px 36px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background: transparent;
}
.card-left h3{font-size:22px;font-weight:700;color:#fff;margin-bottom:10px;letter-spacing:-0.5px}
.card-left p{font-size:14px;color:rgba(255,255,255,0.6);line-height:1.6;margin-bottom:24px}
.card-badges{display:flex;gap:8px;margin-bottom:24px}
.badge{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);display:flex;align-items:center;justify-content:center;font-size:11px;color:#fff}
.card-buttons{display:flex;gap:10px;flex-wrap:wrap}
.btn-live{background:rgba(255,255,255,0.1);color:#fff;border:1px solid rgba(255,255,255,0.18);padding:11px 18px;border-radius:999px;font-size:13px;font-weight:600;cursor:pointer;transition:.2s}
.btn-live:hover{background:#fff;color:#000}
.btn-buy{background:#fff;color:#000;border:none;padding:11px 18px;border-radius:999px;font-size:13px;font-weight:700;cursor:pointer;transition:.2s}
.btn-buy:hover{background:#c9a86a;color:#000}
.card-bundle{margin-top:16px;font-size:11px;color:rgba(255,255,255,0.35)}

.card-right{
  width:68%;
  background:#ffffff;
  display:flex;
  overflow:hidden;
}
.card-right .img-main{width:62%;border-right:1px solid rgba(0,0,0,0.06);background:#f5f5f5}
.card-right .img-main img{width:100%;height:100%;object-fit:cover;object-position:top;display:block}
.card-right .img-secondary{width:38%;background:#111;display:flex}
.card-right .img-secondary img{width:100%;height:100%;object-fit:cover;object-position:top;display:block}

/* Layout en 2 columnas */
 .catalogo-container {
  display: flex;
  gap: 60px; /* Aumentamos la distancia entre el sidebar y las plantillas */
  width: 100%;
  max-width: 1600px; /* Expandimos el límite de ancho para usar los bordes de la pantalla */
  margin: 0 auto;
  padding: 40px 40px 40px 60px; /* Le damos más margen a la izquierda (60px) */
  align-items: flex-start;
}

 .catalogo-sidebar {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  
  /* Esto asegura que no choque visualmente y le da espacio al desplegar */
  margin-right: 20px; 
}
/* Buscador lateral */
.sidebar-search {
  position: relative;
  margin-bottom: 16px;
}

.sidebar-search input {
  width: 100%;
  height: 40px;
  padding: 0 12px 0 36px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  font-size: 13px;
  outline: none;
  background: #f9f9f9;
}

.sidebar-search .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

/* Lista del menú estilo 21st.dev */
.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-btn, .menu-toggle, .sub-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.menu-btn:hover, .menu-toggle:hover, .sub-link:hover {
  background-color: #f3f3f3;
}

.chevron {
  font-size: 10px;
  transition: transform 0.2s ease;
  color: #777;
}

/* Ocultar submenú por defecto */
.submenu {
  display: none;
  padding-left: 10px;
  margin-top: 4px;
}

.sub-link {
  font-size: 13px;
  color: #666;
  padding: 8px 12px;
}

/* Estado desplegado */
.has-submenu.open > .submenu {
  display: block;
}

.has-submenu.open > .menu-toggle .chevron {
  transform: rotate(90deg);
}

/* Columna Derecha de las tarjetas */
.catalogo-content {
  flex: 1;
  min-width: 0; /* Previene colapsos de grid */
}
@media(max-width:900px){
  .catalogo-section{padding:50px 16px;background:#fdfcfc}
  .template-card-row{flex-direction:column;min-height:auto}
  .card-left,.card-right{width:100%;min-width:auto}
  .card-left{padding:28px 24px}
  .card-right{height:420px}
} 
/* ===== MODAL DE PREVIEW ===== */
 .preview-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:9999;
  background:#0a0a0a;   /* antes: rgba(10,10,10,0.92) */
  flex-direction:column;
}

.preview-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  background:#0a0a0a;
  border-bottom:1px solid rgba(255,255,255,0.08);
  flex-shrink:0;
}

.preview-info{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-size:14px;
  font-weight:600;
}

.price-badge{
  background:rgba(201,168,106,0.15);
  color:#c9a86a;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}

.device-switch{
  display:flex;
  gap:6px;
  background:rgba(255,255,255,0.05);
  padding:4px;
  border-radius:10px;
}

.device-btn{
  background:transparent;
  border:none;
  color:rgba(255,255,255,0.5);
  padding:6px 12px;
  border-radius:8px;
  cursor:pointer;
  font-size:14px;
  transition:.2s;
}

.device-btn:hover{color:#fff}

.device-btn.active{
  background:#fff;
  color:#000;
}

.preview-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn-gold{
  background:#c9a86a;
  color:#0a0a0a;
  border:none;
  padding:10px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:.2s;
}

.btn-gold:hover{background:#dcbd82}

.btn-close{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  color:#fff;
  width:34px;
  height:34px;
  border-radius:50%;
  cursor:pointer;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s;
}

.btn-close:hover{background:rgba(255,255,255,0.18)}
/* Transiciones suaves para el marco */
.iframe-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.iframe-wrapper iframe {
  border: none;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

/* Modos de visualización */
.iframe-wrapper.desktop-view iframe {
  width: 100%;
  height: 100%;
}

.iframe-wrapper.tablet-view iframe {
  width: 768px;
  height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

.iframe-wrapper.mobile-view iframe {
  width: 375px;
  height: 85%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}
 /* ===== DISEÑO RESPONSIVO PREMIUM ===== */
 /* ===== DISEÑO RESPONSIVO PREMIUM ===== */
.responsive-section {
  padding: 100px 20px 160px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;

  background-image: url('../assets/fondo-2.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
} 

.responsive-header {
  max-width: 640px;
  margin: 0 auto 60px auto;
}

.eyebrow-gold {
  font-size: 11px;
  letter-spacing: 3px;
  color: #c9a86a;
  font-weight: 600;
}

.responsive-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  margin: 14px 0 12px;
}

.responsive-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}

/* CONTENEDOR CON SUPERPOSICIÓN DE DISPOSITIVOS */
.devices-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-width: 1200px; /* Expandimos el contenedor a los costados */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.device-screen {
  overflow: hidden;
  background: #111;
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* 1. LAPTOP (PROTAGONISTA Y GRANDE EN EL CENTRO) */
.device-laptop {
  width: 620px;
  flex-shrink: 0;
  z-index: 1; /* Fondo respecto a los otros dos dispositivos */
}

.device-laptop .device-screen {
  width: 100%;
  height: 380px;
  border-radius: 14px 14px 0 0;
  border: 9px solid #1a1a1a;
  border-bottom: none;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
}

.laptop-base {
  width: 110%;
  margin-left: -5%;
  height: 16px;
  background: linear-gradient(#2a2a2a, #151515);
  border-radius: 0 0 10px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* 2. TABLET (A LA IZQUIERDA SUPERPUESTA) */
.device-tablet {
  width: 250px;
  flex-shrink: 0;
  z-index: 2;
  margin-right: -70px; /* Superpone a la laptop por la izquierda */
  margin-bottom: 10px;
}

.device-tablet .device-screen {
  height: 340px;
  border-radius: 20px;
  border: 8px solid #1a1a1a;
  box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.8);
}

/* 3. MOBILE (A LA DERECHA SUPERPUESTO) */
.device-mobile {
  width: 160px;
  flex-shrink: 0;
  z-index: 3;
  margin-left: -60px; /* Superpone a la laptop por la derecha */
  margin-bottom: 5px;
}

.device-mobile .device-screen {
  height: 320px;
  border-radius: 26px;
  border: 7px solid #1a1a1a;
  box-shadow: 15px 20px 50px rgba(0, 0, 0, 0.8);
}

/* ADAPTACIÓN PANTALLAS MEDIANAS / MOVILES */
@media (max-width: 950px) {
  .devices-wrap {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .device-laptop, .device-tablet, .device-mobile {
    margin-left: 0;
    margin-right: 0;
  }
  .device-laptop {
    width: 100%;
    max-width: 500px;
  }
  .device-laptop .device-screen {
    height: 300px;
  }
}
/* ===== CÓMO FUNCIONA ===== */
.proceso-section{
  background:#0a0a0a;
  padding:120px 40px;
  border-top:1px solid rgba(255,255,255,0.06);
}

.proceso-header{max-width:640px;margin:0 auto 70px;text-align:center}

.proceso-steps{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
}

.proceso-step{
  padding:0 24px;
  position:relative;
  border-left:1px solid rgba(255,255,255,0.08);
}
.proceso-step:first-child{border-left:none}

.step-num{
  display:block;
  font-size:13px;
  color:#c9a86a;
  letter-spacing:2px;
  font-weight:700;
  margin-bottom:16px;
}

.proceso-step h3{
  color:#fff;
  font-size:17px;
  font-weight:700;
  margin-bottom:10px;
}

.proceso-step p{
  color:rgba(255,255,255,0.55);
  font-size:13.5px;
  line-height:1.6;
}

@media(max-width:1000px){
  .proceso-steps{grid-template-columns:1fr;gap:40px}
  .proceso-step{border-left:none;padding-left:0}
} 
/* Contenedor principal de la sección con fondo dinámico */
 /* Seccion principal */
.contacto-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 8%;
  background-image: url('/assets/dark_rocks_smoke.webp'); /* Tu foto de rocas/humo */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Sombra oscura de fondo */
.contacto-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

/* Grilla/Contenedor de 2 columnas */
.contacto-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

/* --- COLUMNA IZQUIERDA (Texto Grande) --- */
.contacto-info {
  flex: 1;
  color: #ffffff;
}

.contacto-info .eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #a1a1aa; /* Gris claro */
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contacto-info h2 {
  font-size: 3.5rem; /* Bien grande como en Framer */
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contacto-info p {
  font-size: 1.1rem;
  color: #d1d5db; /* Gris suave */
  max-width: 420px;
}

/* --- COLUMNA DERECHA (Formulario Glassmorphism) --- */
.contacto-form {
  width: 100%;
  max-width: 480px;
  padding: 2.5rem;
  border-radius: 16px;

  /* Estilo Vidrio Esmerilado en escala de grises/negro */
  background: rgba(15, 15, 15, 0.65); 
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);

  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Inputs, Select y Textarea */
.contacto-form input,
.contacto-form select,
.contacto-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

/* Placeholder en gris claro */
.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
  color: #888888;
}

/* Al enfocar un campo (borde blanco brillante) */
.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* Fila doble */
.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input {
  flex: 1;
}

/* Desplegable */
.contacto-form select option {
  background-color: #121212;
  color: #ffffff;
}

/* Botón Blanco / Gris oscuro */
.btn-contacto {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-contacto:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}

/* --- ADAPTACIÓN A CELULARES --- */
@media (max-width: 900px) {
  .contacto-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .contacto-info h2 {
    font-size: 2.5rem;
  }

  .contacto-info p {
    margin: 0 auto;
  }

  .form-row {
    flex-direction: column;
  }
}
 /* Contenedor general sin espacios negros raros */
.showcase-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0; /* Sacamos el gap para que las imágenes peguen continuo o manejen su propio espacio */
  padding: 0;
  background-color: #050505;
}
/* Item individual: Pantalla completa impecable (100vh) */
.showcase-item {
  position: relative;
  width: 100%;
  min-height: 100vh; /* Ocupa el 100% del alto de la pantalla */
  display: flex;
  align-items: flex-start; /* Alinea la caja borrosa arriba como en la foto */
  justify-content: center;
  padding: 3rem 5%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px;
  overflow: hidden;
}

/* Asignación de imágenes de fondo (Cambiá las rutas por tus imágenes) */
.bg-banner-1 {
  background-image: url('/assets/stormy_rock_mist_landscape.jpg');
}

.bg-banner-2 {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%), url('/assets/dark_rocks_smoke.webp');
}

.bg-banner-3 {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%), url('/assets/fondo-2.webp');
}

/* Caja Vidrio Esmerilado Horizontal (Tal cual la captura) */
.showcase-glass-card {
  width: 100%;
  max-width: 1200px;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  
  /* Efecto Glassmorphism */
  background: rgba(18, 18, 18, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Contenido de texto dentro de la barra */
.glass-content {
  max-width: 800px;
}

.glass-content .eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #a1a1aa; /* Gris claro */
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.glass-content h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.glass-content h2 em {
  font-style: italic;
  font-weight: 300;
  color: #e4e4e7;
}

.glass-content p {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.5;
  margin: 0;
}

/* Botón flotante blanco dentro del banner */
.btn-glass-banner {
  white-space: nowrap;
  padding: 0.85rem 1.6rem;
  background: #ffffff;
  color: #000000;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-glass-banner:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}

/* Adaptabilidad para Celulares */
@media (max-width: 850px) {
  .showcase-item {
    min-height: 60vh;
    padding: 1.5rem;
  }

  .showcase-glass-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .glass-content h2 {
    font-size: 1.6rem;
  }

  .btn-glass-banner {
    width: 100%;
    text-align: center;
  }
}
/* ===== REDES SOCIALES (misma base que hizo Noe) ===== */
  .social-carousel-section{
    width:100%;
    max-width:1280px;
    margin:60px auto;
    padding:0 20px;
    position:relative;
  }
  .social-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:40px;
  }
  .eyebrow{
    display:block;
    font-size:11px;
    letter-spacing:0.2em;
    color:#777;
    text-transform:uppercase;
    margin-bottom:12px;
  }
  .social-header h2{ font-size:38px; font-weight:400; line-height:1; letter-spacing:-0.02em; margin:0; }
  .social-header h2 em{ font-family:'Instrument Serif', serif; font-style:italic; }
  .header-counter{ font-size:13px; color:#555; letter-spacing:0.1em; }
  .header-counter .countCurrent{ color:#fff; }
 
  .ultra-viewport{
    position:relative;
    width:100%;
    height:480px;
    perspective:2000px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:visible;
  }
  .viewport-meta{
    position:absolute;
    top:0; left:0; right:0;
    display:flex;
    justify-content:space-between;
    padding:0 10px;
    font-size:10px;
    letter-spacing:0.2em;
    color:#555;
    text-transform:uppercase;
  }
  .viewport-meta strong{ color:#fff; font-weight:600; }
 
  .carousel-stage{
    position:relative;
    width:300px;
    height:410px;
    transform-style:preserve-3d;
  }
 
  .social-big-card{
    position:absolute;
    top:0; left:0;
    width:300px;
    height:410px;
    border-radius:22px;
    overflow:hidden;
    cursor:pointer;
    transform-style:preserve-3d;
    transition: all .75s cubic-bezier(.25,1,.5,1);
    will-change: transform, opacity;
    text-decoration:none;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:22px;
    box-shadow:0 25px 80px rgba(0,0,0,.7);
  }
  .card-pos-center{ transform:translateX(0) translateZ(100px) scale(1); z-index:10; opacity:1; }
  .card-pos-left1{  transform:translateX(-190px) translateZ(0) scale(.94); z-index:8; opacity:.92; }
  .card-pos-left2{  transform:translateX(-340px) translateZ(-60px) scale(.88); z-index:6; opacity:.72; }
  .card-pos-right1{ transform:translateX(190px) translateZ(0) scale(.94); z-index:8; opacity:.92; }
  .card-pos-right2{ transform:translateX(340px) translateZ(-60px) scale(.88); z-index:6; opacity:.72; }
  .card-pos-hidden{ transform:translateX(0) translateZ(-200px) scale(.6); z-index:1; opacity:0; pointer-events:none; }
 
  .card-instagram {
  background: linear-gradient(
    135deg, 
    #2d0b5a 0%, 
    #8a2be2 15%, 
    #d6249f 45%, 
    #fd5949 75%, 
    #ff9a00 100%
  );
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(253, 89, 73, 0.35),
    0 0 30px rgba(214, 36, 159, 0.35); /* Glow cálido de Instagram */
}
  .card-facebook {
  background: linear-gradient(
    145deg, 
    #03122e 0%, 
    #0866ff 50%, 
    #1877f2 100%
  );
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(77, 171, 247, 0.3),
    0 0 25px rgba(8, 102, 255, 0.35); /* Glow azul de Facebook */
}
  .card-tiktok {
  background: linear-gradient(
    145deg, 
    #050505 0%, 
    #18030a 35%, 
    #021c1d 70%, 
    #000000 100%
  );
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.85),
    inset 0 0 0 1px rgba(37, 244, 238, 0.4),
    -5px -5px 25px rgba(254, 44, 85, 0.4),  /* Neón Magenta */
    5px 5px 25px rgba(37, 244, 238, 0.4);   /* Neón Cian */
} 
.card-x {
  background: linear-gradient(
    160deg, 
    #000000 0%, 
    #0f0f0f 50%, 
    #1a1a1a 100%
  );
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 25px rgb(129, 129, 129); /* Glow plateado muy sutil */
}
 
  .card-instagram::after,.card-facebook::after,.card-tiktok::after,.card-x::after,.card-portfolio::after{
    content:''; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.55) 100%);
    z-index:1;
  }
  .card-portfolio{ background-size:cover; background-position:center; }
  .card-top,.card-bottom,.card-center{ position:relative; z-index:2; }
 
  .social-badge{
    display:inline-flex; align-items:center; gap:8px;
    background:rgba(255,255,255,.15); backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    padding:6px 12px; border-radius:999px; font-size:12px; font-weight:600;
  }
  .card-center{ margin-top:auto; margin-bottom:auto; }
  .card-center small{ display:block; font-size:11px; letter-spacing:.15em; opacity:.8; margin-bottom:8px; text-transform:lowercase; }
  .card-center h3{ font-size:26px; font-weight:600; line-height:1.1; margin:0; }
  .card-bottom{ display:flex; justify-content:space-between; align-items:center; font-size:13px; }
  .card-bottom .dots{ display:flex; gap:5px; }
  .card-bottom .dots span{ width:6px; height:6px; background:rgba(255,255,255,.4); border-radius:50%; display:block; }
  .card-bottom .dots span.active{ width:18px; background:#fff; border-radius:999px; }
 
  .portfolio-category{ font-size:10px; letter-spacing:.18em; opacity:.7; text-transform:uppercase; margin-bottom:8px; display:block; }
  .portfolio-title{ font-family:'Instrument Serif', serif; font-style:italic; font-size:28px; line-height:.95; }
 
  .controls-outside{
    width:100%; display:flex; justify-content:center; align-items:center; gap:20px;
    margin-top:36px; position:relative; z-index:20;
  }
  .ctrl-btn{
    width:40px; height:40px; border-radius:50%;
    border:1px solid #333; background:#151515; color:#fff;
    display:grid; place-items:center; cursor:pointer; transition:.2s; font-size:18px;
  }
  .ctrl-btn:hover{ background:#fff; color:#000; border-color:#fff; }
  .ctrl-dots{ display:flex; gap:8px; align-items:center; }
  .ctrl-dots i{ width:20px; height:4px; background:#2a2a2a; border-radius:999px; display:block; transition:.35s; cursor:pointer; }
  .ctrl-dots i.active{ background:#fff; width:32px; }
 
  @media(max-width:900px){
    .ultra-viewport{ height:440px; }
    .card-pos-left2,.card-pos-right2{ opacity:0; pointer-events:none; }
  }
  @media(max-width:600px){
    .social-header h2{ font-size:26px; }
    .ultra-viewport{ height:400px; }
    .social-big-card,.carousel-stage{ width:270px; height:370px; }
    .card-pos-left1,.card-pos-right1{ opacity:0; }
  } 
  
 /* ------------------------------ FAQ ----------------- */
 
  .faq-hero{
    position:relative;
    width:100%;
    min-height:100vh;
    /* Placeholder: cambiá esta imagen por tu foto real de fondo (colores suaves) */
    background:
      linear-gradient(180deg, rgba(150,180,180,.35), rgba(120,150,150,.55)),
      url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?w=1600') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px 20px;
    overflow:hidden;
  }
 
  /* logo watermark, tipo el edificio de la referencia */
  .faq-logo-watermark{
    position:absolute;
    right:6%;
    bottom:0;
    width:340px;
    max-width:45vw;
    opacity:.9;
    pointer-events:none;
    filter:drop-shadow(0 20px 40px rgba(0,0,0,.15));
  }
 
  .faq-box{
    position:relative;
    z-index:2;
    width:100%;
    max-width:540px;
  }
 
  .faq-item{
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.6);
    border-radius:22px;
    padding:20px 22px;
    margin-bottom:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:background .3s ease;
  }
  .faq-item.open{ background:rgba(255,255,255,.8); }
 
  .faq-q{
    width:100%;
    background:none;
    border:none;
    padding:0;
    margin:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    text-align:left;
    font-size:15px;
    font-weight:600;
    color:#141414;
    cursor:pointer;
  }
 
  .faq-toggle{
    flex-shrink:0;
    width:32px; height:32px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.12);
    display:flex; align-items:center; justify-content:center;
    font-size:15px; color:#333;
    transition:transform .3s ease;
  }
  .faq-item.open .faq-toggle{ transform:rotate(45deg); }
 
  .faq-a{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease, margin-top .35s ease;
    margin-top:0;
  }
  .faq-item.open .faq-a{ margin-top:12px; }
  .faq-a p{
    margin:0;
    font-size:14px;
    line-height:1.6;
    color:#3a3a3a;
  }
 
  @media(max-width:600px){
    .faq-logo-watermark{ display:none; }
  }
 
  /* ===== SOBRE MÍ ===== */
  .about-section{ margin-top:110px; }
  .about-grid{
    display:grid; grid-template-columns:220px 1fr; gap:44px; align-items:start;
  }
  .about-photo{
    width:220px; height:220px; border-radius:50%;
    background:linear-gradient(155deg,#1a1a1a,#2a2210);
    border:1px solid rgba(232,180,90,.35);
    display:flex; align-items:center; justify-content:center;
    font-family:'Instrument Serif', serif; font-style:italic; font-size:15px; color:#666;
    text-align:center; padding:10px;
  }
  .about-text p{ font-size:16px; line-height:1.75; color:#c9c9c9; margin:0 0 18px; }
  .about-text strong{ color:#fff; font-weight:600; }
  .about-text em{ font-family:'Instrument Serif', serif; font-style:italic; color:#e8b45a; }
  .about-signature{ margin-top:26px; font-family:'Instrument Serif', serif; font-style:italic; font-size:22px; color:#e8b45a; }
 
  @media(max-width:640px){
    .about-grid{ grid-template-columns:1fr; }
    .about-photo{ margin:0 auto; }
  } 
  /* ===== GALERIA ===== */
 /* ========= GALERIA FIX - FONDO FACIL DE CAMBIAR ========= */
#nm-galeria-3d {
  /* CAMBIA ACA TU FONDO - Pega tu imagen */
  --nm-bg-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2000&auto=format&fit=crop');
  /* Si no queres imagen, deja esto vacio: --nm-bg-image: none; */

  position: relative;
  width: 100%;
  min-height: 900px;
  overflow: hidden;
  background: #e8f0f8;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #0f172a;
  user-select: none;
  isolation: isolate;
  z-index: 1;
}

/* FONDO - ACA SE CAMBIA */
#nm-galeria-3d .nm-bg-sky{
  position: absolute; inset: 0;
  /* Si hay imagen, la usa. Si no, usa degradado */
  background-image: var(--nm-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
/* Si no tenes imagen, se muestra este degradado por defecto detras */
#nm-galeria-3d .nm-bg-sky::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 600px at 50% -10%, #ffffff 0%, #dbeafe 22%, #bfdbfe 38%, transparent 70%),
    linear-gradient(to bottom, #eaf3ff 0%, #dbeafe 30%, #cbd5e1 55%, #e0e7ef 100%);
  z-index: -1;
}

/* Montañas blancas decorativas - podes borrarlas si pones tu propia foto */
#nm-galeria-3d .nm-mountains{ position:absolute; left:-10%; right:-10%; bottom:-2%; height:68%; pointer-events:none; z-index:0; opacity:0.9; }
#nm-galeria-3d .nm-mount-layer{ position:absolute; bottom:0; width:100%; height:100%; }
#nm-galeria-3d .nm-mount-layer.back{
  clip-path: polygon(0% 82%, 8% 68%, 18% 74%, 28% 56%, 38% 64%, 48% 42%, 58% 58%, 68% 48%, 78% 62%, 88% 52%, 100% 68%, 100% 100%, 0% 100%);
  background: linear-gradient(to top, #94a3b8 0%, #cbd5e1 70%);
  opacity:0.25; filter: blur(0.5px); transform: scaleX(1.05);
}
#nm-galeria-3d .nm-mount-layer.front{
  clip-path: polygon(0% 78%, 12% 62%, 22% 68%, 32% 52%, 44% 60%, 54% 38%, 66% 54%, 76% 44%, 86% 58%, 94% 50%, 100% 62%, 100% 100%, 0% 100%);
  background: linear-gradient(to top, #e2e8f0 0%, #f1f5f9 55%, #e0f2fe 100%);
}
#nm-galeria-3d .nm-snow-haze{
  position:absolute; inset:0;
  background: radial-gradient(800px 400px at 50% 20%, rgba(255,255,255,0.7) 0%, transparent 60%),
              linear-gradient(to top, rgba(255,255,255,0.6) 0%, transparent 35%);
}
#nm-galeria-3d .nm-floor-shadow{
  position:absolute; left:50%; bottom:8%; transform:translateX(-50%);
  width:78%; max-width:900px; height:18%;
  background: radial-gradient(ellipse at center, rgba(15,23,42,0.08) 0%, transparent 70%);
  filter: blur(18px); pointer-events:none; z-index:1;
}
#nm-galeria-3d .nm-galeria-header{
  position:relative; z-index:20;
  max-width:1400px; margin:0 auto;
  padding:28px 24px 0;
  display:flex; justify-content:space-between; align-items:flex-start;
}
#nm-galeria-3d .nm-brand-dot{ width:32px; height:32px; border-radius:999px; background:#0f172a; display:grid; place-items:center; }
#nm-galeria-3d .nm-brand-dot i{ width:8px; height:8px; border-radius:50%; background:white; display:block }
#nm-galeria-3d .nm-kicker{ font-size:11px; letter-spacing:0.22em; font-weight:600; opacity:0.8; text-transform:uppercase; display:flex; align-items:center; gap:12px }
#nm-galeria-3d .nm-h-title{ margin-top:12px; font-size:26px; font-weight:650; line-height:0.95; letter-spacing:-0.03em; }
#nm-galeria-3d .nm-h-title em{ font-weight:300; font-style:italic }
#nm-galeria-3d .nm-header-right{ text-align:right; font-size:11px; letter-spacing:0.18em; text-transform:uppercase; opacity:0.6; display:none }
#nm-galeria-3d .nm-header-right span{ font-size:13px; letter-spacing:0; text-transform:none; opacity:0.8; font-weight:500 }
@media(min-width:768px){ #nm-galeria-3d .nm-header-right{display:block} #nm-galeria-3d .nm-galeria-header{padding:32px 40px 0} #nm-galeria-3d .nm-h-title{font-size:30px} }

#nm-galeria-3d .nm-stage{
  position:relative; z-index:10;
  width:100%; height:650px;
  display:flex; align-items:center; justify-content:center;
  perspective:1200px;
  touch-action:none;
  cursor:grab;
}
#nm-galeria-3d .nm-stage:active{ cursor:grabbing }
@media(min-width:768px){ #nm-galeria-3d .nm-stage{height:700px} }
#nm-galeria-3d .nm-cylinder{ position:relative; width:320px; height:480px; transform-style:preserve-3d; will-change:transform; }
#nm-galeria-3d .nm-card-wrap{
  position:absolute; left:50%; top:50%;
  width:300px; height:440px;
  margin-left:-150px; margin-top:-220px;
  transform-style:preserve-3d;
}
@media(min-width:768px){ #nm-galeria-3d .nm-card-wrap{width:340px; height:500px; margin-left:-170px; margin-top:-250px} }
#nm-galeria-3d .nm-card{
  position:relative; width:100%; height:100%;
  border-radius:16px; overflow:hidden;
  background:#111;
  box-shadow: 0 20px 80px rgba(15,23,42,0.28), 0 2px 0 1px rgba(255,255,255,0.06) inset;
  border:1px solid rgba(255,255,255,0.08);
}
#nm-galeria-3d .nm-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
#nm-galeria-3d .nm-card::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(to top, #0a0a0a 0%, rgba(10,10,10,0.6) 45%, transparent 85%),
              linear-gradient(to bottom, rgba(0,0,0,0.2), transparent 40%);
}
#nm-galeria-3d .nm-card-top{ position:relative; z-index:2; display:flex; justify-content:space-between; align-items:center; padding:18px; }
#nm-galeria-3d .nm-pill{ display:inline-flex; align-items:center; gap:6px; border-radius:999px; background:rgba(255,255,255,0.9); padding:4px 10px; font-size:10px; font-weight:700; letter-spacing:0.12em; color:#000; }
#nm-galeria-3d .nm-pill-dot{ width:6px; height:6px; border-radius:50%; background:#10b981 }
#nm-galeria-3d .nm-price{ border-radius:999px; background:rgba(0,0,0,0.5); backdrop-filter: blur(8px); border:1px solid rgba(255,255,255,0.15); padding:4px 10px; font-size:10px; color:rgba(255,255,255,0.8); }
#nm-galeria-3d .nm-card-bottom{ position:absolute; z-index:2; left:0; right:0; bottom:0; padding:20px; }
@media(min-width:768px){ #nm-galeria-3d .nm-card-bottom{padding:22px} }
#nm-galeria-3d .nm-card-kicker{ display:flex; align-items:center; gap:8px; margin-bottom:12px; }
#nm-galeria-3d .nm-card-kicker line{ display:block; width:24px; height:1px; background:rgba(255,255,255,0.4) }
#nm-galeria-3d .nm-card-kicker span{ font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.6) }
#nm-galeria-3d .nm-card-title{ font-size:28px; font-weight:600; line-height:0.95; letter-spacing:-0.02em; color:white; }
@media(min-width:768px){ #nm-galeria-3d .nm-card-title{font-size:30px} }
#nm-galeria-3d .nm-card-sub{ margin-top:8px; font-size:12.5px; line-height:1.4; color:rgba(255,255,255,0.6); font-weight:450 }
#nm-galeria-3d .nm-card-actions{ margin-top:20px; display:flex; align-items:center; gap:12px }
#nm-galeria-3d .nm-btn-primary{ height:36px; border-radius:999px; background:white; color:black; padding:0 16px; font-size:12px; font-weight:600; border:none; cursor:pointer; }
#nm-galeria-3d .nm-btn-icon{ height:36px; width:36px; border-radius:999px; background:rgba(255,255,255,0.1); backdrop-filter: blur(8px); border:1px solid rgba(255,255,255,0.15); display:grid; place-items:center; color:white; cursor:pointer; }
#nm-galeria-3d .nm-card-index{ margin-left:auto; font-size:11px; color:rgba(255,255,255,0.4); }
#nm-galeria-3d .nm-card-divider{ margin-top:20px; height:1px; width:100%; background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0.05), transparent) }
#nm-galeria-3d .nm-card-dots{ margin-top:12px; display:flex; gap:6px }
#nm-galeria-3d .nm-dot{ height:4px; border-radius:999px; background:rgba(255,255,255,0.2) }
#nm-galeria-3d .nm-dot.active{ width:32px; background:rgba(255,255,255,0.8) }
#nm-galeria-3d .nm-dot.inactive{ width:4px }
#nm-galeria-3d .nm-hint{ position:relative; z-index:10; max-width:1400px; margin:0 auto; padding:0 24px 40px; font-size:11px; color:rgba(15,23,42,0.5); text-align:center; }
/*--FOOTER--*/
.nm-footer{
  position: relative;
  width: 100%;
  height: 750px;
  background: url('/assets/nazli-footer.webp') center/cover no-repeat;
  background-color: #08080a;
  color: #fff;
  padding: 40px 6% 24px; /* Reduje el padding superior */
  overflow: hidden;
  box-sizing: border-box;
}

.nm-footer::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(0,0,0,0.98) 0%, 
    rgba(0,0,0,0.85) 30%, 
    rgba(0,0,0,0.3) 60%, 
    transparent 85%
  );
  z-index: 1;
}

/* Forzar que el contenedor ocupe el 100% de la altura del footer */
.nm-footer-inner{ 
  position: relative; 
  z-index: 2; 
  max-width: 1400px; 
  margin: 0 auto; 
  height: 100%; /* Ocupa los 750px del padre */
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Empuja el contenido al fondo de los 750px */
  box-sizing: border-box;
}

.nm-footer-top{ 
  display: flex; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  gap: 40px; 
}

.nm-footer-brand h3{ font-size: 32px; font-weight: 700; }
.nm-footer-brand p{ color: #a1a1aa; margin: 12px 0 20px; line-height: 1.5; }

.nm-socials{ display: flex; gap: 12px; }
.nm-socials a{ width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: grid; place-items: center; font-size: 12px; }

.nm-footer-links{ display: flex; gap: 80px; }
.nm-footer-links h4{ margin-bottom: 16px; font-weight: 600; }
.nm-footer-links a{ display: block; color: #a1a1aa; margin-bottom: 10px; text-decoration: none; }
.nm-footer-links a:hover{ color: #fff; }

.nm-footer-bottom{ 
  border-top: 1px solid rgba(255,255,255,.1); 
  margin-top: 30px; 
  padding-top: 20px; 
  display: flex; 
  justify-content: space-between; 
  color: #71717a; 
  font-size: 13px; 
} 