/* ================================================================
   KinesEnSMP.com — style.css
   Hoja de estilos global compartida por todas las páginas
   ================================================================ */

/* ── RESET & VARIABLES ── */
:root {
  --accent:      #a8174a;
  --accent-dark: #7a1035;
  --accent-glow: rgba(168, 23, 74, .16);
  --accent-light:rgba(168, 23, 74, .08);
  --gold:        #e8a030;
  --gold-lt:     rgba(232, 160, 48, .14);

  --bg:          #0d0508;
  --bg2:         #130a0d;
  --bg3:         #1c0f14;
  --surface:     #1f1118;
  --surface2:    #261520;
  --border:      rgba(168, 23, 74, .2);
  --border-soft: rgba(168, 23, 74, .1);

  --txt:         #f0e8eb;
  --txt2:        #a8909a;
  --txt3:        #6b5560;

  --green:       #22c55e;
  --green-bg:    rgba(34, 197, 94, .12);
  --wa-color:    #25d366;

  --radius:      10px;
  --radius-sm:   6px;
  --radius-lg:   14px;
  --max-width:   1200px;

  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: .55;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 900; letter-spacing: -.02em; line-height: 1.15; }
p { margin-bottom: .75rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--txt); }

/* ── LAYOUT ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section    { padding: 52px 20px; max-width: var(--max-width); margin: 0 auto; }

/* ── HEADER ── */
.site-header {
  background: rgba(13, 5, 8, .93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--txt);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.logo .accent { color: var(--accent); }
.logo-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent);
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--txt2);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: var(--accent-glow);
}
.header-cta {
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, transform .15s;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ── MOBILE MENU ── */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--txt2);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    z-index: 199;
    align-items: flex-start;
    gap: 4px;
  }
  .main-nav.open a { font-size: .9rem; padding: 8px 12px; width: 100%; }
  .menu-toggle { display: block; }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
}
.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--txt3);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--txt3); text-decoration: none; transition: color .15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .current { color: var(--txt2); }

/* ── TICKER ── */
.ticker {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 40px;
  animation: ticker-scroll 26s linear infinite;
  white-space: nowrap;
}
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  font-size: .77rem;
  color: var(--txt2);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .18s, transform .15s, box-shadow .18s;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(168, 23, 74, .35);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--txt);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-wa {
  background: var(--wa-color);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .28);
}
.btn-wa:hover { background: #1da851; transform: translateY(-1px); }
.btn-call {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(168, 23, 74, .28);
}
.btn-call:hover { background: var(--accent-dark); }
.btn-tg { background: #2481cc; color: #fff; }
.btn-tg:hover { background: #1a6aaa; }
.btn-sm { padding: 7px 14px; font-size: .8rem; }
.btn-block { width: 100%; }

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.4;
  flex-shrink: 0;
}
.badge-vip      { background: #fffbeb; color: #92400e; border: 1px solid #f59e0b; }
.badge-dest     { background: rgba(168,23,74,.15); color: #f87171; border: 1px solid rgba(168,23,74,.3); }
.badge-verif    { background: rgba(34,197,94,.18); color: #4ade80; border: 1px solid rgba(74,222,128,.28); }
.badge-disp     { background: rgba(34,197,94,.88); color: #fff; }
.badge-nuevo    { background: var(--gold-lt); color: var(--gold); border: 1px solid rgba(232,160,48,.3); }

/* ── AD CARD ── */
.ad-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--txt);
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .22s, box-shadow .22s;
}
.ad-card:hover {
  border-color: rgba(168, 23, 74, .5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.ad-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg3);
}
.ad-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ad-card:hover .ad-img-wrap img { transform: scale(1.05); }
.ad-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.ad-body {
  padding: 13px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ad-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.ad-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .77rem;
  color: var(--txt2);
}
.ad-nac {
  font-size: .7rem;
  background: var(--bg3);
  color: var(--txt3);
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: capitalize;
}
.ad-desc {
  font-size: .79rem;
  color: var(--txt2);
  line-height: 1.5;
  flex: 1;
}
.ad-zona {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .74rem;
  color: var(--txt3);
  margin-top: 3px;
}
.ad-zona::before { content: '📍'; font-size: .7rem; }
.ad-footer {
  padding: 9px 13px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.ad-btn {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: .76rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s;
  cursor: pointer;
}
.ad-btn-wa  { background: rgba(37,211,102,.12); color: var(--wa-color); border: 1px solid rgba(37,211,102,.2); }
.ad-btn-wa:hover { background: rgba(37,211,102,.22); }
.ad-btn-ver { background: var(--accent-glow); color: var(--accent); border: 1px solid var(--border); }
.ad-btn-ver:hover { background: rgba(168,23,74,.2); }

/* ── SECTION HEADERS ── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -.02em;
}
.section-title .accent { color: var(--accent); }
.section-link {
  font-size: .82rem;
  color: var(--txt3);
  text-decoration: none;
  transition: color .15s;
}
.section-link:hover { color: var(--accent); }
.divider {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* ── GRIDS ── */
.ads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 280px));
  gap: 13px;
  justify-content: start;
}
.zonas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 13px;
}

/* ── ZONA CARD ── */
.zona-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-decoration: none;
  color: var(--txt);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.zona-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, var(--accent-glow), transparent 65%);
  opacity: 0;
  transition: opacity .3s;
}
.zona-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(168,23,74,.18); }
.zona-card:hover::before { opacity: 1; }
.zona-icon { font-size: 1.5rem; margin-bottom: 9px; display: block; }
.zona-name { font-weight: 700; font-size: .92rem; margin-bottom: 3px; }
.zona-count { font-size: .75rem; color: var(--accent); font-weight: 600; }
.zona-desc  { font-size: .73rem; color: var(--txt3); margin-top: 5px; line-height: 1.4; }

/* ── SEO BLOCK ── */
.seo-block {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 20px;
}
.seo-inner { max-width: 900px; margin: 0 auto; }
.seo-inner h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; }
.seo-inner h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin: 26px 0 10px; }
.seo-inner p  { color: var(--txt2); line-height: 1.8; font-size: .91rem; }
.seo-inner a  { color: var(--accent); text-decoration: none; }
.seo-inner a:hover { text-decoration: underline; }

/* Pills de avenidas */
.av-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.av-pill {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--txt2);
  font-size: .77rem;
  padding: 5px 13px;
  border-radius: 20px;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.av-pill:hover { border-color: var(--accent); color: var(--accent); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 9px; margin-top: 20px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.faq-item summary {
  padding: 13px 17px;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 1.15rem; transition: transform .2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer { padding: 0 17px 14px; color: var(--txt2); font-size: .85rem; line-height: 1.7; }
.faq-item .faq-answer a { color: var(--accent); text-decoration: none; }

/* ── FILTERS BAR ── */
.filters-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  position: sticky;
  top: 64px;
  z-index: 100;
}
.filters-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-label {
  font-size: .73rem;
  color: var(--txt3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-right: 4px;
}
.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--txt2);
  font-size: .77rem;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: .18s;
  white-space: nowrap;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

/* ── SIDEBAR ── */
.page-layout {
  max-width: var(--max-width);
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.sidebar-box h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-box h3 .accent { color: var(--accent); }
.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--txt2);
  text-decoration: none;
  font-size: .83rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(168,23,74,.07);
  transition: color .15s;
}
.sidebar-links a:last-child { border: none; }
.sidebar-links a:hover { color: var(--accent); }
.sidebar-links a span { font-size: .7rem; background: var(--accent-glow); color: var(--accent); padding: 2px 7px; border-radius: 3px; }
.sidebar-refs { list-style: none; }
.sidebar-refs li {
  font-size: .79rem;
  color: var(--txt3);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.03);
  display: flex;
  align-items: center;
  gap: 5px;
}
.sidebar-refs li::before { content: '📍'; font-size: .68rem; }
.sidebar-refs li:last-child { border: none; }
.pub-box {
  background: linear-gradient(135deg, rgba(168,23,74,.14), rgba(122,16,53,.07));
  border-color: rgba(168,23,74,.3);
}
.pub-box p { font-size: .81rem; color: var(--txt2); line-height: 1.6; margin-bottom: 13px; }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0 40px;
}
.page-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--txt2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  text-decoration: none;
  transition: .18s;
}
.page-btn:hover,
.page-btn.active {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── CONTACT BOX ── */
.contact-box {
  position: sticky;
  top: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-head {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  padding: 20px 22px;
}
.contact-head-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
}
.contact-head-sub { font-size: .77rem; color: rgba(255,255,255,.7); margin-top: 4px; }
.contact-head-badges { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.ch-badge {
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.contact-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.contact-disp { display: flex; align-items: center; gap: 8px; font-size: .81rem; }
.disp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  flex-shrink: 0;
  animation: blink-dot 2s infinite;
}
@keyframes blink-dot { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.contact-tel  { text-align: center; font-size: .79rem; color: var(--txt3); }
.contact-tel strong { color: var(--txt2); }
.contact-nota {
  font-size: .7rem;
  color: var(--txt3);
  text-align: center;
  line-height: 1.5;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.tarifa-section { margin-top: 6px; padding-top: 12px; border-top: 1px solid var(--border); }
.tarifa-section-title {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--txt3);
  font-weight: 700;
  margin-bottom: 8px;
}
.tarifa-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .82rem;
}
.tarifa-row:last-child { border: none; }
.tarifa-label { color: var(--txt2); }
.tarifa-val   { color: var(--txt); font-weight: 600; }

/* ── GALLERY ── */
.gallery { position: sticky; top: 80px; }
.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  margin-bottom: 10px;
  aspect-ratio: .78;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-tl { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.gallery-tr { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; z-index: 2; }
.gallery-counter {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  color: #fff; font-size: .7rem;
  padding: 4px 10px; border-radius: 4px;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-thumbs img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .18s, opacity .18s;
  opacity: .65;
}
.gallery-thumbs img:hover,
.gallery-thumbs img.active { border-color: var(--accent); opacity: 1; }

/* ── PROFILE CONTENT ── */
.profile-wrap {
  max-width: var(--max-width);
  margin: 36px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  gap: 28px;
  align-items: start;
}
.profile-content { display: flex; flex-direction: column; gap: 18px; }
.profile-head { padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.profile-tipo { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 11px; }
.profile-name {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 10px;
}
.profile-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--txt2);
}
.profile-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  color: var(--txt2);
  margin-top: 9px;
}
.profile-loc .dot { color: var(--accent); }
.profile-loc a { color: var(--accent); text-decoration: none; }
.profile-visits {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .73rem;
  color: var(--txt3);
  margin-top: 8px;
}
.profile-visits strong { color: var(--txt2); }

.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.card-title {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--txt);
}
.card-title::before {
  content: '';
  display: block;
  width: 3px; height: 17px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.datos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dato-item { display: flex; flex-direction: column; gap: 2px; }
.dato-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--txt3); font-weight: 700; }
.dato-val   { font-size: .87rem; color: var(--txt); font-weight: 500; }
.servicios-list { display: flex; flex-wrap: wrap; gap: 8px; }
.servicio-tag {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--txt2);
  font-size: .77rem;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
}
.servicio-tag::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: .72rem; }
.atiende-list { display: flex; gap: 10px; flex-wrap: wrap; }
.atiende-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: .81rem;
  color: var(--txt2);
  display: flex; align-items: center; gap: 7px;
}
.atiende-item .ico { font-size: .95rem; }

/* Perfiles relacionados */
.rel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.rel-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-decoration: none;
  color: var(--txt);
  transition: border-color .18s, transform .18s;
}
.rel-card:hover { border-color: rgba(168,23,74,.5); transform: translateY(-2px); }
.rel-img { aspect-ratio: 1; overflow: hidden; background: var(--surface); position: relative; }
.rel-img img { width: 100%; height: 100%; object-fit: cover; }
.rel-body { padding: 10px 12px; }
.rel-name { font-family: var(--font-display); font-size: .92rem; font-weight: 700; }
.rel-meta { font-size: .72rem; color: var(--txt2); margin-top: 2px; }

/* ── FORM STYLES ── */
.form-wrap {
  max-width: 820px;
  margin: 40px auto;
  padding: 0 20px;
}
.form-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 20px;
}
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-section-title::before {
  content: '';
  display: block;
  width: 3px; height: 17px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .8rem; font-weight: 600; color: var(--txt2); }
.form-label .req { color: var(--accent); }
.form-input,
.form-select,
.form-textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--txt);
  font-family: var(--font-body);
  font-size: .88rem;
  padding: 10px 13px;
  transition: border-color .18s;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168,23,74,.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--txt3); }
.form-select option { background: var(--bg3); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: .73rem; color: var(--txt3); margin-top: 3px; }
.form-checks { display: flex; flex-wrap: wrap; gap: 10px; }
.form-check { display: flex; align-items: center; gap: 7px; cursor: pointer; }
.form-check input { accent-color: var(--accent); width: 15px; height: 15px; }
.form-check span { font-size: .83rem; color: var(--txt2); }
.form-file-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.form-file-area:hover { border-color: var(--accent); background: var(--accent-light); }
.form-file-area input { display: none; }
.form-file-icon { font-size: 2rem; margin-bottom: 10px; }
.form-file-txt { font-size: .84rem; color: var(--txt2); }
.form-file-txt strong { color: var(--accent); }
.form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background .18s, transform .15s;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(168,23,74,.3);
}
.form-submit:hover { background: var(--accent-dark); transform: translateY(-2px); }
.form-alert {
  background: var(--green-bg);
  border: 1px solid rgba(34,197,94,.2);
  color: var(--green);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: .85rem;
  margin-bottom: 16px;
  display: none;
}
.form-alert.show { display: block; }
.form-plan-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.plan-card {
  background: var(--bg3);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  cursor: pointer;
  transition: .2s;
  text-align: center;
}
.plan-card:hover  { border-color: var(--accent); }
.plan-card.selected { border-color: var(--accent); background: var(--accent-glow); }
.plan-icon  { font-size: 1.6rem; margin-bottom: 8px; }
.plan-name  { font-weight: 700; font-size: .92rem; margin-bottom: 4px; }
.plan-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--accent); margin-bottom: 6px; }
.plan-desc  { font-size: .74rem; color: var(--txt2); line-height: 1.5; }

/* ── HERO (index) ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 20px 64px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168,23,74,.17) 0%, transparent 68%);
  border-bottom: 1px solid var(--border);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-lt);
  border: 1px solid rgba(232,160,48,.28);
  color: var(--gold);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.7rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -.025em;
}
.hero h1 em { color: var(--accent); font-style: italic; }
.hero-sub {
  font-size: 1rem;
  color: var(--txt2);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}
.hero-stat strong .accent { color: var(--accent); }
.hero-stat small { font-size: .72rem; color: var(--txt3); text-transform: uppercase; letter-spacing: .06em; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (zona) ── */
.page-hero {
  padding: 52px 20px 44px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(168,23,74,.13) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.hero-badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.hero-badge {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  padding: 4px 12px; border-radius: 20px;
  background: var(--accent-glow); color: var(--accent); border: 1px solid rgba(168,23,74,.24);
}
.hero-badge-ok { background: rgba(34,197,94,.1); color: #4ade80; border-color: rgba(74,222,128,.2); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 12px;
}
.page-hero h1 em { color: var(--accent); font-style: italic; }
.page-intro { font-size: .94rem; color: var(--txt2); max-width: 600px; line-height: 1.75; }
.page-intro strong { color: var(--txt); }
.page-hero-stat { text-align: right; }
.page-stat-icon { font-size: 3.2rem; line-height: 1; margin-bottom: 6px; }
.page-stat-num  { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--accent); line-height: 1; }
.page-stat-lbl  { font-size: .72rem; color: var(--txt3); text-transform: uppercase; letter-spacing: .06em; }

/* ── AGE GATE ── */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(5,2,4,.97);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.age-gate.hidden { display: none; }
.age-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 80px rgba(168,23,74,.14);
}
.age-icon   { font-size: 2.8rem; margin-bottom: 16px; }
.age-box h2 { font-family: var(--font-display); font-size: 1.65rem; font-weight: 900; margin-bottom: 10px; }
.age-box p  { color: var(--txt2); font-size: .87rem; line-height: 1.65; margin-bottom: 28px; }
.age-box p a { color: var(--accent); text-decoration: none; }
.age-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.age-exit {
  background: transparent; color: var(--txt3);
  border: 1px solid var(--border); padding: 12px 20px;
  border-radius: var(--radius-sm); font-weight: 600;
  font-size: .9rem; cursor: pointer; text-decoration: none;
  transition: color .15s;
}
.age-exit:hover { color: var(--txt); }
.age-accept {
  background: var(--accent); color: #fff; border: none;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: background .18s; font-family: var(--font-body);
}
.age-accept:hover { background: var(--accent-dark); }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 50px 20px 24px;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { font-size: 1.25rem; margin-bottom: 12px; }
.footer-brand p { font-size: .81rem; color: var(--txt3); line-height: 1.7; max-width: 270px; }
.footer-col h4 {
  font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--txt3); margin-bottom: 14px;
}
.footer-col a { display: block; color: var(--txt2); text-decoration: none; font-size: .83rem; padding: 3px 0; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .74rem;
  color: var(--txt3);
}
.footer-bottom a { color: var(--txt3); text-decoration: none; margin-left: 14px; }
.footer-bottom a:hover { color: var(--accent); }
.footer-zone-links {
  max-width: var(--max-width);
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.footer-zone-links a {
  font-size: .77rem; color: var(--txt3); text-decoration: none;
  padding: 4px 12px; border: 1px solid var(--border); border-radius: 20px;
  transition: .15s;
}
.footer-zone-links a:hover { color: var(--accent); border-color: var(--accent); }

/* ── ADMIN / WATERMARK ── */
.admin-wrap { max-width: 900px; margin: 40px auto; padding: 0 20px; }
.admin-header {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 24px 28px;
}
.admin-header h1 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 4px; }
.admin-header p  { color: rgba(255,255,255,.75); font-size: .85rem; }
.admin-body { background: var(--surface); border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius) var(--radius); padding: 28px; }
.log-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: 'Courier New', monospace;
  font-size: .8rem;
  color: var(--txt2);
  max-height: 320px;
  overflow-y: auto;
  line-height: 1.7;
}
.log-ok   { color: var(--green); }
.log-err  { color: #f87171; }
.log-info { color: var(--gold); }
.prog-bar { background: var(--bg3); border-radius: 4px; height: 8px; overflow: hidden; margin: 10px 0; }
.prog-fill { height: 100%; background: var(--accent); border-radius: 4px; transition: width .3s; }
.img-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; margin-top: 16px; }
.img-preview-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.img-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.img-preview-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.7); color: var(--green);
  font-size: .65rem; text-align: center; padding: 3px;
}
.img-preview-badge.err { color: #f87171; }

/* ── 404 ── */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 60vh;
}
.not-found-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(168,23,74,.3);
}
.not-found h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
.not-found p  { color: var(--txt2); max-width: 440px; line-height: 1.7; margin-bottom: 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .profile-wrap { grid-template-columns: 1fr 1fr; }
  .profile-wrap .contact-box { grid-column: 1 / -1; position: static; }
  .gallery { position: static; }
}
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-plan-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .profile-wrap { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-stat  { text-align: left; }
  .datos-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 52px 20px 48px; }
}
@media (max-width: 600px) {
  .ads-grid { grid-template-columns: repeat(1, 1fr); }
  .zonas-grid { grid-template-columns: repeat(2, 1fr); }
  .sidebar { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .rel-grid { grid-template-columns: repeat(2, 1fr); }
  .age-box { padding: 32px 24px; }
}
@media (max-width: 400px) {
  .ads-grid { grid-template-columns: 1fr; }
}


@media (max-width: 768px) {
  .contact-body .btn {
    display: none;
  }

  .contact-fixed-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 10px 14px;
    gap: 8px;
  }

  .contact-fixed-bar a {
    flex: 1;
    text-align: center;
    padding: 11px 8px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .82rem;
    text-decoration: none;
  }

  .cfb-wa   { background: var(--wa-color); color: #fff; }
  .cfb-call { background: var(--accent); color: #fff; }
  .cfb-tg   { background: #2481cc; color: #fff; }
}

@media (min-width: 769px) {
  .contact-fixed-bar { display: none; }
}

/* Diferenciadores por tipo — agregar AL FINAL del archivo */
.ad-card-vip {
  border-color: rgba(232,160,48,.4);
  background: linear-gradient(160deg, #1f1118, #1a130a);
}
.ad-card-destacado {
  border-color: rgba(168,23,74,.35);
  background: linear-gradient(160deg, #1f1118, #1a0f16);
}
.ad-card-gratis {
  border-color: var(--border);
  background: var(--surface);
}