:root {
  /* Paleta premium */
  --bg: #0A0A0A; /* negro profundo */
  --text: #FFFFFF; /* blanco puro */
  --muted: #E8E8E8; /* gris perla */
  --gold: #D4AF37; /* oro champagne */
  --gold-2: #F4D03F; /* variación dorada para gradiente */
  --glass: rgba(10,10,10,0.55);
  --line: rgba(212,175,55,0.35);
  --shadow: 0 20px 40px rgba(0,0,0,0.45);
  --radius: 28px;
  --container: min(1200px, 92%);
  /* Vars dinámicas para parallax */
  --mx: 50%;
  --my: 50%;
}

* { box-sizing: border-box; }
html, body { 
  height: 100%; 
  width: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", "Noto Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Bloqueo de scroll cuando age gate activo */
.agegate-active {
  overflow: hidden;
}
img { display: block; max-width: 100%; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 80px 0; }

/* Secciones de carrusel necesitan más espacio superior para efectos hover */
.featured-section {
  padding: 0 0 80px 0;
  margin-top: 0;
  overflow: visible;
}

.premium-select-section,
.creators-section,
.section.carousel-section {
  padding: 100px 0 80px 0;
  overflow: visible;
}

.section-subtitle { color: var(--muted); margin-top: -8px; }

/* Tipografía */
h1, h2, h3 { font-family: "Playfair Display", serif; }
.hero-subtitle, .site-nav a, .btn, .footer-links a { font-family: Montserrat, Inter, sans-serif; }

/* Encabezados de sección */
.section-header { text-align: center; }
.section-title { font-size: 40px; line-height: 1.2; letter-spacing: -0.01em; margin: 0; }
.section-header::before { content: ""; display: block; width: 64px; height: 1px; margin: 0 auto 16px; background: var(--line); }
.section-header::after { content: ""; display: block; width: 48px; height: 1px; margin: 16px auto 0; background: var(--line); }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; backdrop-filter: saturate(140%) blur(12px); background: var(--glass); border-bottom: 1px solid rgba(255,255,255,0.06); z-index: 100; }
.header-inner { display: flex; align-items: center; gap: 16px; justify-content: space-between; padding: 14px 0; }
.logo { display: inline-flex; align-items: center; color: var(--text); text-decoration: none; }
.logo img { width: 56px; height: 56px; object-fit: contain; }
.site-nav ul { list-style: none; display: flex; gap: 40px; padding: 0; margin: 0; align-items: center; }
.site-nav a { color: var(--text); text-decoration: none; opacity: 0.95; position: relative; }
.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -6px; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width 300ms ease;
}
.site-nav .nav-link:hover::after { width: 100%; }
.site-nav .nav-cta { padding: 10px 16px; border-radius: 22px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); color: #0A0A0A; box-shadow: 0 10px 30px rgba(212,175,55,0.35); border: none; transition: transform 300ms ease, box-shadow 300ms ease; }
.site-nav .nav-cta:hover { transform: scale(1.05); box-shadow: 0 16px 40px rgba(212,175,55,0.55); }

/* Botón Foro */
.btn-foro {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #E8E8E8;
  padding: 10px 24px;
  border-radius: 20px;
  background: transparent;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 300ms ease;
  display: inline-block;
}

.btn-foro:hover {
  background: rgba(212,175,55,0.1);
  color: #D4AF37;
  border-bottom-color: #D4AF37;
}

/* ========== FILTRO DE PERFILES ========== */
.filter-section {
  padding: 16px 0 8px 0;
  margin-top: 80px;
  margin-bottom: 0;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.filter-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: #D4AF37;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 200ms;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.filter-toggle:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
}

.filter-toggle.active .filter-arrow {
  transform: rotate(180deg);
}

.filter-arrow {
  margin-left: auto;
  transition: transform 200ms;
}

.filter-panel {
  display: none; /* Oculto por defecto, JS lo muestra */
  margin-top: 16px;
  padding: 20px;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  animation: slideDown 200ms ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888888;
}

.filter-select {
  padding: 12px 16px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 200ms;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.filter-select:hover,
.filter-select:focus {
  border-color: rgba(212, 175, 55, 0.5);
  outline: none;
}

.filter-select option {
  background: #1a1a1a;
  color: #FFFFFF;
}

.filter-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms;
  border: none;
}

.filter-btn-apply {
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  color: #0A0A0A;
}

.filter-btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.filter-btn-clear {
  background: rgba(255, 255, 255, 0.1);
  color: #888888;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-btn-clear:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.active-filters {
  display: none; /* Oculto por defecto, JS lo muestra con display: flex */
  margin-top: 12px;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.active-filters-label {
  font-size: 12px;
  color: #888888;
}

.filter-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  font-size: 12px;
  color: #D4AF37;
}

.filter-tag-remove {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 200ms;
}

.filter-tag-remove:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .filter-toggle {
    max-width: 100%;
  }
  
  .filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .filter-actions {
    flex-direction: column;
  }
  
  .filter-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== FILTRO DE MENCIONES SALA OSCURA ========== */
.mention-filter-section {
  margin-bottom: 20px;
  padding: 0 24px;
}

.mention-filter-container {
  max-width: 600px;
}

.mention-search-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 8px 12px;
  transition: all 200ms;
}

.mention-search-wrapper:focus-within {
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.1);
}

.mention-search-icon {
  color: #D4AF37;
  font-size: 18px;
  font-weight: 600;
}

.mention-filter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 14px;
  font-family: inherit;
}

.mention-filter-input::placeholder {
  color: #666;
}

.mention-filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms;
}

.mention-filter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

.mention-filter-active {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mention-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  color: #D4AF37;
  font-size: 13px;
}

.mention-filter-clear {
  background: none;
  border: none;
  color: #D4AF37;
  cursor: pointer;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 200ms;
  padding: 0;
  line-height: 1;
}

.mention-filter-clear:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .mention-filter-section {
    padding: 0 16px;
  }
  
  .mention-search-wrapper {
    flex-wrap: wrap;
  }
  
  .mention-filter-input {
    width: 100%;
    order: 1;
  }
  
  .mention-filter-btn {
    width: 100%;
    justify-content: center;
    order: 2;
    margin-top: 8px;
  }
}

.btn-foro.active {
  background: rgba(212,175,55,0.15);
  color: #D4AF37;
}

.nav-toggle { display: none; background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.2); padding: 8px 12px; border-radius: 10px; }

/* Hero premium */
.hero { position: relative; min-height: 100vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(900px 600px at var(--mx) var(--my), rgba(255,255,255,0.06), transparent 50%), linear-gradient(180deg, rgba(255,255,255,0.03), transparent 60%); will-change: background; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.hero-content { position: relative; z-index: 1; padding-top: 96px; }
.hero-title { font-size: 72px; line-height: 1.2; letter-spacing: -0.02em; margin: 0; opacity: 0; transform: translateY(12px); animation: fadeUp 500ms ease forwards; }
.hero-subtitle { margin-top: 32px; color: var(--muted); font-size: 24px; }
.hero-actions { margin-top: 48px; display: flex; gap: 12px; justify-content: center; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Botón CTA dorado */
.btn { display: inline-flex; align-items: center; justify-content: center; color: var(--text); text-decoration: none; border: 1px solid rgba(255,255,255,0.08); padding: 10px 16px; border-radius: 12px; transition: transform 0.15s ease, background 0.2s, box-shadow 0.2s; }
.btn:hover { transform: translateY(-1px); }
.btn.cta-gold { width: 180px; height: 56px; border-radius: var(--radius); font-weight: 700; font-size: 18px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); color: #1a1a1a; border-color: transparent; box-shadow: 0 10px 30px rgba(212,175,55,0.35); transition: transform 300ms ease, box-shadow 300ms ease; }
.btn.cta-gold:hover { transform: scale(1.05); box-shadow: 0 16px 40px rgba(212,175,55,0.55); }
.btn.small { padding: 8px 12px; font-size: 0.95rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 22px; box-shadow: var(--shadow); opacity: 0; transform: translateY(8px); transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.card.in-view { opacity: 1; transform: translateY(0); }
.card:hover { border-color: rgba(212,175,55,0.45); box-shadow: 0 16px 40px rgba(212,175,55,0.12), var(--shadow); }
.card h3 { margin: 0; }
.features { color: var(--muted); padding-left: 18px; }
.features li { margin: 6px 0; }
.card-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.price { font-weight: 700; color: var(--gold); }

/* About */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 16px; text-align: center; }
.stat strong { font-size: 1.6rem; display: block; }
.stat span { color: var(--muted); }

/* Form */
.form { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.form-grid label { display: grid; gap: 8px; }
.form-grid .span-2 { grid-column: span 2; }
input, textarea { width: 100%; background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid rgba(255,255,255,0.16); border-radius: 12px; padding: 10px 12px; }
input::placeholder, textarea::placeholder { color: #8b90a0; }
input:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.25); }
.form-actions { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.form-hint { color: var(--muted); font-size: 0.95rem; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.02); position: relative; z-index: 1; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
.footer-copy { color: var(--muted); }
.footer-links { display: flex; gap: 14px; }
.footer-links a { color: var(--text); text-decoration: none; opacity: 0.85; position: relative; }
.footer-links a::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -4px; height: 2px; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transition: width 300ms ease; }
.footer-links a:hover::after { width: 100%; }

/* Indicador de scroll */
.scroll-indicator { position: absolute; left: 50%; transform: translateX(-50%); bottom: 40px; width: 24px; height: 24px; display: grid; place-items: center; z-index: 1; }
.chevron { width: 12px; height: 12px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); animation: bounce 1.2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(45deg); opacity: 1; }
  50% { transform: translateY(6px) rotate(45deg); opacity: 0.8; }
}

/* Age Gate VIP */
.agegate { position: fixed; inset: 0; z-index: 9999; display: none; place-items: center; background: rgba(0,0,0,0.95); }
.agegate[aria-hidden="false"] { display: grid; }
.agegate-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.95); }
.agegate-modal { position: relative; width: 480px; max-width: 92vw; height: 360px; background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%); border: 1px solid #D4AF37; border-radius: 16px; box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2); display: flex; flex-direction: column; align-items: center; padding: 28px 40px 18px; animation: agegateIn 400ms ease forwards; }
.agegate-modal.closing { animation: agegateOut 400ms ease forwards; }
.agegate-icon { margin-top: 8px; color: #D4AF37; width: 48px; height: 48px; }
.agegate-title { margin: 20px 0 0; font-family: "Playfair Display", serif; font-weight: 700; font-size: 32px; color: #FFFFFF; text-align: center; }
.agegate-desc { margin: 14px 0 0; font-family: Inter, sans-serif; font-size: 16px; font-weight: 400; color: #E8E8E8; line-height: 1.6; text-align: center; padding: 0 32px; }
.agegate-actions { margin-top: 24px; display: flex; gap: 16px; justify-content: center; }
.btn-age { width: 200px; height: 52px; border-radius: 26px; font-family: Montserrat, sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 300ms ease; }
.btn-age-accept { border: none; background: linear-gradient(135deg, #D4AF37, #F4D03F); color: #0A0A0A; box-shadow: 0 10px 30px rgba(212,175,55,0.35); }
.btn-age-accept:hover { transform: scale(1.03); box-shadow: 0 16px 40px rgba(212,175,55,0.55); }
.btn-age-decline { border: 2px solid #E8E8E8; background: transparent; color: #E8E8E8; font-weight: 600; }
.btn-age-decline:hover { border-color: #DC2626; color: #DC2626; transform: scale(1.03); }
.agegate-legal { margin-top: 14px; margin-bottom: 6px; text-align: center; font-family: Inter, sans-serif; font-size: 11px; color: #888888; }
.agegate-status { margin-top: 8px; min-height: 18px; color: #E8E8E8; font-size: 13px; text-align: center; }

@keyframes agegateIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes agegateOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.96); } }

/* Cursor personalizado */
.cursor { position: fixed; top: 0; left: 0; width: 20px; height: 20px; border: 2px solid var(--gold); border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 999; transition: width 0.15s ease, height 0.15s ease, background 0.2s ease, border-color 0.2s ease; mix-blend-mode: normal; }
.cursor.hover { width: 28px; height: 28px; background: rgba(212,175,55,0.15); }

/* Líneas decorativas sutiles */
.hero-content::before { content: ""; display: block; width: 80px; height: 1px; margin: 0 auto 18px; background: var(--line); }
.hero-content::after { content: ""; display: block; width: 60px; height: 1px; margin: 18px auto 0; background: var(--line); }

/* Login Modal */
.login-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; }
.login-modal[aria-hidden="false"] { display: flex; }
.login-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); animation: fadeIn 300ms ease; }
.login-container { position: relative; width: 100%; max-width: 400px; background: linear-gradient(180deg, #0A0A0A, #1A1A1A); border: 1px solid var(--gold); border-radius: 16px; padding: 32px; box-shadow: 0 20px 50px rgba(212,175,55,0.2); animation: scaleIn 400ms cubic-bezier(0.34, 1.56, 0.64, 1); }
.login-close { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: transparent; border: none; color: var(--text); font-size: 24px; cursor: pointer; opacity: 0.7; transition: opacity 200ms ease; }
.login-close:hover { opacity: 1; }
.login-title { margin: 0 0 24px 0; font-family: "Playfair Display", serif; font-size: 28px; font-weight: 700; color: var(--text); }
.login-form { display: grid; gap: 18px; }
.login-field { display: grid; gap: 8px; }
.login-label { font-size: 13px; font-weight: 600; color: var(--muted); }
.login-field input { width: 100%; background: rgba(255,255,255,0.08); color: var(--text); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 12px; font-size: 15px; transition: border-color 200ms ease, box-shadow 200ms ease; }
.login-field input::placeholder { color: #666; }
.login-field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.25); }
.login-checkbox { display: flex; align-items: center; gap: 8px; margin: 8px 0; }
.login-checkbox input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--gold); }
.login-checkbox label { font-size: 14px; color: var(--muted); cursor: pointer; }
.login-signup { margin-top: 16px; text-align: center; font-size: 13px; color: var(--muted); }
.login-signup a { color: var(--gold); text-decoration: none; font-weight: 600; transition: opacity 200ms ease; }
.login-signup a:hover { opacity: 0.8; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Experiencias Grid */
.experiencias-container { width: var(--container); margin: 0 auto; padding: 0 48px; max-width: 1600px; }
.experiencias-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.filters-bar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.filter-select { background: rgba(0,0,0,0.4); border: 1px solid var(--gold); color: var(--text); padding: 10px 14px; border-radius: 20px; cursor: pointer; font-size: 13px; font-family: Inter, sans-serif; font-weight: 600; transition: all 200ms ease; }
.filter-select:hover { background: rgba(212,175,55,0.1); box-shadow: 0 4px 12px rgba(212,175,55,0.2); }
.filter-select:focus { outline: none; background: rgba(212,175,55,0.15); }
.filter-select option { background: var(--bg); color: var(--text); }
.btn-reset-filters { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: var(--text); padding: 10px 14px; border-radius: 20px; cursor: pointer; font-size: 13px; font-weight: 600; transition: all 200ms ease; }
.btn-reset-filters:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }

/* ===== FILTROS ===== */
.filters-sticky {
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 998;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 1rem 2rem;
}

.filters-row-compact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.filter-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.filter-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-select:hover,
.filter-select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  outline: none;
}

.pill-group {
  display: flex;
  gap: 0.5rem;
}

.pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pill:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

.pill.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.search-block {
  flex: 1;
  min-width: 200px;
}

.search-block input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.search-block input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  outline: none;
}

.filters-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.active-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1;
}

.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  padding: 0.4rem 0.8rem;
  border-radius: 16px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.chip-remove {
  background: transparent;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  margin-left: 4px;
}

.chip-remove:hover {
  color: var(--light);
}

.filters-counter {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.btn-reset-filters {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 16px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reset-filters:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

/* Grid de experiencias permanece igual */

.experiencias-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.experiencias-card { 
  position: relative; 
  aspect-ratio: 1 / 1; 
  width: 100%;
  border-radius: 12px; 
  overflow: hidden; 
  cursor: pointer; 
  border: 2px solid rgba(40, 40, 40, 1);
  box-shadow: 0 0 0 1px rgba(80, 80, 80, 0.3), inset 0 0 0 1px rgba(100, 100, 100, 0.2), 0 4px 12px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.experiencias-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.4), 0 8px 24px rgba(212, 175, 55, 0.2), 0 12px 32px rgba(0, 0, 0, 0.6);
}
.experiencias-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.experiencias-card:hover .experiencias-card-img { transform: scale(1.08); }

.experiencias-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 60%); z-index: 1; }
.experiencias-badge { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.75); backdrop-filter: blur(8px); padding: 8px 12px; border-radius: 20px; border: 1px solid rgba(212,175,55,0.3); color: white; font-size: 13px; font-weight: 600; z-index: 2; }

.experiencias-status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  color: #0A0A0A;
  z-index: 2;
}

.experiencias-badges-container {
  position: absolute;
  top: 40px;
  left: 12px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.experiencias-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; }
.experiencias-price { font-family: Montserrat, sans-serif; font-size: 24px; font-weight: 700; color: var(--gold); text-shadow: 0 2px 8px rgba(0,0,0,0.5); margin-bottom: 8px; }

.experiencias-action { display: none; /* Oculto por petición del usuario */ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0; transition: opacity 300ms ease; z-index: 3; }
.experiencias-card:hover .experiencias-action { opacity: 1; }
.experiencias-action .btn { padding: 10px 20px; font-size: 13px; }

/* Skeleton Loader */
.skeleton-loader { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; position: relative; }
.skeleton-card { 
  aspect-ratio: 1 / 1; 
  background: rgba(30, 30, 30, 1);
  border: 2px solid rgba(40, 40, 40, 1);
  border-radius: 12px; 
  position: relative;
  overflow: hidden;
}
.skeleton-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

/* Elementos del skeleton */
.skeleton-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 80px;
  height: 32px;
  background: rgba(50, 50, 50, 1);
  border-radius: 16px;
  z-index: 1;
}
.skeleton-price {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 120px;
  height: 28px;
  background: rgba(50, 50, 50, 1);
  border-radius: 8px;
  z-index: 1;
}

@keyframes shimmer { 
  0% { left: -100%; } 
  100% { left: 100%; } }

/* Animación de aparición con stagger */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.experiencias-card.animate,
.publication-card.animate {
  animation: fadeInUp 500ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

/* Efecto escalonado (stagger) */
.experiencias-card.animate:nth-child(1),
.publication-card.animate:nth-child(1) { animation-delay: 0ms; }
.experiencias-card.animate:nth-child(2),
.publication-card.animate:nth-child(2) { animation-delay: 80ms; }
.experiencias-card.animate:nth-child(3),
.publication-card.animate:nth-child(3) { animation-delay: 160ms; }
.experiencias-card.animate:nth-child(4),
.publication-card.animate:nth-child(4) { animation-delay: 240ms; }
.experiencias-card.animate:nth-child(5),
.publication-card.animate:nth-child(5) { animation-delay: 320ms; }
.experiencias-card.animate:nth-child(6),
.publication-card.animate:nth-child(6) { animation-delay: 400ms; }
.experiencias-card.animate:nth-child(7),
.publication-card.animate:nth-child(7) { animation-delay: 480ms; }
.experiencias-card.animate:nth-child(8),
.publication-card.animate:nth-child(8) { animation-delay: 560ms; }

.load-more-btn { display: block; margin: 0 auto; }

/* Responsive */
@media (max-width: 1199px) {
  .publications-grid,
  .experiencias-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .skeleton-loader { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .experiencias-container { padding: 0 32px; }
}
@media (max-width: 991px) {
  .publications-grid,
  .experiencias-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .skeleton-loader { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .experiencias-container { padding: 0 24px; }
  
  .card-price,
  .experiencias-price { font-size: 24px; }
  
  .card-media-badge,
  .experiencias-badge { padding: 6px 10px; font-size: 11px; }
}
@media (max-width: 767px) {
  .experiencias-container { padding: 0 16px; max-width: 100%; }
  .publications-grid,
  .experiencias-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .skeleton-loader { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  
  .card-price,
  .experiencias-price { font-size: 18px; margin-bottom: 4px; }
  
  .card-info,
  .experiencias-info { padding: 12px; }
  
  .card-media-badge,
  .experiencias-badge { top: 8px; right: 8px; padding: 6px 10px; font-size: 10px; }
  
  /* En móvil, botón siempre visible pero más pequeño */
  .card-action-button,
  .experiencias-action { 
    display: none; /* Oculto por petición del usuario */
    opacity: 1;
    width: 90px;
    height: 32px;
    font-size: 12px;
    bottom: 12px;
    top: auto;
    transform: translate(-50%, 0);
  }
  
  .publication-card:hover .card-action-button,
  .experiencias-card:hover .experiencias-action {
    transform: translate(-50%, 0) scale(0.95);
  }
}

@media (max-width: 576px) {
  .experiencias-card-img { border-radius: 8px; }
}

/* Featured Section / Destacados */
.featured-section,
.luxury-section {
  margin: 16px auto 40px auto;
  padding: 0 48px;
  max-width: 1600px;
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, rgba(212,175,55,0.03) 0%, transparent 100%);
  overflow: hidden;
}

.luxury-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 12px auto;
  padding: 0 40px;
}

.luxury-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 48px;
  background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 50%, #C4941F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-shadow: 0 0 40px rgba(212,175,55,0.15);
  margin: 0 24px;
  white-space: nowrap;
}

.decorative-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212,175,55,0.6),
    transparent
  );
  max-width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
  .luxury-title {
    font-size: 32px;
    margin: 0 16px;
  }
  
  .decorative-line {
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .luxury-header {
    margin: 8px auto 12px auto;
  }
  
  .luxury-title {
    font-size: 28px;
  }
  
  .decorative-line {
    display: none; /* Ocultar líneas en móvil muy pequeño */
  }
}

.featured-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

.featured-carousel-wrapper,
.vip-carousel-container {
  position: relative;
  padding: 40px 20px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

/* GRID VERTICAL - 3 columnas en PC, scroll vertical como la página */
.featured-carousel,
.vip-carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-card,
.vip-card {
  /* Tamaño responsivo - ocupa toda la columna del grid */
  width: 100%;
  aspect-ratio: 2/3;
  height: auto;

  /* Layout */
  position: relative;
  border-radius: 16px;
  cursor: pointer;
  background: #0A0A0A;
  overflow: hidden;

  /* Animación de entrada */
  opacity: 0;
  animation: fadeInScale 600ms cubic-bezier(0.4, 0, 0.2, 1) forwards;

  /* Transición suave */
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Asegurar que el contenido no se desborde */
  contain: layout style paint;
}

/* Inner container - foto ocupa todo */
.featured-card-inner,
.vip-card-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Pseudo-elemento para el borde animado */
.featured-card::before,
.vip-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(40, 40, 40, 1),
    rgba(212, 175, 55, 1),
    rgba(244, 208, 63, 1),
    rgba(212, 175, 55, 1),
    rgba(40, 40, 40, 1)
  );
  background-size: 300% 300%;
  animation: borderRotate 6s linear infinite;
  z-index: -1;
  filter: blur(1px);
}

/* Fondo negro sólido */
.featured-card::after,
.vip-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: #0A0A0A;
  z-index: -1;
}

@keyframes borderRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Stagger para cada tarjeta VIP */
.featured-card:nth-child(1),
.vip-card:nth-child(1) { animation-delay: 0ms; }
.featured-card:nth-child(2),
.vip-card:nth-child(2) { animation-delay: 150ms; }
.featured-card:nth-child(3),
.vip-card:nth-child(3) { animation-delay: 300ms; }
.featured-card:nth-child(4),
.vip-card:nth-child(4) { animation-delay: 450ms; }
.featured-card:nth-child(5),
.vip-card:nth-child(5) { animation-delay: 600ms; }
.featured-card:nth-child(6),
.vip-card:nth-child(6) { animation-delay: 750ms; }
.featured-card:nth-child(7),
.vip-card:nth-child(7) { animation-delay: 900ms; }
.featured-card:nth-child(8),
.vip-card:nth-child(8) { animation-delay: 1050ms; }

.featured-card:hover,
.vip-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 0 0 2px rgba(212, 175, 55, 0.6),
    0 16px 48px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(212, 175, 55, 0.3),
    inset 0 0 80px rgba(212, 175, 55, 0.05);
}

/* Acelerar animación del borde en hover */
.featured-card:hover::before,
.vip-card:hover::before {
  animation-duration: 2s;
}

/* Efecto de brillo que pasa por la tarjeta */
.featured-card:hover::after,
.vip-card:hover::after {
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(212, 175, 55, 0.15) 50%,
    transparent 60%
  );
  animation: shine 0.8s ease-out;
  pointer-events: none;
  inset: -100%;
  width: 300%;
  height: 300%;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.featured-card-img,
.vip-card-img,
.vip-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover .featured-card-img,
.vip-card:hover .vip-card-img,
.vip-card:hover .vip-card-image {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.featured-card-overlay,
.vip-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 25%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
  pointer-events: none;
  transition: background 400ms ease;
}

.featured-card:hover .featured-card-overlay,
.vip-card:hover .vip-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.6) 25%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
}

/* Información de la creadora VIP */
.vip-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 16px;
  z-index: 10;
  pointer-events: auto;
  overflow: hidden;
}

/* Nombre de la creadora */
.vip-creator-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: bold;
  font-style: italic;
  color: #FFFFFF;
  margin-bottom: 4px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Badge verificado */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  color: #D4AF37;
  font-size: 20px;
}

/* Bio corta */
.vip-creator-bio {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #E8E8E8;
  margin-bottom: 8px;
  line-height: 1.4;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Stats row */
.vip-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.vip-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: #AAAAAA;
}

.vip-stat-icon {
  color: #D4AF37;
  font-size: 14px;
}

.vip-stat-value {
  font-weight: 600;
  color: #FFFFFF;
}

/* Precio destacado */
.vip-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #D4AF37;
  text-shadow: 
    0 0 20px rgba(212, 175, 55, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.vip-price .price-duration {
  font-size: 0.7em;
  opacity: 0.85;
  font-weight: 600;
}

/* Ubicación en tarjetas */
.vip-location,
.creator-location,
.premium-select-location {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin: 6px 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.vip-location .location-pin,
.creator-location .location-pin,
.premium-select-location .location-pin {
  margin-right: 4px;
}

/* Precio en tarjetas VIP Black y Premium Select */
.creator-content .vip-price,
.premium-select-content .vip-price {
  font-size: 16px;
  margin-top: 12px;
  text-align: center;
  padding: 8px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

/* Botón de acción */
.vip-action-button {
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #0A0A0A;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 16px rgba(212, 175, 55, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.vip-action-button:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 24px rgba(212, 175, 55, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #F4D03F, #D4AF37);
}

.vip-action-button:active {
  transform: translateY(0);
}

.featured-badge,
.vip-badge {
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  padding: 4px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(212, 175, 55, 0.4);
  animation: badgePulse 3s ease-in-out infinite;
  margin-bottom: 4px;
}

.vip-badge-icon {
  font-size: 12px;
}

.vip-badge-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #0A0A0A;
  white-space: nowrap;
}

@keyframes badgePulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 
      0 0 0 2px rgba(0, 0, 0, 0.3),
      0 4px 12px rgba(212, 175, 55, 0.4);
  }
  50% { 
    transform: scale(1.08); 
    box-shadow: 
      0 0 0 2px rgba(0, 0, 0, 0.3),
      0 8px 24px rgba(212, 175, 55, 0.8),
      0 0 20px rgba(212, 175, 55, 0.4);
  }
}

/* Tipos de Badge */
.vip-badge.vip-badge {
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
}

.vip-badge.luxuryexclusive-badge {
  background: linear-gradient(135deg, #8B7355, #C19A6B);
  color: #FFFFFF;
}

.vip-badge.luxuryexclusive-badge .vip-badge-text {
  color: #FFFFFF;
}

.vip-badge.premium-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #FFFFFF;
}

.vip-badge.premium-badge .vip-badge-text {
  color: #FFFFFF;
}

.vip-badge.nuevo-badge {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  color: #FFFFFF;
}

.vip-badge.nuevo-badge .vip-badge-text {
  color: #FFFFFF;
}

.featured-card-info {
  position: relative;
  z-index: 1;
}

.featured-card-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin: 0 0 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.featured-card-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}

.featured-card-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.featured-card-location {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-card-location::before {
  content: "📍";
  font-size: 16px;
}

.featured-card-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.featured-card-feature {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}


/* Responsive */
@media (max-width: 768px) {
  .featured-section,
  .luxury-section {
    padding: 0 16px;
    margin: 16px auto 30px auto;
  }

  .featured-title {
    font-size: 32px;
  }

  .featured-card-title {
    font-size: 20px;
  }

  .featured-card-overlay,
  .vip-card-overlay {
    padding: 20px;
  }

  .vip-badge-container {
    top: 12px !important;
    left: 12px !important;
    max-width: 160px !important;
  }

  .modal-creator-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
  }

  .modal-creator-details {
    width: 100%;
  }

  .modal-name-badges-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }

  .modal-badges-container {
    justify-content: flex-start !important;
    margin-top: 0;
    flex-shrink: 0;
  }

  .modal-profile-badge {
    font-size: 10px !important;
    padding: 4px 8px !important;
  }

  .modal-creator-name {
    font-size: 22px !important;
    text-align: left;
  }

  .modal-creator-username {
    text-align: left;
  }
}

/* ===== CREATORS SECTION ===== */
.creators-section {
  padding: 48px 0;
  background: linear-gradient(180deg, rgba(18,18,18,0.3), rgba(26,26,26,0.5));
}

.creators-section .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 48px;
  background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 50%, #C4941F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-shadow: 0 0 40px rgba(212,175,55,0.15);
  margin: 0;
  white-space: nowrap;
}

.black-animated {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: inherit;
  letter-spacing: 2px;
  animation: blackGoldShift 2s ease-in-out infinite alternate;
  text-shadow: 0 0 40px rgba(212,175,55,0.15);
}

@keyframes blackGoldShift {
  0% {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
      0 0 20px rgba(0, 0, 0, 0.8),
      0 0 40px rgba(0, 0, 0, 0.6);
  }
  50% {
    background: linear-gradient(135deg, #2a2a2a 0%, #D4AF37 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
      0 0 30px rgba(212, 175, 55, 0.3),
      0 0 50px rgba(0, 0, 0, 0.4);
  }
  100% {
    background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 50%, #C4941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
      0 0 40px rgba(212, 175, 55, 0.6),
      0 0 60px rgba(212, 175, 55, 0.4),
      0 0 80px rgba(212, 175, 55, 0.2);
  }
}

.creators-carousel-container,
.creators-grid-container {
  position: relative;
  margin-top: 32px;
  /* Centrado y ancho óptimo */
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.creators-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 20px 20px;
  scrollbar-width: none;
}

/* Nueva vista de grilla para VIP */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px;
  /* Centrado y ancho controlado */
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

@media (max-width: 1200px) {
  .creators-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .creators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Estilos móviles de creator-card están en la sección unificada @media (max-width: 768px) */

.creators-carousel::-webkit-scrollbar {
  display: none;
}

.creator-card {
  flex: 0 0 280px;
  width: 100%;
  height: 570px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  text-align: center;
  transition: all 300ms ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* En modo grid, quitar el ancho fijo */
.creators-grid .creator-card {
  flex: none;
  min-width: 0;
}

.creator-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

/* Imagen de portada que ocupa toda la tarjeta */
.creator-cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.creator-card:hover .creator-cover-image {
  transform: scale(1.05);
}

/* Overlay degradado para legibilidad del texto */
.creator-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

/* Contenido sobre la imagen */
.creator-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

.creator-badge-container {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 3;
  max-width: calc(100% - 24px);
}

.creator-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  color: #FFFFFF;
}

/* Badge type colors for creator cards */
.creator-profile-badge.luxuryexclusive-badge,
.premium-select-profile-badge.luxuryexclusive-badge {
  background: linear-gradient(135deg, #8B7355, #C19A6B);
}

.creator-profile-badge.vip-badge,
.premium-select-profile-badge.vip-badge {
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  color: #0A0A0A;
}

.creator-profile-badge.premium-badge,
.premium-select-profile-badge.premium-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.creator-profile-badge.nuevo-badge,
.premium-select-profile-badge.nuevo-badge {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

.creator-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.creator-title {
  font-size: 13px;
  color: #D4AF37;
  margin-bottom: 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.creator-info-line {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.creator-info-text {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-weight: 500;
}

.creator-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 12px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.creator-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.creator-stat-icon {
  font-size: 16px;
}

.creator-stat-value {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
}

.creator-stat-label {
  font-size: 10px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.creators-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: #D4AF37;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
  z-index: 5;
}

.creators-nav:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #D4AF37;
  transform: translateY(-50%) scale(1.1);
}

.creators-nav-prev {
  left: -24px;
}

.creators-nav-next {
  right: -24px;
}

/* ===== PREMIUM SELECT SECTION ===== */
.premium-select-section {
  padding: 48px 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.5), rgba(18,18,18,0.7));
}

.premium-select-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 48px;
  background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 50%, #C4941F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-shadow: 0 0 40px rgba(212,175,55,0.15);
  margin: 0;
  white-space: nowrap;
}

.premium-select-carousel-container,
.premium-select-grid-container {
  position: relative;
  margin-top: 32px;
  /* Centrado y ancho óptimo */
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.premium-select-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 20px 20px;
  scrollbar-width: none;
}

/* Nueva vista de grilla para Premium Select */
.premium-select-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px;
  /* Centrado y ancho controlado */
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

@media (max-width: 1200px) {
  .premium-select-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .premium-select-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Estilos móviles de premium-select están en la sección unificada @media (max-width: 768px) */

.premium-select-carousel::-webkit-scrollbar {
  display: none;
}

.premium-select-card {
  flex: 0 0 320px;
  width: 100%;
  height: 570px;
  background: rgba(30, 30, 30, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 18px;
  text-align: center;
  transition: all 300ms ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* En modo grid, quitar el ancho fijo */
.premium-select-grid .premium-select-card {
  flex: none;
  min-width: 0;
}

.premium-select-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 
    0 15px 40px rgba(212, 175, 55, 0.25),
    0 0 30px rgba(212, 175, 55, 0.1);
}

/* Imagen de portada */
.premium-select-cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.premium-select-card:hover .premium-select-cover-image {
  transform: scale(1.05);
}

/* Overlay degradado */
.premium-select-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 25%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

/* Contenido sobre la imagen */
.premium-select-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.premium-select-badge-container {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 3;
  max-width: calc(100% - 28px);
}

.premium-select-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.premium-select-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.premium-select-title-desc {
  font-size: 14px;
  color: #D4AF37;
  margin-bottom: 6px;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.premium-select-info-line {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.premium-select-info-text {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-weight: 500;
}

.premium-select-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.premium-select-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.premium-select-stat-icon {
  font-size: 18px;
}

.premium-select-stat-value {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
}

.premium-select-stat-label {
  font-size: 9px;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.premium-select-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(30, 30, 30, 0.95);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  color: #D4AF37;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
  z-index: 5;
}

.premium-select-nav:hover {
  background: rgba(212, 175, 55, 0.3);
  border-color: #F4D03F;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.premium-select-nav-prev {
  left: -26px;
}

.premium-select-nav-next {
  right: -26px;
}

/* ===== MODAL VIP EXPANDIDO ===== */

/* Overlay del Modal */
.vip-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  animation: fadeIn 400ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Contenedor del Modal */
.vip-modal-container {
  max-width: 1400px;
  width: 100%;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(40, 40, 40, 1),
    rgba(212, 175, 55, 1),
    rgba(244, 208, 63, 1),
    rgba(212, 175, 55, 1),
    rgba(40, 40, 40, 1)
  );
  background-size: 300% 300%;
  animation: modalIn 500ms cubic-bezier(0.4, 0, 0.2, 1) forwards, borderRotate 6s linear infinite;
  padding: 4px;
  box-shadow: 
    0 0 0 1px rgba(212, 175, 55, 0.4),
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 100px rgba(212, 175, 55, 0.2);
  transform: scale(0.9);
}

@keyframes modalIn {
  to { transform: scale(1); }
}

.vip-modal-inner {
  display: contents;
}

/* Galería (Lado Izquierdo) */
.modal-gallery-section {
  background: #000000;
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: calc(90vh - 8px);
  max-height: calc(90vh - 8px);
}

.modal-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.modal-main-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
  position: relative;
  z-index: 1;
}

/* Contenedor de video con marca de agua */
.modal-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: #000;
}

/* Marca de agua unificada - overlay CSS para fotos y videos */
.media-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}

.media-watermark::before {
  content: 'SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra   SalaNegra';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: bold;
  font-style: italic;
  color: rgba(212, 175, 55, 0.45);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: 4px;
  word-spacing: 50px;
  line-height: 3.2;
  white-space: normal;
  transform: rotate(-25deg);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

/* Miniaturas */
.modal-thumbnails {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.5) transparent;
}

.modal-thumbnail {
  min-width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 200ms;
  opacity: 0.6;
}

.modal-thumbnail:hover,
.modal-thumbnail.active {
  opacity: 1;
  border-color: #D4AF37;
  transform: scale(1.05);
}

.modal-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video thumbnail */
.modal-thumbnail-video {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.modal-thumbnail-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-thumbnail-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}

.modal-thumbnail-video-play {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding-left: 2px;
}

/* Contador de media */
.modal-media-counter {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

/* Botones navegación galería */
.gallery-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms;
  z-index: 10;
}

.gallery-nav-button:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav-button.prev { left: 20px; }
.gallery-nav-button.next { right: 20px; }

/* Información (Lado Derecho) */
.modal-info-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  padding: 48px 40px;
  max-height: calc(90vh - 8px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.5) transparent;
}

.modal-info-section::-webkit-scrollbar {
  width: 8px;
}

.modal-info-section::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.modal-info-section::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.5);
  border-radius: 4px;
}

.modal-info-section::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.7);
}

/* Header con avatar */
.modal-creator-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-creator-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #D4AF37;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

.modal-creator-details {
  flex: 1;
  min-width: 0;
  width: 100%;
}

/* Contenedor para nombre y badges en fila */
.modal-name-badges-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.modal-badges-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.modal-creator-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 0;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.modal-creator-username {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #888888;
  margin: 0;
}

/* Badge de perfil en modal */
.modal-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: badgePulse 3s ease-in-out infinite;
  flex-shrink: 0;
}

.modal-profile-badge.vip-badge {
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  color: #0A0A0A;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.modal-profile-badge.luxuryexclusive-badge {
  background: linear-gradient(135deg, #8B7355, #C19A6B);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(139, 115, 85, 0.4);
}

.modal-profile-badge.premium-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.modal-profile-badge.nuevo-badge {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(17, 153, 142, 0.4);
}

.modal-profile-badge .badge-icon {
  font-size: 13px;
}

.modal-profile-badge .badge-text {
  font-size: 10px;
  white-space: nowrap;
}

/* Badges */
.modal-badges-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.modal-badge {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 14px;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #D4AF37;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Título y descripción */
.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.4;
}

.modal-description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #CCCCCC;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Características */
.modal-features {
  margin-bottom: 32px;
}

.modal-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #D4AF37;
  margin-bottom: 16px;
}

.modal-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #E8E8E8;
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-size: 16px;
  flex-shrink: 0;
}

/* Precio */
.modal-price-section {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.modal-price-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #AAAAAA;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: bold;
  color: #D4AF37;
  margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Botones de acción */
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-contact-button {
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #0A0A0A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 300ms;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.modal-contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.6);
}

.modal-secondary-button {
  width: 100%;
  height: 52px;
  background: transparent;
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #D4AF37;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 300ms;
}

.modal-secondary-button:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.8);
}

/* Botón cerrar modal */
.modal-close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 200ms;
}

.modal-close-button:hover {
  background: rgba(220, 38, 38, 0.8);
  border-color: rgba(220, 38, 38, 0.8);
  transform: rotate(90deg) scale(1.1);
}

.modal-close-icon {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
}


/* Stories Section */
.stories-section { 
  padding: 24px 0 48px; 
  background: linear-gradient(180deg, transparent, rgba(18,18,18,0.3));
  position: relative;
}

.stories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(212, 175, 55, 0.3) 20%, 
    #D4AF37 50%, 
    rgba(212, 175, 55, 0.3) 80%, 
    transparent 100%);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}
.stories-container { width: var(--container); margin: 0 auto; }
.stories-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 32px;
  background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 50%, #C4941F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px;
  text-shadow: 0 0 30px rgba(212,175,55,0.12);
  margin: 0 40px 16px;
  text-align: left;
}
.stories-carousel { display: flex; gap: 20px; overflow-x: auto; overflow-y: hidden; padding: 0 40px; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.stories-carousel::-webkit-scrollbar { display: none; }

/* Story Circle */
.story-button { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; padding: 8px; background: none; border: none; transition: transform 200ms ease; flex-shrink: 0; }
.story-button:hover { transform: translateY(-4px); }

.story-ring { width: 90px; height: 90px; border-radius: 50%; padding: 3px; background: linear-gradient(45deg, #D4AF37, #F4D03F, #D4AF37); display: flex; align-items: center; justify-content: center; animation: storyPulse 2s ease-in-out infinite; position: relative; }
.story-ring::before { content: ''; position: absolute; inset: 3px; background: var(--bg); border-radius: 50%; z-index: 0; }
.story-ring.viewed { animation: none; background: #666666; }
.story-ring.viewed img { opacity: 0.6; }

.story-badge-container {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid var(--bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 2;
}

.story-avatar { width: 78px; height: 78px; border-radius: 50%; border: 2px solid var(--bg); object-fit: cover; position: relative; z-index: 1; }

.story-name { font-size: 12px; font-weight: 500; color: var(--muted); max-width: 90px; text-overflow: ellipsis; white-space: nowrap; text-align: center; overflow: hidden; }

@keyframes storyPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }

/* Stories Modal */
.stories-modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 10000; display: none; align-items: center; justify-content: center; }
.stories-modal.open { display: flex; animation: fadeIn 200ms ease; }
.stories-overlay { position: absolute; inset: 0; background: #000000; z-index: 0; cursor: pointer; }

.stories-viewer { position: relative; width: 400px; height: 700px; background: #000000; border-radius: 12px; overflow: hidden; z-index: 1; box-shadow: 0 20px 60px rgba(0,0,0,0.8); }

.stories-header { position: absolute; top: 0; left: 0; right: 0; padding: 16px; background: linear-gradient(180deg, rgba(0,0,0,0.6), transparent); backdrop-filter: blur(8px); z-index: 100; }

.stories-progress { display: flex; gap: 4px; margin-bottom: 24px; }
.progress-segment { height: 3px; flex: 1; background: rgba(255,255,255,0.3); border-radius: 2px; overflow: hidden; position: relative; }
.progress-segment .progress-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--gold); border-radius: 2px; }
.progress-segment.active .progress-fill { animation: progressBar linear forwards; }
.progress-segment.completed .progress-fill { width: 100%; background: var(--gold); }

@keyframes progressBar { from { width: 0%; } to { width: 100%; } }

.stories-user-info { display: flex; align-items: center; gap: 12px; }
.stories-user-avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }

.stories-user-details { display: flex; flex-direction: column; gap: 2px; }
.stories-user-name { font-family: Inter, sans-serif; font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; transition: color 0.2s ease; }
.stories-user-name:hover { color: var(--gold); text-decoration: underline; }
.stories-user-avatar { cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.stories-user-avatar:hover { transform: scale(1.05); box-shadow: 0 0 12px rgba(212, 175, 55, 0.5); }
.stories-user-time { font-family: Inter, sans-serif; font-size: 12px; color: #AAAAAA; }

.stories-close-btn { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; background: rgba(0,0,0,0.5); border: none; border-radius: 50%; color: var(--text); font-size: 28px; cursor: pointer; transition: background 200ms ease; z-index: 102; }
.stories-close-btn:hover { background: rgba(255,0,0,0.3); }

.stories-content { width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; background: #000000; }
.stories-content img { max-width: 100%; max-height: 100%; object-fit: contain; }
.stories-content video { width: 100%; height: 100%; object-fit: contain; }
.stories-content { position: relative; }


/* Botón de sonido en stories de video */
.story-sound-toggle {
  position: absolute;
  bottom: 140px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms;
}
.story-sound-toggle:hover { background: rgba(255, 255, 255, 0.15); }

.stories-contact-btn { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); width: 180px; height: 50px; background: linear-gradient(135deg, #D4AF37, #F4D03F); border: none; border-radius: 25px; color: #0A0A0A; font-family: Montserrat, sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; box-shadow: 0 4px 16px rgba(212,175,55,0.4); transition: all 200ms ease; z-index: 101; }
.stories-contact-btn:hover, .stories-contact-btn:active { transform: translateX(-50%) scale(1.05); box-shadow: 0 6px 20px rgba(212,175,55,0.6); }

.stories-nav { position: absolute; top: 50%; width: 50px; height: 50px; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); border: none; border-radius: 50%; color: var(--text); font-size: 24px; cursor: pointer; transition: background 200ms ease; z-index: 101; transform: translateY(-50%); }
.stories-nav:hover { background: rgba(255,255,255,0.1); }
.stories-nav.hidden { display: none; }
.stories-nav-prev { left: 20px; }
.stories-nav-next { right: 20px; }

/* Detail Modal */
.detail-modal { position: fixed; inset: 0; z-index: 1100; display: none; align-items: center; justify-content: center; }
.detail-modal[aria-hidden="false"] { display: flex; }
.detail-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(2px); }
.detail-container { position: relative; width: min(1100px, 94vw); max-height: 90vh; background: #0b0b0b; border: 1px solid rgba(212,175,55,0.3); border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,0.45); overflow: hidden; animation: fadeUp 260ms ease; display: flex; flex-direction: column; }
.detail-close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border: none; background: rgba(255,255,255,0.08); color: var(--text); border-radius: 12px; font-size: 24px; cursor: pointer; z-index: 3; }
.detail-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; height: 100%; min-height: 0; }
.detail-gallery { position: relative; background: #080808; padding: 16px; display: grid; grid-template-rows: auto 1fr auto; gap: 10px; min-height: 0; }
.detail-main-media { position: relative; background: #000; border-radius: 12px; overflow: hidden; display: grid; place-items: center; aspect-ratio: 16/10; min-height: 280px; }
.detail-main-media img, .detail-main-media video { width: 100%; height: 100%; object-fit: cover; }
.detail-main-media img, .detail-main-media video { width: 100%; height: 100%; object-fit: cover; }
.detail-counter { position: absolute; bottom: 16px; right: 16px; background: rgba(0,0,0,0.6); color: #fff; padding: 6px 12px; border-radius: 999px; font-weight: 700; font-size: 13px; }
.detail-thumbs { display: grid; grid-auto-flow: column; grid-auto-columns: 90px; gap: 8px; overflow-x: auto; padding-bottom: 6px; }
.detail-thumb { position: relative; width: 100%; aspect-ratio: 1; border-radius: 10px; overflow: hidden; cursor: pointer; border: 2px solid transparent; }
.detail-thumb.active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(212,175,55,0.2); }
.detail-thumb img, .detail-thumb video { width: 100%; height: 100%; object-fit: cover; }
.detail-info { padding: 20px 20px 16px; overflow-y: auto; min-height: 0; }
.detail-title-row { display: flex; align-items: center; gap: 10px; justify-content: space-between; }
.detail-title { margin: 0; font-size: 26px; font-weight: 800; color: var(--text); }
.detail-badge { background: linear-gradient(135deg, #D4AF37, #F4D03F); color: #0A0A0A; border-radius: 12px; padding: 6px 10px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.4px; }
.detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  letter-spacing: 0.3px;
}

.detail-meta { display: flex; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 13px; margin-top: 6px; }
.detail-price-row { display: flex; align-items: center; gap: 12px; margin: 14px 0; }
.detail-price { font-size: 28px; font-weight: 800; color: var(--gold); }
.detail-description { color: var(--text); line-height: 1.6; font-size: 14px; margin-bottom: 12px; }
.detail-features { list-style: none; padding: 0; margin: 0 0 14px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.detail-features li { display: flex; gap: 8px; align-items: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 10px 12px; color: var(--text); }
.detail-section { margin-top: 12px; }
.detail-section h4 { margin: 0 0 8px; font-size: 15px; color: var(--text); letter-spacing: 0.2px; }
.detail-meta-block { color: var(--muted); font-size: 13px; margin-bottom: 6px; }
.detail-map { margin-top: 8px; border: 1px dashed rgba(212,175,55,0.4); border-radius: 10px; padding: 12px; color: var(--muted); font-size: 13px; }
.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.detail-form { display: grid; gap: 8px; }
.detail-form input, .detail-form textarea { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(212,175,55,0.25); border-radius: 10px; padding: 10px 12px; color: var(--text); }
.detail-form input:focus, .detail-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(212,175,55,0.25); }

@media (max-width: 960px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-container { max-height: 96vh; }
  .detail-gallery { min-height: 320px; }
}

/* ============================================
   LOGIN MODAL
   ============================================ */
.login-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.login-modal[aria-hidden="false"] {
  display: flex;
}

.login-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.login-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  animation: scaleIn 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1001;
}

/* ============================================
   CONTACT MODAL
   ============================================ */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.contact-modal[aria-hidden="false"] {
  display: flex;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  pointer-events: auto;
}

.contact-container {
  position: relative;
  width: min(520px, calc(100% - 32px));
  margin: 0 16px 24px;
  background: linear-gradient(180deg, #0A0A0A, #1A1A1A);
  border: 2px solid var(--gold);
  border-radius: 18px 18px 14px 14px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  animation: fadeUp 320ms ease;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1001;
}
.contact-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; background: transparent; border: none; color: var(--text); font-size: 28px; cursor: pointer; opacity: 0.7; transition: opacity 200ms ease; z-index: 10; }
.contact-close:hover { opacity: 1; color: var(--gold); }
.contact-title { margin: 0 0 8px 0; font-family: "Playfair Display", serif; font-size: 32px; font-weight: 700; color: var(--text); }
.contact-subtitle { margin: 0 0 24px 0; font-size: 14px; color: var(--muted); }
.contact-form { display: grid; gap: 20px; }
.contact-field { display: grid; gap: 8px; }
.contact-label { font-size: 13px; font-weight: 600; color: var(--gold); }
.contact-field input, .contact-field textarea { width: 100%; background: rgba(255,255,255,0.08); color: var(--text); border: 1px solid rgba(212,175,55,0.3); border-radius: 10px; padding: 12px; font-size: 15px; font-family: inherit; transition: border-color 200ms ease, box-shadow 200ms ease; }
.contact-field input::placeholder, .contact-field textarea::placeholder { color: #666; }
.contact-field input:focus, .contact-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.2); }
.contact-field textarea { resize: vertical; min-height: 100px; }
.contact-field input[type="file"] { padding: 8px; font-size: 13px; cursor: pointer; }
.contact-field input[type="file"]::file-selector-button { background: rgba(212,175,55,0.2); color: var(--gold); border: 1px solid var(--gold); border-radius: 6px; padding: 6px 12px; margin-right: 10px; cursor: pointer; font-weight: 600; transition: all 200ms ease; }
.contact-field input[type="file"]::file-selector-button:hover { background: rgba(212,175,55,0.3); }
.contact-hint { font-size: 11px; color: #888; margin: 0; }
.contact-actions { display: flex; gap: 12px; margin-top: 8px; }
.contact-cancel { background: rgba(255,255,255,0.1); color: var(--text); flex: 1; }
.contact-cancel:hover { background: rgba(255,255,255,0.15); transform: none; }

@media (max-width: 640px) {
  .contact-container { padding: 24px; max-height: 95vh; }
  .contact-title { font-size: 28px; }
}

/* Responsive Stories */
@media (max-width: 768px) {
  .stories-section { 
    padding: 16px 0 32px; 
  }
  
  .stories-section::before {
    width: 90%;
  }
  .stories-title { margin: 0 16px 16px; }
  .stories-carousel { padding: 0 16px; gap: 12px; }
  
  .story-ring { width: 75px; height: 75px; }
  .story-avatar { width: 63px; height: 63px; }
  .story-name { font-size: 11px; }
  
  .stories-viewer { width: 100vw; height: 100vh; border-radius: 0; }
  .stories-contact-btn { bottom: 100px; }
  .stories-nav { display: none; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 42px; }
  .nav-toggle { display: inline-block; }
  .site-nav { display: none; position: absolute; right: 4%; top: 56px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; box-shadow: var(--shadow); }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; padding: 12px; gap: 12px; }
  .site-nav .nav-cta { align-self: center; }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: span 1; }
}

/* ============================================
   Testimonials Section (Vivencias)
   ============================================ */
.testimonials-section { padding: 60px 0; position: relative; }
.testimonials-section .container { background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.25); border-radius: 16px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.vivencias-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  color: #D4AF37 !important;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
  text-align: left;
}
.testimonials-slider { position: relative; overflow: hidden; }
.ts-track { display: flex; gap: 16px; transition: transform 400ms ease; will-change: transform; }
.ts-card { flex: 0 0 calc(33.333% - 10.7px); background: rgba(10,10,10,0.6); border: 1px solid rgba(212,175,55,0.3); border-radius: 16px; padding: 18px; display: grid; grid-template-rows: auto auto 1fr auto; gap: 10px; position: relative; }
.ts-quote { position: absolute; top: 10px; right: 12px; font-size: 28px; color: var(--gold); opacity: 0.5; }
.ts-header { display: flex; align-items: center; gap: 12px; }
.ts-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(212,175,55,0.35); display: grid; place-items: center; font-weight: 800; color: var(--text); }
.ts-name { font-weight: 700; font-size: 14px; }
.ts-rating { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.ts-text { color: var(--muted); font-size: 14px; line-height: 1.5; }
.ts-date { color: #9a9a9a; font-size: 12px; }
.ts-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.35); background: rgba(0,0,0,0.4); color: var(--gold); cursor: pointer; display: grid; place-items: center; transition: all 200ms ease; }
.ts-nav:hover { background: rgba(212,175,55,0.15); }
.ts-prev { left: 8px; }
.ts-next { right: 8px; }
.ts-dots { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
.ts-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(212,175,55,0.35); cursor: pointer; transition: transform 200ms ease, background 200ms ease; }
.ts-dot.active { transform: scale(1.3); background: var(--gold); }

@media (max-width: 991px) {
  .ts-card { flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 640px) {
  .ts-card { flex: 0 0 100%; }
}

/* ============================================
   MODAL AMPLIADO - Nuevos Estilos
   ============================================ */

/* Stats Row - Fila de estadísticas en la parte superior */
.modal-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.modal-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  transition: all 200ms;
}

.modal-stat-item:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.modal-stat-item.experiences-stat {
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.3);
  cursor: pointer;
}

.modal-stat-item.experiences-stat:hover {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modal-stat-item.experiences-stat .stat-value {
  color: #667eea;
}

.modal-stat-item.experiences-stat .stat-label {
  color: #667eea;
}

.stat-icon {
  font-size: 24px;
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #D4AF37;
  line-height: 1;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888888;
}

/* Modal Section - Contenedor genérico de sección */
.modal-section {
  margin-bottom: 32px;
}

.modal-section-inline {
  margin-bottom: 32px;
}

.modal-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #D4AF37;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-icon {
  font-size: 18px;
}

/* Info Grid - Grid de información física */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
}

.info-item.full-width {
  grid-column: 1 / -1;
}

.info-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888888;
}

.info-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
}

.info-value.highlight {
  font-size: 18px;
  color: #D4AF37;
  text-align: center;
  padding: 4px 0;
}

/* Attributes Grid - Grid de atributos */
.attributes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.attribute-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  transition: all 200ms;
}

.attribute-item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
}

.attr-icon {
  font-size: 20px;
}

.attr-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888888;
}

.attr-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #E8E8E8;
}

/* Services List - Lista de servicios */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.service-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #E8E8E8;
  transition: all 200ms;
  overflow: hidden;
  min-width: 0;
}

.service-chip:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(4px);
}

.service-check {
  color: #4ADE80;
  font-size: 16px;
  flex-shrink: 0;
}

.service-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.services-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888888;
  font-style: italic;
  margin-top: 8px;
  padding-left: 8px;
}

/* Pricing Section - Sección de precios */
.pricing-section {
  margin-bottom: 32px;
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  transition: all 200ms;
}

.pricing-item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.pricing-duration {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888888;
}

.pricing-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #D4AF37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}


/* Availability Grid - Grid de disponibilidad */
.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.availability-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  opacity: 0.5;
  transition: all 200ms;
}

.availability-item.active {
  opacity: 1;
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
}

.availability-item:hover {
  transform: scale(1.05);
}

.avail-icon {
  font-size: 24px;
}

.avail-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #E8E8E8;
  text-align: center;
}

.avail-status {
  font-size: 16px;
  font-weight: bold;
}

.availability-item.active .avail-status {
  color: #4ADE80;
}

.availability-item:not(.active) .avail-status {
  color: #888888;
}

.availability-hours,
.availability-location {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #CCCCCC;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  margin-top: 8px;
}

.availability-hours strong,
.availability-location strong {
  color: #D4AF37;
  margin-right: 6px;
}

/* Languages List - Lista de idiomas */
.languages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.language-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #E8E8E8;
  transition: all 200ms;
}

.language-chip:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  transform: scale(1.05);
}

/* Modal Actions Extended - Botones de acción */
.modal-actions-extended {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 300ms;
}

.action-btn.primary-action {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.action-btn.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.action-btn.secondary-action {
  background: transparent;
  border: 2px solid rgba(212, 175, 55, 0.5);
  color: #D4AF37;
}

.action-btn.secondary-action:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.8);
}

.action-btn.like-btn.liked {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.5);
  color: #EF4444;
}

.btn-icon {
  font-size: 20px;
}

.btn-text {
  font-weight: 600;
}

/* Modal Disclaimer */
.modal-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #666666;
  text-align: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  line-height: 1.5;
  margin-top: 24px;
}

/* Responsive para modal ampliado */
@media (max-width: 991px) {
  .modal-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .attributes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .availability-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* ===== MODAL VIP - MÓVIL COMPLETO ===== */
  .vip-modal-overlay {
    padding: 0 !important;
    align-items: flex-start !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .vip-modal-container {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
    height: auto !important;
    max-height: none !important;
    min-height: calc(100vh - 16px) !important;
    padding: 0 !important;
    margin: 8px !important;
    overflow: visible !important;
    background: #0a0a0a !important;
    border: 2px solid rgba(212, 175, 55, 0.8) !important;
    border-radius: 12px !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 10px 40px rgba(0, 0, 0, 0.8) !important;
    animation: none !important;
    transform: none !important;
  }

  .modal-close-button {
    position: fixed !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 10001 !important;
  }

  .vip-modal-inner {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .modal-gallery-section {
    width: 100% !important;
    height: 55vh !important;
    min-height: 300px !important;
    max-height: 450px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    background: #000 !important;
    flex-shrink: 0 !important;
  }

  .modal-main-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    /* display controlado por JavaScript para alternar con video */
  }

  /* Contenedor de video en móvil */
  .modal-video-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 5 !important;
    background: #000 !important;
  }

  .modal-main-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .modal-thumbnails {
    gap: 6px;
    padding: 8px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent) !important;
  }

  .modal-thumbnail {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .modal-info-section {
    width: 100% !important;
    max-height: none !important;
    padding: 16px !important;
    overflow-y: visible !important;
    background: #0a0a0a !important;
  }

  .modal-profile-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    margin-bottom: 12px;
  }

  .modal-profile-name {
    font-size: 20px;
    text-align: left;
  }

  .modal-profile-username {
    font-size: 12px;
    text-align: left;
  }

  .modal-profile-badges {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
  }
  
  .modal-profile-badge {
    font-size: 9px;
    padding: 3px 8px;
  }
  
  .modal-stats-row {
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
  }
  
  .modal-stat {
    padding: 8px;
  }
  
  .modal-stat-value {
    font-size: 18px;
  }
  
  .modal-stat-label {
    font-size: 10px;
  }
  
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .info-item {
    padding: 8px;
  }

  .info-label {
    font-size: 10px;
  }

  .info-value {
    font-size: 14px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  
  .modal-section-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .modal-actions-extended {
    position: relative;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .modal-actions-extended .action-btn.primary-action {
    position: relative;
    bottom: auto;
    z-index: auto;
    box-shadow: none;
  }
  
  .modal-action-btn {
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
  }
  
  .modal-close-btn {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  
  .gallery-nav {
    width: 36px;
    height: 36px;
  }
}

/* ============================================
   MENÚ DE COMPARTIR
   ============================================ */
.share-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 300ms ease;
}

.share-menu-content {
  background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 32px;
  animation: slideUp 400ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 100px rgba(212, 175, 55, 0.2);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.share-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.share-menu-header h3 {
  color: #D4AF37;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.share-menu-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 200ms ease;
}

.share-menu-close:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  transform: rotate(90deg);
}

.share-preview {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.share-preview-text {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.share-preview-stats {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.share-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.share-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}

.share-option::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 400ms ease, height 400ms ease;
}

.share-option:hover::before {
  width: 300px;
  height: 300px;
}

.share-option svg {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.share-option span {
  position: relative;
  z-index: 1;
}

.share-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Colores específicos por red social */
.share-option.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.share-option.whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.share-option.telegram {
  background: rgba(43, 155, 217, 0.1);
  border-color: rgba(43, 155, 217, 0.3);
  color: #2B9BD9;
}

.share-option.telegram:hover {
  background: rgba(43, 155, 217, 0.2);
  border-color: #2B9BD9;
  box-shadow: 0 8px 24px rgba(43, 155, 217, 0.3);
}

.share-option.facebook {
  background: rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.3);
  color: #1877F2;
}

.share-option.facebook:hover {
  background: rgba(24, 119, 242, 0.2);
  border-color: #1877F2;
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.3);
}

.share-option.twitter {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

.share-option.twitter:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.share-option.email {
  background: rgba(234, 67, 53, 0.1);
  border-color: rgba(234, 67, 53, 0.3);
  color: #EA4335;
}

.share-option.email:hover {
  background: rgba(234, 67, 53, 0.2);
  border-color: #EA4335;
  box-shadow: 0 8px 24px rgba(234, 67, 53, 0.3);
}

.share-option.copy {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  color: #D4AF37;
}

.share-option.copy:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #D4AF37;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

/* Mobile responsive */
@media (max-width: 576px) {
  .share-menu-content {
    padding: 24px;
  }
  
  .share-options {
    grid-template-columns: 1fr;
  }
  
  .share-option {
    padding: 14px;
    font-size: 14px;
  }
}
/* ========== ESTADOS/DISPONIBILIDAD SECTION ========== */
.estados-section {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
}

.estados-header-main {
  text-align: center;
  margin-bottom: 32px;
}

.estados-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 32px;
  background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 50%, #C4941F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px;
  text-shadow: 0 0 30px rgba(212,175,55,0.12);
  margin: 0 0 8px;
}

.estados-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.estados-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

/* Scroll horizontal estilo Instagram */
.estados-carousel {
  display: flex;
  gap: 12px;
  padding: 8px 0 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.estados-carousel::-webkit-scrollbar {
  display: none;
}

.estado-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}

/* Borde dorado premium para estados de perfiles Luxury */
.estado-card.luxury-estado {
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  background: linear-gradient(145deg, rgba(30, 28, 20, 0.98), rgba(15, 15, 15, 0.98));
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

/* DESKTOP: Tarjetas más grandes */
@media (min-width: 769px) {
  .estados-carousel {
    gap: 16px;
  }

  .estado-card {
    flex: 0 0 300px;
    padding: 20px;
  }
}

.estado-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.estado-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}


.estado-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
}

.estado-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  width: fit-content;
}

.estado-card.disponible .estado-type-badge {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.estado-card.novedad .estado-type-badge {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.4);
}

.estado-card.promo .estado-type-badge {
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.estado-card.ocupada .estado-type-badge {
  background: rgba(107, 114, 128, 0.2);
  color: #9ca3af;
  border: 1px solid rgba(107, 114, 128, 0.4);
}

.estado-card.disponible .estado-avatar {
  border-color: #10B981;
}

.estado-card.novedad .estado-avatar {
  border-color: #A855F7;
}

.estado-card.promo .estado-avatar {
  border-color: #F59E0B;
}

.estado-card.ocupada .estado-avatar {
  border-color: #EF4444;
}

/* Borde especial para Luxury */
.estado-card.luxury-estado .estado-avatar {
  border-color: #D4AF37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.estado-user-info {
  flex: 1;
  min-width: 0;
}

.estado-user-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badge de tiempo en esquina */
.estado-time-badge {
  font-size: 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

.estado-user-location {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.estado-message {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Botón de contacto - diseño premium */
.estado-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 16px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  margin-top: 4px;
}

.estado-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.estado-contact-btn svg {
  width: 16px;
  height: 16px;
}

/* Empty state para estados */
.estados-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
}

.estados-empty p {
  margin: 8px 0 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .estados-section {
    padding: 40px 0;
  }

  .estados-title {
    font-size: 26px;
  }

  .estado-avatar {
    width: 40px;
    height: 40px;
  }

  .estado-user-name {
    font-size: 13px;
  }

  .estado-message {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .estados-carousel {
    gap: 10px;
  }

  .estado-card {
    flex: 0 0 220px;
    padding: 12px;
    gap: 10px;
    border-radius: 16px;
  }

  .estado-card-header {
    gap: 8px;
  }

  .estado-avatar {
    width: 40px;
    height: 40px;
  }

  .estado-type-badge {
    font-size: 10px;
    padding: 3px 8px;
    margin-bottom: 8px;
  }

  .estado-user-name {
    font-size: 12px;
  }

  .estado-time-badge {
    font-size: 10px;
    padding: 3px 6px;
  }

  .estado-message {
    font-size: 12px;
    line-height: 1.4;
  }

  .estado-contact-btn {
    padding: 8px 12px;
    font-size: 11px;
    border-radius: 10px;
  }
}

/* ========================================
   RESPONSIVE MÓVIL - CONTENEDORES Y LAYOUT
   ======================================== */

@media (max-width: 768px) {
  /* ========== CONTENEDORES ========== */
  .container {
    padding: 0 4px !important;
    max-width: 100% !important;
  }
  
  .featured-section,
  .creators-section,
  .premium-select-section {
    padding: 16px 0 !important;
    margin: 0 !important;
  }
  
  .featured-carousel-wrapper,
  .vip-carousel-container,
  .creators-grid-container,
  .premium-select-grid-container {
    padding: 8px 4px !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  
  /* ========== INFO OVERLAY LUXURY ========== */
  .featured-card-info,
  .vip-card-info {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 8px !important;
    background: linear-gradient(transparent, rgba(0,0,0,0.9)) !important;
    border-radius: 0 0 10px 10px !important;
    z-index: 10 !important;
  }
  
  /* ========== NOMBRES LUXURY ========== */
  .featured-card-name {
    font-size: 16px !important;
    font-weight: 700 !important;
  }
  
  /* ========== OCULTAR ELEMENTOS EXTRA ========== */
  .featured-card-location,
  .vip-card-location,
  .creator-location,
  .creator-bio,
  .premium-select-location,
  .vip-stats,
  .vip-creator-bio {
    display: none !important;
  }
  
  /* ========== PRECIOS ========== */
  .featured-card-price {
    font-size: 14px !important;
    color: #D4AF37 !important;
  }
  
  .vip-card-price {
    font-size: 12px !important;
    color: #D4AF37 !important;
  }
  
  /* ========== BADGES LUXURY ========== */
  .featured-badge {
    font-size: 9px !important;
    padding: 4px 8px !important;
    top: 10px !important;
    left: 10px !important;
  }
  
  .vip-badge,
  .premium-badge {
    font-size: 7px !important;
    padding: 3px 6px !important;
    top: 6px !important;
    left: 6px !important;
  }
  
  /* ========== TÍTULOS DE SECCIÓN ========== */
  .luxury-title,
  .section-title,
  .premium-select-title {
    font-size: 22px !important;
  }
  
  .section-subtitle,
  .featured-subtitle {
    font-size: 12px !important;
  }
  
  /* ========== FOOTER ========== */
  .footer-inner {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
    padding: 20px 12px !important;
  }
  
  .footer-links {
    justify-content: center !important;
    gap: 16px !important;
  }
}

/* ========================================
   RESPONSIVE MÓVIL - MENÚ HAMBURGUESA
   ======================================== */

@media (max-width: 640px) {
  .site-nav {
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    z-index: 1000 !important;
  }
  
  .nav-toggle {
    background: rgba(212, 175, 55, 0.2) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    color: #D4AF37 !important;
  }
}

/* ========================================
   RESPONSIVE MÓVIL - CONTACT MODAL
   ======================================== */

@media (max-width: 768px) {
  .contact-modal,
  .modal-overlay .modal-content {
    width: 95% !important;
    max-width: 360px !important;
    margin: 10px auto !important;
    padding: 20px 16px !important;
  }
  
  .contact-modal-header {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .contact-modal-actions {
    flex-direction: column !important;
    gap: 10px !important;
  }
  
  .contact-modal-btn {
    width: 100% !important;
  }
}

/* ===========================================
   TARJETAS DE PRUEBA
   =========================================== */
.test-card {
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

/* ===========================================
   MODAL DE FOTO EXPANDIDA
   =========================================== */
.photo-expand-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.98);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.photo-expand-overlay.active {
  opacity: 1;
  visibility: visible;
}

.photo-expand-content {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
}

.photo-expand-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.photo-expand-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-expand-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-expand-nav.prev {
  left: -55px;
}

.photo-expand-nav.next {
  right: -55px;
}

.photo-expand-counter {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
}

/* Indicador de expandir en fotos del modal */
@media (max-width: 768px) {
  .modal-gallery-image {
    cursor: zoom-in;
  }

  /* Imagen principal del modal expandible */
  .modal-main-image,
  #modal-main-img {
    cursor: zoom-in;
  }
}

/* ===========================================
   ESTILOS MÓVIL - TARJETAS TIPO LUXURY
   =========================================== */

@media (max-width: 768px) {
  /* Ajustar precio en móvil para tarjetas VIP/Premium */
  .creator-content .vip-price,
  .premium-select-content .vip-price {
    font-size: 14px !important;
    padding: 6px 0 !important;
  }
  
  /* Tarjetas VIP y Premium - diseño móvil unificado */
  .creators-grid,
  .premium-select-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    padding: 0 6px !important;
  }

  .creator-card,
  .premium-select-card {
    aspect-ratio: 2/3 !important; /* Más alto (20% más vertical) */
    height: auto !important;
    min-height: 336px !important; /* 20% más alto */
    max-height: 480px !important; /* 20% más alto */
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
  }

  /* Imagen de fondo ocupa todo */
  .creator-cover-image,
  .premium-select-cover-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Overlay gradiente - cubre TODO desde arriba */
  .creator-overlay,
  .premium-select-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    width: 100% !important;
    background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.9) 100%) !important;
    z-index: 5 !important;
  }
  
  /* Badges arriba */
  .creator-badge-container,
  .premium-select-badge-container {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 15 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
  }
  
  .creator-profile-badge,
  .premium-select-profile-badge {
    font-size: 10px !important;
    padding: 4px 8px !important;
    border-radius: 12px !important;
  }
  
  /* Contenido abajo */
  .creator-content,
  .premium-select-content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 15px !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Nombre */
  .creator-name,
  .premium-select-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 4px !important;
  }
  
  /* Ocultar título/descripción (Premium Select, VIP, etc) - info redundante */
  .creator-title,
  .premium-select-title-desc {
    display: none !important;
  }
  
  /* Stats */
  .creator-stats,
  .premium-select-stats {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 8px !important;
  }
  
  .creator-stat,
  .premium-select-stat {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .creator-stat-icon,
  .premium-select-stat-icon {
    font-size: 14px !important;
  }
  
  .creator-stat-value,
  .premium-select-stat-value {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #fff !important;
  }
  
  .creator-stat-label,
  .premium-select-stat-label {
    font-size: 9px !important;
    color: rgba(255,255,255,0.6) !important;
  }
  
  /* Carrusel Luxury - mismo diseño que VIP y Premium */
  .featured-carousel {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    padding: 0 6px !important;
  }

  .featured-card {
    aspect-ratio: 2/3 !important; /* Más alto (20% más vertical) */
    height: auto !important;
    min-height: 336px !important; /* 20% más alto */
    max-height: 480px !important; /* 20% más alto */
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .featured-card-img,
  .vip-card-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .featured-card-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    width: 100% !important;
    background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.9) 100%) !important;
    z-index: 5 !important;
  }

  /* Ocultar título tipo perfil (Luxury, VIP, etc) - info redundante */
  .featured-card-title,
  .featured-card-subtitle {
    display: none !important;
  }

}