/* ============================================================
   Comisión Vecinal Altos de Alberdi
   Design: Modern Editorial Civic — v2
   Fonts: Bricolage Grotesque (display) + Plus Jakarta Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* === Reset & Variables === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --ink:        #0c1a2e;
  --primary:    #1a3a6b;
  --primary-lt: #2554a0;
  --accent:     #e85d26;
  --accent-lt:  #ff7540;
  --gold:       #c9a84c;

  /* Surfaces */
  --bg:         #f5f3ef;
  --surface:    #ffffff;
  --surface-2:  #f0ede8;

  /* Text */
  --text:       #1a1a1a;
  --text-2:     #4a4a4a;
  --text-muted: #7a7a7a;

  /* UI */
  --border:     #e0dbd2;
  --shadow-sm:  0 1px 3px rgba(12,26,46,.08);
  --shadow:     0 4px 16px rgba(12,26,46,.10);
  --shadow-lg:  0 12px 40px rgba(12,26,46,.14);
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --transition: all .22s cubic-bezier(.4,0,.2,1);

  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --max-w: 1240px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary-lt); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* === Utility === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.icon-sm { width: 16px; height: 16px; display: inline-block; vertical-align: middle; margin-right: 4px; flex-shrink: 0; }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}

/* === Typography === */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--text-2); }
p:last-child { margin-bottom: 0; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,26,46,.25);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-lt);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,38,.35);
}
.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn-outline-white:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; }
.btn-sm  { padding: .45rem 1rem; font-size: .82rem; }
.btn-lg  { padding: .9rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12,26,46,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--accent); }
.site-logo:hover .logo-icon-ring { stroke: var(--accent); }
.logo-icon-ring { transition: stroke .22s ease; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -.01em; }
.logo-sub  { font-size: .7rem; color: var(--gold); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }

.main-nav ul { display: flex; gap: .1rem; align-items: center; }
.main-nav a {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: .01em;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.1); }
li[class*="active"] > a { color: #fff !important; background: rgba(255,255,255,.12) !important; }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: .45rem 1.1rem !important;
}
.nav-cta:hover { background: var(--accent-lt) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero === */
.hero {
  background: var(--ink);
  color: #fff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
/* Geometric background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 50%, rgba(232,93,38,.18) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(26,58,107,.6) 0%, transparent 50%);
}
/* Dot grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,93,38,.15);
  color: var(--accent-lt);
  border: 1px solid rgba(232,93,38,.3);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.7); }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.03em;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-subtitle strong { color: rgba(255,255,255,.95); }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-stat-value span { color: var(--accent); }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .05em; margin-top: .25rem; }

/* === Section === */
.section { padding: 80px 0; }
.section-alt { background: var(--surface); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-header h2 { margin: 0; }
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

/* === Cards === */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.card-img-placeholder {
  width: 100%;
  height: 210px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img-placeholder svg { opacity: .2; width: 56px; height: 56px; }
.card-body { padding: 1.5rem; }
.card-meta {
  display: flex;
  gap: .75rem;
  align-items: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.card-meta-item { display: flex; align-items: center; gap: .25rem; }
.card-title {
  font-size: 1.1rem;
  margin-bottom: .6rem;
  letter-spacing: -.015em;
}
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--accent); }
.card-excerpt { font-size: .875rem; color: var(--text-muted); margin-bottom: 1.1rem; line-height: 1.6; }

/* News grid — editorial asymmetric feel */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.news-grid .card:first-child {
  grid-column: 1 / 3;
}
.news-grid .card:first-child .card-img,
.news-grid .card:first-child .card-img-placeholder {
  height: 280px;
}
.news-grid .card:first-child .card-title { font-size: 1.4rem; }

/* === Events === */
.events-list { display: flex; flex-direction: column; gap: .85rem; }
.event-item {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  display: flex;
  gap: 1.1rem;
  align-items: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.event-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.event-date-box {
  flex-shrink: 0;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  width: 52px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.event-date-box .day   { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.event-date-box .month { font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); font-weight: 600; }
.event-info { flex: 1; min-width: 0; }
.event-info h3 { font-size: .975rem; margin-bottom: .2rem; letter-spacing: -.01em; color: var(--ink); }
.event-location { font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }
.event-time { font-size: .82rem; color: var(--text-muted); flex-shrink: 0; font-weight: 500; }

/* === Business Cards === */
.business-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.business-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.business-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.business-card-img { width: 100%; height: 155px; object-fit: cover; }

/* Placeholder: initials on rich gradient */
.business-card-placeholder {
  width: 100%;
  height: 155px;
  background: linear-gradient(
    140deg,
    hsl(var(--business-hue, 215), 60%, 22%) 0%,
    hsl(var(--business-hue, 215), 55%, 42%) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  position: relative;
  overflow: hidden;
}
/* Subtle inner ring */
.business-card-placeholder::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.business-initials {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  letter-spacing: -.04em;
  line-height: 1;
  user-select: none;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 16px rgba(0,0,0,.3);
}

.business-card-body { padding: 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.business-card-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; letter-spacing: -.01em; }
.business-card-slogan { font-size: .8rem; color: var(--accent); font-style: italic; margin-bottom: .65rem; font-weight: 500; }
.business-card-contact { font-size: .82rem; color: var(--text-muted); margin-top: auto; }
.business-card-contact li { margin-bottom: .3rem; display: flex; align-items: center; gap: .35rem; }
.business-card-contact a { color: var(--text-muted); }
.business-card-contact a:hover { color: var(--accent); }

/* === Article page === */
.article { max-width: 780px; margin: 0 auto; }
.article-header { margin-bottom: 2rem; }
.article-img { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 2.5rem; }
.article-body { font-size: 1.05rem; line-height: 1.85; color: var(--text-2); }
.article-body h2,
.article-body h3 { color: var(--ink); margin: 2rem 0 .85rem; }
.article-body ul,
.article-body ol { margin: .75rem 0 .75rem 1.5rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: .35rem; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: .85rem 1.5rem;
  background: var(--surface-2);
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-2);
}

/* === Breadcrumb === */
.breadcrumb { display: flex; gap: .4rem; align-items: center; font-size: .82rem; color: var(--text-muted); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--primary-lt); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border); }

/* === Gallery === */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .85rem; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  background: var(--ink);
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, opacity .4s ease; }
.gallery-item:hover img { transform: scale(1.06); opacity: .75; }
.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(12,26,46,.8));
  color: #fff;
  padding: 1.5rem .85rem .75rem;
  transform: translateY(100%);
  transition: transform .3s ease;
  font-size: .82rem;
}
.gallery-item:hover .gallery-item-overlay { transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12,26,46,.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: -44px; right: 0;
  color: rgba(255,255,255,.8); font-size: 2rem; cursor: pointer;
  transition: var(--transition); background: none; border: none; line-height: 1;
}
.lightbox-close:hover { color: #fff; transform: rotate(90deg); }
.lightbox-caption { color: rgba(255,255,255,.65); text-align: center; margin-top: .75rem; font-size: .85rem; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%; width: 42px; height: 42px; font-size: 1.2rem; cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }

/* === Forms === */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; margin-bottom: .45rem; font-size: .875rem; color: var(--ink); }
.form-label .required { color: var(--accent); margin-left: .2rem; }
.form-control {
  display: block;
  width: 100%;
  padding: .72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .925rem;
  transition: var(--transition);
  background: var(--surface);
  color: var(--text);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-lt);
  box-shadow: 0 0 0 3px rgba(37,84,160,.12);
}
.form-control::placeholder { color: #b0aca4; }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-hint { font-size: .78rem; color: var(--text-muted); margin-top: .3rem; }
.form-error { font-size: .78rem; color: var(--accent); margin-top: .3rem; display: none; }
.form-control.error { border-color: var(--accent); }
.form-control.error + .form-error { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* === Contact Page === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 2.5rem; align-items: start; }
.contact-info-box {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: sticky;
  top: 90px;
}
.contact-info-box h3 { color: #fff; margin-bottom: 2rem; font-size: 1.4rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(232,93,38,.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--accent-lt); }
.contact-info-text strong { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.45); margin-bottom: .25rem; }
.contact-info-text span { font-size: .9rem; color: rgba(255,255,255,.85); }
.contact-map-placeholder {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  height: 180px;
  margin-top: 2rem;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px dashed rgba(255,255,255,.12);
  color: rgba(255,255,255,.35);
  font-size: .82rem; text-align: center; padding: 1rem;
}
.contact-form-box {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-box h3 { margin-bottom: 1.75rem; }

/* === Bonos / Payment === */
.bonos-steps { display: flex; gap: 0; margin-bottom: 3rem; }
.step-indicator { flex: 1; text-align: center; padding: 1rem; position: relative; }
.step-indicator:not(:last-child)::after {
  content: ''; position: absolute; top: 24px; right: -1px; width: 50%;
  height: 2px; background: var(--border); z-index: 0;
}
.step-indicator:not(:first-child)::before {
  content: ''; position: absolute; top: 24px; left: 0; width: 50%;
  height: 2px; background: var(--border);
}
.step-indicator.done::after,
.step-indicator.done::before,
.step-indicator.active::before { background: var(--accent); }
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface-2); color: var(--text-muted); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .6rem; position: relative; z-index: 1; transition: var(--transition);
  font-family: var(--font-display);
}
.step-indicator.active .step-num { background: var(--ink); color: #fff; }
.step-indicator.done   .step-num { background: var(--accent); color: #fff; }
.step-label { font-size: .78rem; font-weight: 600; color: var(--text-muted); }
.step-indicator.active .step-label { color: var(--ink); }

.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.payment-method-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--surface);
}
.payment-method-card:hover { border-color: var(--primary-lt); box-shadow: var(--shadow-sm); }
.payment-method-card.selected { border-color: var(--ink); background: var(--ink); }
.payment-method-card.selected .payment-method-name,
.payment-method-card.selected .payment-method-desc { color: #fff; }
.payment-method-card input[type=radio] { display: none; }
.payment-method-icon {
  width: 52px; height: 52px; border-radius: var(--radius-lg); margin: 0 auto .85rem;
  display: flex; align-items: center; justify-content: center;
}
.mp-icon       { background: #009ee3; }
.transfer-icon { background: var(--primary); }
.cash-icon     { background: #16a34a; }
.payment-method-icon svg { width: 26px; height: 26px; color: #fff; }
.payment-method-name { font-weight: 700; font-size: .95rem; color: var(--ink); margin-bottom: .25rem; }
.payment-method-desc { font-size: .78rem; color: var(--text-muted); }

.payment-detail-box {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.bank-detail-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem 0; border-bottom: 1px solid var(--border);
}
.bank-detail-item:last-child { border-bottom: none; }
.bank-detail-label { font-weight: 600; font-size: .875rem; color: var(--ink); }
.bank-detail-value {
  font-family: 'Courier New', monospace; font-size: .975rem;
  color: var(--primary-lt); background: var(--surface);
  padding: .3rem .7rem; border-radius: 6px; border: 1px solid var(--border);
}

/* Receipt */
.receipt-box {
  background: var(--surface);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.receipt-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.receipt-number {
  font-family: 'Courier New', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--surface-2);
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  display: inline-block;
  margin: .75rem 0;
  letter-spacing: .05em;
  border: 1px solid var(--border);
}
.success-box {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  max-width: 620px;
  margin: 2rem auto;
}
.success-icon {
  width: 68px; height: 68px; background: #22c55e; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; color: #fff; font-size: 2.2rem;
  box-shadow: 0 8px 24px rgba(34,197,94,.3);
}

/* === Pagination === */
.pagination { display: flex; gap: .35rem; justify-content: center; margin: 2.5rem 0; flex-wrap: wrap; }
.page-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 .75rem;
  border-radius: 50px;
  background: var(--surface);
  color: var(--ink);
  font-size: .875rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.page-link:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.page-link.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* === Search === */
.search-bar { display: flex; gap: .5rem; max-width: 480px; margin-bottom: 2rem; }
.search-bar input { flex: 1; }
.search-bar .btn { flex-shrink: 0; }

/* === Alerts === */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: .9rem;
  display: flex; align-items: flex-start; gap: .75rem;
  border-left: 4px solid;
}
.alert-success { background: #f0fdf4; border-color: #22c55e; color: #166534; }
.alert-danger  { background: #fff1f0; border-color: var(--accent); color: #b91c1c; }
.alert-warning { background: #fffbeb; border-color: #f59e0b; color: #92400e; }
.alert-info    { background: #eff6ff; border-color: #3b82f6; color: #1d4ed8; }

/* === Contact Bar === */
.contact-bar {
  background: var(--ink);
  color: #fff;
  padding: 1.75rem 0;
}
.contact-bar-inner {
  display: flex; gap: 2rem;
  justify-content: center; align-items: center; flex-wrap: wrap;
}
.contact-bar-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.75); }
.contact-bar-item svg { color: var(--accent); width: 17px; height: 17px; flex-shrink: 0; }

/* === Footer === */
.site-footer {
  background: #08111f;
  color: rgba(255,255,255,.55);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { color: #fff; margin-bottom: .5rem; font-size: 1.1rem; }
.footer-brand > p { color: var(--gold); font-size: .82rem; margin-bottom: .75rem; font-weight: 500; }
.footer-desc { color: rgba(255,255,255,.4); font-size: .82rem; line-height: 1.7; }
.footer-col h4 { color: rgba(255,255,255,.8); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.1rem; font-weight: 600; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a { color: rgba(255,255,255,.45); font-size: .85rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li { display: flex; gap: .5rem; align-items: flex-start; color: rgba(255,255,255,.45); font-size: .85rem; margin-bottom: .75rem; }
.footer-contact svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--accent); }

/* === Page Banner === */
.page-banner {
  background: var(--ink);
  color: #fff;
  padding: 56px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(232,93,38,.12) 0%, transparent 60%);
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .4rem; }
.page-banner p { color: rgba(255,255,255,.65); margin: 0; font-size: .95rem; }

/* === Empty State === */
.empty-state { text-align: center; padding: 5rem 2rem; color: var(--text-muted); }
.empty-state svg { width: 60px; height: 60px; margin: 0 auto 1.25rem; opacity: .25; color: var(--ink); }
.empty-state h3 { color: var(--text-muted); font-weight: 600; margin-bottom: .5rem; font-size: 1.1rem; }
.empty-state p { font-size: .9rem; }

/* === Tags / Badges === */
.tag { display: inline-flex; align-items: center; padding: .22rem .7rem; border-radius: 50px; font-size: .75rem; font-weight: 600; }
.tag-primary { background: rgba(26,58,107,.1); color: var(--primary); }
.tag-accent  { background: rgba(232,93,38,.12); color: var(--accent); }
.tag-event   { background: rgba(37,84,160,.1); color: var(--primary-lt); }

/* === Sidebar layout === */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
.sidebar-widget {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 { margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 2px solid var(--surface-2); font-size: .95rem; }
.related-news-item { display: flex; gap: .75rem; margin-bottom: 1rem; align-items: flex-start; }
.related-news-item:last-child { margin-bottom: 0; }
.related-news-img { width: 68px; height: 52px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.related-news-info h5 { font-size: .85rem; line-height: 1.35; margin-bottom: .2rem; }
.related-news-info h5 a { color: var(--ink); }
.related-news-info time { font-size: .75rem; color: var(--text-muted); }

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

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .contact-info-box { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid .card:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(8,17,31,.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,.07);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    z-index: 999;
  }
  .main-nav.open { max-height: 540px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 1rem; }
  .main-nav a { display: block; padding: .8rem 1rem; border-radius: var(--radius); font-size: 1rem; }

  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-value { font-size: 1.6rem; }

  .news-grid { grid-template-columns: 1fr; }
  .news-grid .card:first-child .card-img,
  .news-grid .card:first-child .card-img-placeholder { height: 220px; }
  .news-grid .card:first-child .card-title { font-size: 1.2rem; }

  .business-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .event-item { gap: .85rem; }
  .payment-methods { grid-template-columns: repeat(2, 1fr); }

  .contact-bar-inner { flex-direction: column; gap: .85rem; text-align: center; }
  .contact-bar-inner .btn { width: 100%; max-width: 220px; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-header { flex-direction: column; align-items: flex-start; }
  .section { padding: 56px 0; }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 44px 0; }
  .page-banner { padding: 36px 0 32px; }

  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .hero-stat { flex: 1 1 40%; }

  .news-grid .card:first-child .card-img,
  .news-grid .card:first-child .card-img-placeholder { height: 180px; }

  .business-grid { grid-template-columns: 1fr 1fr; }
  .business-card-placeholder { height: 130px; }
  .business-initials { font-size: 2.2rem; }

  .payment-methods { grid-template-columns: 1fr; }
  .bonos-steps { gap: 0; }
  .step-label { font-size: .7rem; }

  .event-item { flex-wrap: wrap; }
  .event-time { width: 100%; font-size: .78rem; }

  .form-row { grid-template-columns: 1fr; }

  .lightbox-prev { left: -36px; }
  .lightbox-next { right: -36px; }

  .btn-lg { padding: .8rem 1.6rem; font-size: .95rem; }

  .footer-grid { gap: 1.75rem; }
  .site-footer { padding: 40px 0 0; }
}


/* ============================================================
   Marketplace — Compra & Venta del Barrio
   ============================================================ */

/* Grid */
.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Category badge */
.cat-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .22rem .7rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.cat-vendo     { background: rgba(22,163,74,.12);  color: #15803d; }
.cat-compro    { background: rgba(37,84,160,.12);  color: #1d4ed8; }
.cat-cambio    { background: rgba(180,83,9,.12);   color: #b45309; }
.cat-servicios { background: rgba(109,40,217,.12); color: #6d28d9; }
.cat-busco     { background: rgba(232,93,38,.12);  color: #e85d26; }

/* Listing card */
.listing-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.listing-card-img-link {
    display: block;
    overflow: hidden;
}
.listing-card-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.listing-card:hover .listing-card-img { transform: scale(1.04); }

.listing-card-placeholder {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    transition: opacity .25s;
}
.listing-card:hover .listing-card-placeholder { opacity: .85; }

/* Category-specific placeholder tints */
.cat-placeholder-vendo     { background: rgba(22,163,74,.08); }
.cat-placeholder-compro    { background: rgba(37,84,160,.08); }
.cat-placeholder-cambio    { background: rgba(180,83,9,.08);  }
.cat-placeholder-servicios { background: rgba(109,40,217,.08);}
.cat-placeholder-busco     { background: rgba(232,93,38,.08); }

.listing-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.listing-card-title {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 .4rem;
}
.listing-card-title a {
    color: var(--ink);
    text-decoration: none;
}
.listing-card-title a:hover { color: var(--accent); }

.listing-card-excerpt {
    font-size: .82rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0 0 .75rem;
    flex: 1;
}
.listing-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: .5rem;
    margin-top: auto;
}

/* Featured badge */
.listing-featured-badge {
    position: absolute;
    top: .55rem;
    right: .55rem;
    background: #f59e0b;
    color: #fff;
    padding: .2rem .55rem;
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: .25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
}

/* Price */
.listing-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.1;
}
.listing-price-neg {
    font-size: .75rem;
    color: var(--text-light);
    margin-top: .1rem;
}

/* Filter pills */
.filter-pills {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}
.filter-pill {
    padding: .45rem 1.1rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    color: var(--text-2);
    background: var(--surface);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.filter-pill:hover,
.filter-pill.active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}
/* Category-specific active states */
.filter-pill[data-cat="vendo"].active    { background: #15803d; border-color: #15803d; }
.filter-pill[data-cat="compro"].active   { background: #1d4ed8; border-color: #1d4ed8; }
.filter-pill[data-cat="cambio"].active   { background: #b45309; border-color: #b45309; }
.filter-pill[data-cat="servicios"].active{ background: #6d28d9; border-color: #6d28d9; }
.filter-pill[data-cat="busco"].active    { background: #e85d26; border-color: #e85d26; }

/* CTA publish banner */
.publish-cta {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg, 16px);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}
.publish-cta h3 { color: #fff; font-size: 1.5rem; margin-bottom: .5rem; }
.publish-cta p  { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }

/* WhatsApp button */
.btn-whatsapp       { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #20b958; color: #fff; border-color: #20b958; }

/* Seller info box */
.seller-box {
    background: var(--surface, #fff);
    border-radius: var(--radius-lg, 16px);
    padding: 1.5rem;
    border: 1px solid var(--border);
}
.seller-avatar {
    width: 52px;
    height: 52px;
    background: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Page banner (reusable) */
.page-banner {
    background: var(--ink);
    color: #fff;
    padding: 3rem 0 2.5rem;
}
.page-banner .section-label { color: rgba(255,255,255,.6); }
.page-banner h1 { color: #fff; font-size: 2.25rem; margin: .3rem 0 .65rem; }
.page-banner p  { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; margin: 0; }
.page-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Section label */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--accent);
    margin-bottom: .3rem;
}

/* Aviso detail responsive */
@media (max-width: 900px) {
    .aviso-detail-grid { grid-template-columns: 1fr !important; }
}

/* Responsive marketplace */
@media (max-width: 900px) {
    .marketplace-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .marketplace-grid { grid-template-columns: 1fr; }
    .page-banner h1 { font-size: 1.6rem; }
    .publish-cta { padding: 1.75rem 1.25rem; }
}

/* ============================================================
   Module: Padrón Vecinal
   ============================================================ */
.padron-info-box {
    background: rgba(37,84,160,.06);
    border: 1px solid rgba(37,84,160,.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}
.padron-info-box svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.padron-number {
    font-family: 'Courier New', monospace;
    background: var(--light-2, #f5f3ef);
    border: 1px solid var(--border);
    padding: .35rem .8rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-block;
}

/* ============================================================
   Module: Grupos de WhatsApp
   ============================================================ */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}
.group-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.group-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    border-color: #25d366;
    transform: translateY(-2px);
}
.group-icon {
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.group-icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
}
.group-name {
    font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .35rem;
}
.group-desc {
    font-size: .875rem;
    color: var(--text-muted, #6b7280);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.group-meta {
    display: flex;
    gap: .85rem;
    align-items: center;
    margin-bottom: 1.1rem;
    font-size: .8rem;
    color: var(--text-muted, #6b7280);
}
.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
}
.btn-whatsapp:hover {
    background: #20b958;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.3);
}
.request-form-toggle {
    overflow: hidden;
    transition: max-height .35s ease;
    max-height: 0;
}
.request-form-toggle.open {
    max-height: 700px;
}
.request-form-inner {
    background: var(--light-2, #f5f3ef);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-top: 1rem;
    border: 1px solid var(--border);
}

/* ============================================================
   Module: SUM
   ============================================================ */
.sum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.activity-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}
.activity-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    transform: translateY(-3px);
    border-color: transparent;
}
.activity-card-header {
    padding: 1.25rem 1.25rem .75rem;
    border-bottom: 1px solid var(--border);
}
.activity-cat {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--accent);
    margin-bottom: .4rem;
}
.activity-name {
    font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.015em;
}
.activity-card-body {
    padding: 1rem 1.25rem;
}
.activity-detail-row {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    font-size: .82rem;
    color: var(--text-2, #374151);
    margin-bottom: .45rem;
}
.activity-detail-row svg {
    width: 15px;
    height: 15px;
    color: var(--text-muted, #6b7280);
    flex-shrink: 0;
    margin-top: 1px;
}
.activity-card-footer {
    padding: .85rem 1.25rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-2, #f9f8f6);
}
.activity-price {
    font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
    font-weight: 800;
    color: var(--ink);
    font-size: 1.1rem;
}
.activity-price.free {
    color: #16a34a;
}
.activity-cupo {
    font-size: .78rem;
    color: var(--text-muted, #6b7280);
}
.activity-cupo.full {
    color: var(--accent);
    font-weight: 600;
}
.sum-schedule {
    display: grid;
    gap: 1rem;
}
.sum-day-group {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.sum-day-header {
    background: var(--ink);
    color: #fff;
    padding: .75rem 1.25rem;
    font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
    font-weight: 700;
    font-size: .9rem;
}
.sum-activity-row {
    display: flex;
    gap: 1rem;
    padding: .9rem 1.25rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.sum-activity-row:last-child {
    border-bottom: none;
}
.sum-time {
    font-weight: 700;
    font-size: .875rem;
    color: var(--primary);
    min-width: 90px;
    white-space: nowrap;
}
.sum-activity-info {
    flex: 1;
}
.sum-activity-info h4 {
    font-size: .95rem;
    margin: 0 0 .1rem;
    font-weight: 600;
}
.sum-activity-info span {
    font-size: .78rem;
    color: var(--text-muted, #6b7280);
}

@media (max-width: 768px) {
    .groups-grid { grid-template-columns: 1fr; }
    .sum-grid    { grid-template-columns: 1fr; }
    .sum-activity-row { flex-wrap: wrap; }
    .sum-time { min-width: unset; }
}

/* === Business Profile Page (public) === */
.biz-header { background: var(--ink); color: #fff; padding: 56px 0; position: relative; overflow: hidden; }
.biz-header::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 70% 50%, rgba(22,163,74,.12) 0%, transparent 55%); }
.biz-header::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 28px 28px; }
.biz-header-inner { display: flex; gap: 2rem; align-items: center; position: relative; z-index: 2; }
.biz-logo-placeholder { width: 96px; height: 96px; border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: #fff; flex-shrink: 0; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.biz-logo-img { width: 96px; height: 96px; border-radius: var(--radius-xl); object-fit: cover; flex-shrink: 0; border: 3px solid rgba(255,255,255,.2); }
.biz-name { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: .3rem; }
.biz-slogan { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 1rem; }
.biz-contact-row { display: flex; gap: .65rem; flex-wrap: wrap; }

/* Tabs */
.profile-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 2rem; }
.profile-tab { padding: .85rem 1.5rem; font-size: .9rem; font-weight: 600; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); background: none; border-left: none; border-right: none; border-top: none; font-family: var(--font-body); }
.profile-tab:hover { color: var(--ink); }
.profile-tab.active { color: var(--ink); border-bottom-color: var(--ink); }
.profile-tab-content { display: none; }
.profile-tab-content.active { display: block; }

/* Offer cards */
.offers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.25rem; }
.offer-card { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); }
.offer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.offer-card-img { width: 100%; height: 140px; object-fit: cover; }
.offer-card-body { padding: 1.1rem 1.25rem; }
.offer-type-badge { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .2rem .6rem; border-radius: 50px; display: inline-block; margin-bottom: .5rem; }
.ot-oferta    { background: rgba(232,93,38,.12); color: #e85d26; }
.ot-promocion { background: rgba(37,84,160,.12);  color: #2554a0; }
.ot-novedad   { background: rgba(22,163,74,.12);  color: #16a34a; }
.ot-evento    { background: rgba(109,40,217,.12); color: #7c3aed; }
.offer-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; letter-spacing: -.01em; }
.offer-desc  { font-size: .82rem; color: var(--text-muted); margin-bottom: .85rem; line-height: 1.55; }
.offer-price-row { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.offer-price-new { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: #16a34a; }
.offer-price-old { font-size: .88rem; color: var(--text-muted); text-decoration: line-through; }
.offer-discount-badge { background: #e85d26; color: #fff; font-size: .7rem; font-weight: 700; padding: .18rem .5rem; border-radius: 50px; }
.offer-expires { font-size: .72rem; color: var(--text-muted); margin-top: .5rem; }

/* AdSense-style premium ad slots */
.ad-slot { border-radius: var(--radius-lg); overflow: hidden; position: relative; background: var(--surface); border: 1.5px dashed var(--border); display: flex; align-items: center; justify-content: center; }
.ad-slot-label { position: absolute; top: 8px; right: 10px; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); opacity: .6; }
.ad-slot-leaderboard { height: 90px; width: 100%; }
.ad-slot-rectangle { height: 250px; width: 100%; }
.ad-slot-half-page  { height: 600px; width: 300px; }
.ad-slot-inline { height: 180px; width: 100%; background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%); }
.ad-slot-inner { text-align: center; padding: 1.5rem; }
.ad-slot-inner svg { width: 32px; height: 32px; color: var(--border); margin: 0 auto .75rem; }
.ad-slot-inner p { font-size: .82rem; color: var(--text-muted); margin: 0 0 .75rem; }
.ad-slot-premium { border-color: var(--gold); background: linear-gradient(135deg, rgba(201,168,76,.05) 0%, rgba(201,168,76,.02) 100%); }
.ad-slot-premium .ad-slot-label { color: var(--gold); opacity: 1; }

@media (max-width: 768px) {
  .biz-header-inner { flex-wrap: wrap; }
  .biz-logo-placeholder, .biz-logo-img { width: 72px; height: 72px; font-size: 1.6rem; }
  .biz-name { font-size: 1.4rem; }
  .offers-grid { grid-template-columns: 1fr; }
  .profile-tab { padding: .7rem 1rem; font-size: .85rem; }
}
