/* ============================================================
   KINEANUNCIOS.COM — CSS GLOBAL
   Diseño 1: Elegante Editorial
   Cormorant Garamond + DM Sans · Blanco & Rosado Oscuro
   ============================================================ */

:root {
  --accent:       #a8174a;
  --accent-dark:  #7d1037;
  --accent-mid:   #c94070;
  --accent-light: #fef5f8;
  --accent-soft:  #fce8ef;
  --accent-border:#f4c5d5;
  --bg:           #ffffff;
  --bg2:          #fdf8fa;
  --bg3:          #faf0f4;
  --text:         #1c0912;
  --text2:        #4a1e2e;
  --text3:        #9a6070;
  --border:       #eedce4;
  --green:        #16a34a;
  --green-light:  #f0fdf4;
  --green-border: #bbf7d0;
  --radius:       14px;
  --shadow:       0 2px 12px rgba(168,23,74,.08);
  --shadow-hover: 0 8px 28px rgba(168,23,74,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg2); color: var(--text); line-height: 1.6; font-size: 16px; }

/* SKIP LINK */
.skip-link { position: absolute; top: -100%; left: 0; background: var(--accent); color: #fff; padding: 8px 16px; font-size: .85rem; font-weight: 600; text-decoration: none; z-index: 999; border-radius: 0 0 8px 0; }
.skip-link:focus { top: 0; }

/* ── HEADER ── */
.site-header { background: #fff; border-bottom: 1px solid var(--border); padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 62px; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 8px rgba(168,23,74,.06); }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 700; color: var(--text); text-decoration: none; letter-spacing: -.5px; }
.logo span { color: var(--accent); }
.logo em { font-style: normal; font-size: .95rem; color: var(--text3); font-weight: 400; margin-left: 3px; }
.header-nav { display: flex; gap: 6px; align-items: center; }
.header-nav a { font-size: .77rem; font-weight: 500; color: var(--text2); text-decoration: none; padding: 6px 14px; border: 1px solid var(--border); border-radius: 20px; transition: all .18s; white-space: nowrap; }
.header-nav a:hover { background: var(--accent-light); color: var(--accent); border-color: var(--accent-border); }
.header-nav a[aria-current="page"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.header-nav .nav-cta { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 600; }
.header-nav .nav-cta:hover { background: var(--accent-dark); }

/* Colores secciones en nav */
.header-nav .nav-trans[aria-current="page"]   { background: #6b21a8; border-color: #6b21a8; }
.header-nav .nav-masajes[aria-current="page"] { background: #0f766e; border-color: #0f766e; }

/* ── BREADCRUMB ── */
.breadcrumb { background: #fff; border-bottom: 1px solid var(--border); padding: 9px 32px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; max-width: 1100px; margin: 0 auto; font-size: .77rem; color: var(--text3); }
.breadcrumb li + li::before { content: '/'; color: var(--border); margin: 0 4px; }
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--text2); font-weight: 500; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%); border-bottom: 1px solid var(--border); padding: 56px 32px 48px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 320px; height: 320px; background: radial-gradient(circle, var(--accent-soft) 0%, transparent 0%); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--accent-light); border: 1px solid var(--accent-border); color: var(--accent); font-size: .68rem; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 14px; }
.hero-badge::before { content: '●'; font-size: .4rem; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; color: var(--text); line-height: 1.05; margin-bottom: 12px; letter-spacing: -1px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-desc { font-size: .92rem; color: var(--text2); max-width: 560px; margin: 0 auto 22px; line-height: 1.75; }
.hero-stats { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; margin-bottom: 24px; }
.stat { text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--accent); display: block; line-height: 1; }
.stat-label { font-size: .68rem; color: var(--text3); text-transform: uppercase; letter-spacing: .6px; margin-top: 3px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; font-weight: 600; font-size: .9rem; padding: 12px 28px; border-radius: var(--radius); text-decoration: none; transition: all .2s; border: 2px solid var(--accent); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(168,23,74,.28); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--accent); font-weight: 600; font-size: .9rem; padding: 12px 28px; border-radius: var(--radius); text-decoration: none; border: 2px solid var(--accent-border); transition: all .2s; }
.btn-secondary:hover { border-color: var(--accent); background: var(--accent-light); transform: translateY(-2px); }

/* ── FILTROS ── */
.filter-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 10px 32px; overflow-x: auto; }
.filter-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 8px; align-items: center; white-space: nowrap; }
.filter-label { font-size: .67rem; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: .6px; flex-shrink: 0; }
.filter-chip { display: inline-flex; align-items: center; gap: 5px; font-size: .76rem; font-weight: 500; padding: 5px 13px; border-radius: 20px; border: 1px solid var(--border); background: #fff; color: var(--text2); text-decoration: none; transition: all .18s; white-space: nowrap; flex-shrink: 0; }
.filter-chip:hover, .filter-chip.active { background: var(--accent-light); color: var(--accent); border-color: var(--accent-border); }

/* ── LAYOUT ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.section { padding: 44px 0; }
.section + .section { border-top: 1px solid var(--border); }
.section-label { font-size: .67rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; display: block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -.5px; }
.section-desc { font-size: .87rem; color: var(--text2); line-height: 1.7; margin-bottom: 22px; }
.ver-mas { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--accent); text-decoration: none; margin-top: 18px; padding-bottom: 2px; border-bottom: 2px solid transparent; transition: border-color .18s; }
.ver-mas:hover { border-color: var(--accent); }

/* ── ANUNCIOS GRID ── */
.ads-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 16px; }
article.ad-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s; }

/* VIP — fondo dorado suave */
article.ad-card.card-vip {
  background: #f5f558;
  border-color: #f59e0b;
  box-shadow: 0 2px 12px rgba(245,158,11,.15);
}

/* Destacado — fondo rosado suave */
article.ad-card.card-destacado {
  background: #fee4ec;
  border-color: #fb87af;
  box-shadow: 0 2px 12px rgba(168,23,74,.1);
}
article.ad-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--accent-border); }
.ad-link { display: flex; flex-direction: column; flex: 1; text-decoration: none; color: inherit; }
.badge-tipo { position: absolute; top: 9px; left: 9px; z-index: 3; font-size: 0.60rem; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; padding: 3px 8px; border-radius: 6px; }
.badge-tipo.vip  { background: #d97706; color: #fff; }
.badge-tipo.dest { background: var(--accent); color: #fff; }
.badge-tipo.nuevo{ background: #16a34a; color: #fff; }
.badge-ver { position: absolute; top: 9px; right: 9px; z-index: 3; background: rgba(168,23,74,.88); color: #fff; font-size: 0.60rem; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; padding: 3px 8px; border-radius: 6px; }
.ad-img-wrap { width: 100%; aspect-ratio: 2/3; overflow: hidden; background: var(--bg3); flex-shrink: 0; }
.ad-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .3s; }
article.ad-card:hover 
.ad-img-wrap img { transform: scale(1.04); }
.ad-body { padding: 12px 13px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ad-title { font-family: 'Cormorant Garamond', serif; font-size: 1.31rem; font-weight: 700; color: #6a0529; line-height: 1.2; }
.ad-desc { font-size: .91rem; color: #000000; line-height: 1.55; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; -webkit-line-clamp: 2; }
.ad-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.ad-tag { font-size: .64rem; padding: 2px 8px; border-radius: 6px; font-weight: 600; }
.tag-age  { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-border); }
.tag-dist { background: var(--accent-light); color: var(--accent-dark); border: 1px solid var(--accent-border); }
.tag-info { background: var(--bg3); color: var(--text3); border: 1px solid var(--border); }

/* ── DISTRITOS GRID ── */
.distritos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 8px; }
.distrito-pill { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; color: inherit; transition: all .18s; }
.distrito-pill:hover { background: var(--accent-light); border-color: var(--accent-border); transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.distrito-pill.featured { border-color: var(--accent-border); background: var(--accent-light); }
.d-name { font-size: .87rem; font-weight: 700; color: var(--text); }
.distrito-pill:hover .d-name, .distrito-pill.featured .d-name { color: var(--accent); }
.d-meta { font-size: .68rem; color: var(--text3); margin-top: 2px; }
.d-arrow { font-size: .75rem; color: var(--text3); transition: color .18s; }
.distrito-pill:hover .d-arrow { color: var(--accent); }

/* ── CATEGORIAS ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.cat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 6px; transition: all .18s; }
.cat-card:hover { background: var(--accent-light); border-color: var(--accent-border); transform: translateY(-1px); }
.cat-icon { font-size: 1.4rem; }
.cat-name { font-size: .85rem; font-weight: 700; color: var(--text); }
.cat-card:hover .cat-name { color: var(--accent); }
.cat-desc { font-size: .72rem; color: var(--text3); line-height: 1.4; }

/* ── PAGINACION ── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 14px; font-size: .85rem; font-weight: 600; border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; color: var(--text2); transition: all .18s; }
.pagination a:hover { background: var(--accent-light); color: var(--accent); border-color: var(--accent-border); }
.pagination .current { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── SEO SECTION ── */
.seo-section { background: #fff; border-top: 1px solid var(--border); padding: 44px 0; }
.seo-inner { max-width: 900px; margin: 0 auto; padding: 0 16px; }
.seo-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.seo-inner h3 { font-size: .98rem; font-weight: 700; color: var(--accent); margin: 20px 0 8px; }
.seo-inner p { font-size: .88rem; color: var(--text2); line-height: 1.85; margin-bottom: 10px; }
.seo-inner strong { color: var(--text); }
.seo-inner a { color: var(--accent); text-decoration: none; }
.seo-inner a:hover { text-decoration: underline; }

/* ── FAQ ── */
.faq-section { background: var(--bg2); padding: 36px 32px; border-top: 1px solid var(--border); }
.faq-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 14px; max-width: 900px; margin-left: auto; margin-right: auto; }
.faq-section details { max-width: 900px; margin: 0 auto 8px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.faq-section summary { padding: 13px 16px; font-size: .88rem; font-weight: 600; color: var(--text); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-section summary::after { content: '+'; font-size: 1.1rem; color: var(--accent); font-weight: 700; }
.faq-section details[open] summary::after { content: '−'; }
.faq-section details p { padding: 0 16px 13px; font-size: .84rem; color: var(--text2); line-height: 1.7; }

/* ── NEARBY ── */
.nearby-section { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 32px; }
.nearby-inner { max-width: 1100px; margin: 0 auto; }
.nearby-label { font-size: .68rem; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 10px; }
.nearby-links { display: flex; flex-wrap: wrap; gap: 8px; }
.nearby-links a { font-size: .78rem; font-weight: 500; padding: 5px 13px; border: 1px solid var(--border); border-radius: 20px; background: #fff; color: var(--text2); text-decoration: none; transition: all .18s; }
.nearby-links a:hover { background: var(--accent-light); color: var(--accent); border-color: var(--accent-border); }
.nearby-links .hub-link { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 600; }
.nearby-links .hub-link:hover { background: var(--accent-dark); }

/* ── PERFIL ── */
.profile-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: start; padding: 32px 0 100px; }
.profile-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.pbadge { font-size: .6rem; font-weight: 700; text-transform: uppercase; padding: 3px 10px; border-radius: 6px; letter-spacing: .3px; }
.pb-vip  { background: #d97706; color: #fff; }
.pb-dest { background: var(--accent); color: #fff; }
.pb-ver  { background: var(--accent-dark); color: #fff; }
.pb-live { background: #16a34a; color: #fff; }
.profile-name { font-family:'DM Sans', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: -.5px; line-height: 1.1; }
.profile-sub { font-size: .84rem; color: var(--text2); margin-bottom: 14px; }
.profile-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.pchip { display: inline-flex; align-items: center; gap: 5px; font-size: .75rem; font-weight: 600; padding: 5px 12px; border-radius: 20px; border: 1px solid var(--border); background: #fff; color: var(--text2); }
.pc-age { background: var(--accent-soft); color: var(--accent); border-color: var(--accent-border); }
.pc-loc { background: var(--accent-light); color: var(--accent-dark); border-color: var(--accent-border); }
.pc-hrs { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.pc-nat { background: var(--bg3); color: var(--text3); border-color: var(--border); }
.profile-counter { font-size: .76rem; color: var(--text3); margin-bottom: 16px; }
.profile-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 18px; }
.profile-photos img { width: 100%; border-radius: 10px; background: var(--bg3); }
.profile-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 14px; box-shadow: var(--shadow); }
.profile-card h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 2px solid var(--accent-light); }
.profile-desc { font-size: .87rem; color: var(--text2); line-height: 1.85; }
.tarifas-wrap { display: flex; flex-direction: column; gap: 6px; }
.tarifa-item { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: .85rem; }
.tarifa-item:last-child { border-bottom: none; }
.tarifa-tiempo { color: var(--text2); font-weight: 500; }
.tarifa-precio { color: var(--accent); font-weight: 700; font-size: .95rem; }
.svc-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.svc { font-size: .75rem; font-weight: 500; padding: 4px 11px; background: var(--accent-light); border: 1px solid var(--accent-border); border-radius: 20px; color: var(--accent-dark); transition: all .15s; }
.svc:hover { background: var(--accent-soft); }




/* Foto horizontal — ocupa todo el ancho sin forzar vertical */
.profile-photos img.horizontal {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}

/* Foto vertical — formato normal */
.profile-photos img.vertical {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}


/* SIDEBAR */
.sidebar { position: sticky; top: 74px; display: flex; flex-direction: column; gap: 12px; }
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); }
.sidebar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 12px; text-align: center; }
.sidebar-subtitle { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.contact-btns { display: flex; flex-direction: column; gap: 8px; }
.btn-call { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 12px; border-radius: var(--radius); font-size: .9rem; font-weight: 600; text-decoration: none; transition: all .18s; background: var(--accent); color: #fff; border: 2px solid var(--accent); }
.btn-call:hover { background: var(--accent-dark); }
.btn-wa { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 12px; border-radius: var(--radius); font-size: .9rem; font-weight: 600; text-decoration: none; transition: all .18s; background: #25d366; color: #fff; border: 2px solid #25d366; }
.btn-wa:hover { background: #1dba59; }
.btn-tg { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 12px; border-radius: var(--radius); font-size: .9rem; font-weight: 600; text-decoration: none; transition: all .18s; background: #fff; color: #0088cc; border: 2px solid #0088cc; }
.btn-tg:hover { background: #0088cc; color: #fff; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 8px 4px; font-size: .81rem; }
.info-table td:first-child { color: var(--text3); font-weight: 600; width: 44%; }
.sidebar-aviso { background: var(--accent-soft); border: 1px solid var(--accent-border); border-radius: var(--radius); padding: 11px 13px; font-size: .76rem; color: var(--text2); line-height: 1.6; }

/* BARRA FIJA MOVIL */
.mobile-contact-bar { display: none; }

/* ── FOOTER ── */
footer.site-footer { background: var(--text); color: rgba(255,255,255,.65); padding: 44px 32px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.footer-col h4 { font-size: .7rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.footer-col a { display: block; font-size: .78rem; color: rgba(255,255,255,.5); text-decoration: none; margin-bottom: 5px; transition: color .18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: #fff; text-decoration: none; }
.footer-logo span { color: var(--accent-mid); }
.footer-copy { font-size: .7rem; color: rgba(255,255,255,.35); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-legal-links a { font-size: .72rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .18s; }
.footer-legal-links a:hover { color: rgba(255,255,255,.65); }
.footer-legal { font-size: .65rem; color: rgba(255,255,255,.22); margin-top: 8px; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .profile-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .sidebar .sidebar-card:first-child { display: none; }
  .mobile-contact-bar {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: #fff; border-top: 1px solid var(--border);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 8px;
    box-shadow: 0 -4px 16px rgba(168,23,74,.1);
  }
  .mobile-contact-bar a {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: 6px; padding: 12px 8px; border-radius: var(--radius);
    font-size: .82rem; font-weight: 600; text-decoration: none; transition: all .18s;
  }
  .mcb-call { background: var(--accent); color: #fff; border: 2px solid var(--accent); }
  .mcb-call:hover { background: var(--accent-dark); }
  .mcb-wa { background: #25d366; color: #fff; border: 2px solid #25d366; }
  .mcb-tg { background: #fff; color: #0088cc; border: 2px solid #0088cc; }
  .profile-layout { padding-bottom: 90px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .site-header { padding: 0 16px; }
  .hero { padding: 40px 16px 32px; }
  .faq-section, .nearby-section { padding: 24px 16px; }
  .filter-bar { padding: 10px 16px; }
}

@media (max-width: 640px) {
  .header-nav .hide-mobile { display: none; }
  /* Ocultar Kines, Trans, Masajes en móvil — solo quedan logo + Publicar */
  .header-nav .nav-seccion { display: none; }
  /* Evitar scroll horizontal causado por el header */
  .site-header { padding: 0 14px; overflow: hidden; }
  body { overflow-x: hidden; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero-stats { gap: 18px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
  .ads-grid { grid-template-columns: 1fr; gap: 12px; }
  .ad-img-wrap { aspect-ratio: 2/3; }
  .profile-photos { grid-template-columns: 1fr; }
 .profile-photos img.horizontal { aspect-ratio: 4/3; }
.profile-photos img.vertical   { aspect-ratio: 3/4; }
.profile-photos img:not(.horizontal):not(.vertical) { aspect-ratio: 3/4; }
  .distritos-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .footer-top { grid-template-columns: 1fr; gap: 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
.badge-ver {  font-size: 1rem; }
.badge-tipo {  font-size: 1rem;  }

    /* ← AGREGA AQUI */
  .profile-layout { padding: 14px 14px 90px; }
  .profile-card { margin-left: 0; margin-right: 0; }
}
