/* =============================================
   ENCONTROS PROIBIDOS - Premium UI/UX v7
   ============================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
  --bg-charcoal: #18181b;
  --bg-card: #0c0c0e;
  --bg-card-hover: #111113;
  --text-white: #fafafa;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --gradient-purple-pink: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(168,85,247,0.15) 0%, rgba(236,72,153,0.1) 100%);
  --purple: #a855f7;
  --pink: #ec4899;
  --border-color: #27272a;
  --border-light: #3f3f46;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --card-width: 300px;
  --card-height: 450px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.5), 0 8px 30px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(168,85,247,0.12), 0 0 80px rgba(236,72,153,0.06);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-charcoal);
  color: var(--text-white);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: overflow var(--transition-smooth);
}
body.modal-open { overflow: hidden; }

/* ---------- GRADIENT TEXT ---------- */
.gradient-text {
  background: var(--gradient-purple-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition-smooth);
}

.header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
}

/* =============================================
   LOGO
   ============================================= */
.logo {
  font-family: var(--font-heading);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  position: relative;
  user-select: none;
  flex-shrink: 0;
}

.logo__top {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: color var(--transition-fast);
}

.logo__bottom {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-purple-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  transition: all var(--transition-fast);
}

.logo__glitch {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-purple-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  pointer-events: none;
  letter-spacing: -0.5px;
}

.logo:hover .logo__bottom { animation: logoGlitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
.logo:hover .logo__glitch { animation: logoGlitchOverlay 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
.logo:hover .logo__top { color: var(--pink); }

@keyframes logoGlitch {
  0% { transform: translate(0); }
  15% { transform: translate(-2px, 1px); }
  30% { transform: translate(2px, -1px); }
  45% { transform: translate(-1px, -2px); }
  60% { transform: translate(1px, 2px); }
  75% { transform: translate(-1px, 0); }
  100% { transform: translate(0); }
}

@keyframes logoGlitchOverlay {
  0% { opacity: 0; transform: translate(0); clip-path: inset(0 0 0 0); }
  15% { opacity: 0.6; transform: translate(2px, -1px); clip-path: inset(0 0 60% 0); }
  30% { opacity: 0.3; transform: translate(-2px, 1px); clip-path: inset(30% 0 30% 0); }
  45% { opacity: 0.7; transform: translate(1px, 2px); clip-path: inset(0 0 70% 0); }
  60% { opacity: 0.4; transform: translate(-1px, -1px); clip-path: inset(50% 0 0 0); }
  75% { opacity: 0.8; transform: translate(2px, 0); clip-path: inset(0 0 40% 0); }
  100% { opacity: 0; transform: translate(0); clip-path: inset(0 0 0 0); }
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition-fast);
  position: relative;
}
.nav__link:hover { color: var(--text-white); background: rgba(255,255,255,0.04); }

.nav__link--active {
  color: var(--text-white);
  font-weight: 500;
  background: rgba(168,85,247,0.08);
}
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--gradient-purple-pink);
  border-radius: 2px;
}

.nav__link--cta {
  background: var(--gradient-purple-pink);
  color: white !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.82rem;
  margin-left: 10px;
  transition: all var(--transition-fast);
}
.nav__link--cta:hover { box-shadow: 0 4px 24px rgba(168,85,247,0.4); transform: translateY(-1px); }

/* =============================================
   HAMBURGER
   ============================================= */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  z-index: 101;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 50px 20px 40px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.08) 0%, transparent 70%);
  border-bottom: 1px solid var(--border-color);
}
.hero__content { max-width: 650px; margin: 0 auto; }
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.hero__subtitle { color: var(--text-muted); font-size: 1rem; font-weight: 300; margin-bottom: 22px; line-height: 1.6; }
.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
}
.hero__stats strong { color: var(--text-white); font-weight: 600; }
.dot { color: var(--pink); font-weight: bold; }

/* =============================================
   FILTERS
   ============================================= */
.filters {
  position: sticky;
  top: 52px;
  z-index: 99;
  background: rgba(12, 12, 14, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition-smooth);
}
.filters__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}
.filter-group { display: flex; flex-direction: column; gap: 5px; }
.filter-group label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-dim);
  font-weight: 600;
  text-align: center;
}
.filter-select {
  background: rgba(255,255,255,0.04);
  color: var(--text-white);
  border: 1px solid var(--border-color);
  padding: 9px 34px 9px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' 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;
  min-width: 140px;
  transition: all var(--transition-fast);
}
.filter-select:focus {
  outline: none;
  border-color: var(--purple);
  background: rgba(168,85,247,0.05);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.1);
}
.filter-toggle {
  display: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 9px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}
.filter-toggle:hover { color: var(--text-white); border-color: var(--border-light); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  padding: 9px 20px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
  height: 40px;
}
.btn--gradient { background: var(--gradient-purple-pink); color: white; }
.btn--gradient:hover { opacity: 0.9; box-shadow: 0 4px 20px rgba(168,85,247,0.3); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--text-muted); border: 1px solid var(--border-color); }
.btn--outline:hover { color: var(--text-white); border-color: var(--border-light); background: rgba(255,255,255,0.02); }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 50px 20px; max-width: 1320px; margin: 0 auto; }
.section__header { margin-bottom: 36px; text-align: center; }
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.section__subtitle { color: var(--text-dim); font-size: 0.9rem; font-weight: 300; }

/* =============================================
   GRID
   ============================================= */
.grid {
  display: grid;
  grid-template-columns: repeat(4, var(--card-width));
  gap: 22px;
  justify-content: center;
}

/* =============================================
   CARD
   ============================================= */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
  cursor: pointer;
  width: var(--card-width);
  height: var(--card-height);
  display: flex;
  flex-direction: column;
  position: relative;
  animation: cardFadeIn 0.5s ease forwards;
  opacity: 0;
}
.card:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.15s; }
.card:nth-child(4) { animation-delay: 0.2s; }
.card:nth-child(5) { animation-delay: 0.25s; }
.card:nth-child(6) { animation-delay: 0.3s; }
.card:nth-child(7) { animation-delay: 0.35s; }
.card:nth-child(8) { animation-delay: 0.4s; }

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

.card:hover {
  border-color: rgba(168,85,247,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), 0 20px 50px rgba(0,0,0,0.4);
  background: var(--bg-card-hover);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-md);
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
  z-index: 1;
}
.card:hover::before { opacity: 1; }
.card__photo {
  width: 100%; height: 300px;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
  position: relative; z-index: 0;
}
.card:hover .card__photo { transform: scale(1.03); }
.card__body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 4px; position: relative; z-index: 2; }
.card__name-age { display: flex; align-items: baseline; gap: 7px; }
.card__name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--text-white); letter-spacing: -0.2px; }
.card__age { font-size: 1.05rem; font-weight: 300; color: var(--text-dim); }
.card__location { font-size: 0.78rem; color: var(--text-dim); display: flex; align-items: center; gap: 5px; }
.card__location i { font-size: 0.65rem; color: var(--pink); }
.card__tagline { font-size: 0.8rem; color: var(--text-muted); font-style: italic; line-height: 1.4; margin-top: 2px; flex: 1; }
.card__footer { padding: 0 16px 12px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
.card__badge {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.2px;
  background: var(--gradient-purple-pink);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 700;
}
.card__heart { color: var(--text-dim); font-size: 1rem; transition: all var(--transition-fast); cursor: pointer; padding: 4px; }
.card__heart:hover { color: var(--pink); transform: scale(1.25); }

/* =============================================
   MODAL OVERLAY
   ============================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: all var(--transition-smooth);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 560px; max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: all var(--transition-smooth);
  box-shadow: 0 0 80px rgba(168,85,247,0.1), 0 40px 80px rgba(0,0,0,0.6);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }

.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-white);
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}
.modal__close:hover { background: rgba(236,72,153,0.3); border-color: var(--pink); transform: scale(1.08); }

.modal__body { display: flex; flex-direction: column; }
.modal__photo { width: 100%; height: auto; max-height: 420px; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0; display: block; }
.modal__info { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 16px; }
.modal__name-age { display: flex; align-items: baseline; gap: 10px; }
.modal__name { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--text-white); letter-spacing: -0.5px; }
.modal__age { font-size: 1.4rem; font-weight: 300; color: var(--text-dim); }
.modal__location { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-muted); }
.modal__location i { color: var(--pink); font-size: 0.8rem; }
.modal__separator { width: 40px; height: 3px; background: var(--gradient-purple-pink); border-radius: 2px; border: none; }
.modal__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); font-weight: 600; margin-bottom: 4px; }
.modal__bio { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; font-style: italic; }
.modal__tagline-block { background: rgba(168,85,247,0.06); border: 1px solid rgba(168,85,247,0.15); border-radius: var(--radius-sm); padding: 16px 20px; }
.modal__tagline { font-size: 1.05rem; color: var(--text-white); font-style: italic; line-height: 1.5; }
.modal__actions { display: flex; gap: 12px; margin-top: 8px; }
.btn--icon { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0; }
.btn--reply { flex: 1; height: 46px; border-radius: 46px; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; }

/* =============================================
   NO RESULTS
   ============================================= */
.no-results { text-align: center; padding: 80px 20px; color: var(--text-muted); }
.no-results.hidden { display: none; }
.no-results__icon {
  font-size: 3rem; margin-bottom: 14px;
  background: var(--gradient-purple-pink);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.no-results h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 6px; color: var(--text-white); }
.no-results p { color: var(--text-dim); font-size: 0.9rem; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid var(--border-color);
  background: var(--bg-card);
  padding: 36px 20px 24px;
  margin-top: 30px;
}
.footer__inner { max-width: 1320px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer .logo { align-items: center; }
.footer__tagline { color: var(--text-dim); font-size: 0.8rem; margin-top: 4px; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { color: var(--text-dim); text-decoration: none; font-size: 0.82rem; transition: color var(--transition-fast); }
.footer__links a:hover { color: var(--text-white); }
.footer__copy { color: #52525b; font-size: 0.72rem; }

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1350px) {
  .grid { grid-template-columns: repeat(3, var(--card-width)); }
  .filters__inner { max-width: 700px; }
}

/* Small tablet */
@media (max-width: 1020px) {
  .grid { grid-template-columns: repeat(2, var(--card-width)); }
  .hero { padding: 40px 16px 32px; }
  .filters__inner { max-width: 500px; }
}

/* Mobile */
@media (max-width: 680px) {
  .header__inner {
    padding: 10px 14px;
    min-height: 50px;
    position: relative;
  }

  .logo__top { font-size: 0.72rem; letter-spacing: 2.5px; }
  .logo__bottom { font-size: 1.45rem; }
  .logo__glitch { font-size: 1.45rem; }

  .hamburger {
    display: block;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav__list {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: rgba(12, 12, 14, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
  }
  .nav__list.open { display: flex; }
  .nav__link { font-size: 1rem; padding: 12px 16px; border-radius: 10px; width: 100%; }
  .nav__link--cta { display: inline-block; text-align: center; width: fit-content; margin-left: 0; margin-top: 6px; }

  .hero { padding: 32px 14px 28px; }
  .hero__stats { font-size: 0.72rem; padding: 8px 14px; gap: 6px; }

  .filters { top: 50px; }
  .filters__inner { padding: 10px 14px; gap: 8px; max-width: 100%; }
  .filters__inner.collapsed .filter-group,
  .filters__inner.collapsed .btn { display: none; }
  .filter-toggle { display: flex; }
  .filter-group { width: 100%; }
  .filter-select { width: 100%; min-width: auto; }
  .filters__inner .btn { flex: 1; }
  .filters__inner:not(.collapsed) .filter-group,
  .filters__inner:not(.collapsed) .btn { display: flex; }
  .filters__inner:not(.collapsed) .filter-group { width: 100%; }

  .grid { grid-template-columns: 1fr; justify-items: center; gap: 16px; }
  .card { width: 100%; max-width: 340px; height: auto; min-height: 420px; }
  .card__photo { height: auto; aspect-ratio: 3/3; }

  .section { padding: 36px 14px; }
  .section__header { margin-bottom: 24px; }

  .modal { max-width: 95vw; max-height: 88vh; border-radius: var(--radius-md); }
  .modal__info { padding: 20px 18px 24px; }
  .modal__name { font-size: 1.4rem; }
  .modal__age { font-size: 1.1rem; }
  .modal__photo { max-height: 300px; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .modal__actions { flex-direction: column; }
  .btn--reply { width: 100%; }

  .footer__links { flex-wrap: wrap; gap: 14px; justify-content: center; }
}