/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --green:      #00B386;
  --green-dk:   #007A5E;
  --green-lt:   #E6F7F3;
  --green-neon: #00eb5b;
  --black:      #1A1A1A;
  --gray-900:   #2D2D2D;
  --gray-700:   #444444;
  --gray-500:   #717171;
  --gray-300:   #BBBBBB;
  --gray-100:   #F2F2F2;
  --white:      #FFFFFF;
  --border:     #DDDDDD;
  --orange:     #FF6B35;
  --rating:     #00AA6C;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.1);
  --shadow-md:  0 2px 12px rgba(0,0,0,.12);
  --shadow-lg:  0 4px 24px rgba(0,0,0,.15);
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --nav-h:      60px;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--black); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TIPOGRAFÍA ─────────────────────────────────────────── */
h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; }
.eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: .5rem; display: block; }

/* ── BOTONES ────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: 10px 20px; border-radius: var(--radius); font-size: .9rem; font-weight: 600; transition: all .18s; cursor: pointer; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dk); }
.btn-outline { border: 1.5px solid var(--border); color: var(--gray-700); background: var(--white); }
.btn-outline:hover { border-color: var(--black); color: var(--black); }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: var(--gray-900); }
.btn-sm { padding: 7px 14px; font-size: .8rem; }

/* ── NAV ────────────────────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--border);
  height: var(--nav-h); display: flex; align-items: center;
  padding: 0 24px; gap: 24px;
  transition: box-shadow .2s;
}
#site-nav.scrolled { box-shadow: var(--shadow-md); }
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo svg { height: 32px; }
.nav-logo-text { font-size: 1.15rem; font-weight: 800; letter-spacing: -.5px; }
.nav-logo-text span { color: var(--green); }
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-link { padding: 6px 12px; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 500; color: var(--gray-700); transition: background .15s, color .15s; }
.nav-link:hover { background: var(--gray-100); color: var(--black); }
.nav-link.active { color: var(--green); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-search-mini { display: flex; align-items: center; gap: 8px; background: var(--gray-100); border-radius: 99px; padding: 7px 14px; font-size: .85rem; color: var(--gray-500); border: 1.5px solid transparent; transition: border-color .15s; }
.nav-search-mini:focus-within { border-color: var(--green); background: var(--white); }
.nav-search-mini input { background: none; border: none; outline: none; font-size: .85rem; color: var(--black); width: 180px; }
.nav-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: var(--white); font-size: .8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: .25s; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  padding-top: var(--nav-h);
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #003D2E 0%, #006B52 40%, #00AA7A 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: .06;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.8) 1px, transparent 0);
  background-size: 32px 32px;
}
.hero-photo { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.hero-photo::after { content:''; position:absolute; inset:0; background: linear-gradient(to right, #003D2E 0%, transparent 60%); }
.hero-content { position: relative; z-index: 2; padding: 60px 5vw; max-width: 680px; }
.hero-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green-neon); margin-bottom: 1rem; }
.hero-h1 { font-size: clamp(2rem,4.5vw,3.5rem); color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.hero-h1 em { color: var(--green-neon); font-style: normal; }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.65; margin-bottom: 2rem; max-width: 520px; }

/* BUSCADOR HERO */
.hero-search {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 620px;
}
.hero-search-tabs { display: flex; border-bottom: 1px solid var(--border); }
.hs-tab { flex: 1; padding: 10px 8px; font-size: .8rem; font-weight: 600; color: var(--gray-500); text-align: center; cursor: pointer; border-bottom: 2px solid transparent; transition: .15s; }
.hs-tab.active { color: var(--green); border-color: var(--green); }
.hero-search-body { display: flex; align-items: center; padding: 14px 16px; gap: 0; }
.hs-field { display: flex; align-items: center; gap: 10px; flex: 1; }
.hs-field-icon { color: var(--gray-400); font-size: 18px; flex-shrink: 0; }
.hs-input-wrap { flex: 1; }
.hs-label { font-size: .68rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.hs-input { width: 100%; border: none; outline: none; font-size: .95rem; font-weight: 500; color: var(--black); background: transparent; }
.hs-input::placeholder { color: var(--gray-300); font-weight: 400; }
.hs-divider { width: 1px; height: 36px; background: var(--border); margin: 0 14px; flex-shrink: 0; }
.hs-btn { background: var(--green); color: var(--white); border-radius: var(--radius); padding: 12px 22px; font-size: .9rem; font-weight: 700; display: flex; align-items: center; gap: 8px; flex-shrink: 0; transition: background .18s; }
.hs-btn:hover { background: var(--green-dk); }
.hero-stats { display: flex; gap: 1.5rem; margin-top: 1.75rem; flex-wrap: wrap; }
.hero-stat { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: .85rem; }
.hero-stat i { font-size: 16px; color: var(--green-neon); }

/* ── SECTION BASE ───────────────────────────────────────── */
.section { padding: 48px 5vw; }
.section.bg-gray { background: var(--gray-100); }
.section.bg-green-lt { background: var(--green-lt); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.section-title { font-size: clamp(1.3rem,2.5vw,1.9rem); color: var(--black); }
.section-sub { font-size: .95rem; color: var(--gray-500); margin-top: .4rem; }
.see-all { font-size: .88rem; font-weight: 600; color: var(--green); border-bottom: 1px solid var(--green); padding-bottom: 1px; white-space: nowrap; }
.see-all:hover { color: var(--green-dk); border-color: var(--green-dk); }

/* ── CATEGORÍAS ─────────────────────────────────────────── */
.cat-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-pill { display: flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 99px; border: 1.5px solid var(--border); background: var(--white); font-size: .88rem; font-weight: 500; color: var(--gray-700); white-space: nowrap; cursor: pointer; transition: all .15s; flex-shrink: 0; }
.cat-pill:hover { border-color: var(--green); color: var(--green); }
.cat-pill.active { background: var(--black); border-color: var(--black); color: var(--white); }
.cat-pill .emoji { font-size: 1.1rem; }

/* ── GRID DIRECTORIO ───────────────────────────────────── */
.dir-layout { display: grid; grid-template-columns: 280px 1fr; gap: 0; align-items: start; }
.dir-sidebar { position: sticky; top: calc(var(--nav-h) + 16px); padding-right: 24px; }
.dir-results { min-height: 400px; }

/* FILTROS SIDEBAR */
.filter-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; margin-bottom: 16px; }
.filter-title { font-size: .85rem; font-weight: 700; color: var(--black); margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.filter-clear { font-size: .75rem; font-weight: 500; color: var(--green); cursor: pointer; }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; border-bottom: 1px solid var(--gray-100); }
.filter-option:last-child { border-bottom: none; }
.filter-checkbox { width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid var(--gray-300); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: .15s; }
.filter-option:hover .filter-checkbox { border-color: var(--green); }
.filter-option.checked .filter-checkbox { background: var(--green); border-color: var(--green); }
.filter-option.checked .filter-checkbox::after { content: '✓'; color: white; font-size: 11px; font-weight: 700; }
.filter-label { font-size: .88rem; color: var(--gray-700); flex: 1; }
.filter-count { font-size: .75rem; color: var(--gray-400); }
.price-pills { display: flex; gap: 6px; }
.price-pill { padding: 5px 12px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); font-size: .82rem; font-weight: 600; color: var(--gray-700); cursor: pointer; transition: .15s; }
.price-pill:hover, .price-pill.active { border-color: var(--black); background: var(--black); color: var(--white); }

/* DIR RESULTADOS HEADER */
.dir-results-header { display: flex; align-items: center; justify-content: space-between; padding: 0 0 16px; margin-bottom: 4px; border-bottom: 1px solid var(--border); gap: 12px; flex-wrap: wrap; }
.dir-count { font-size: .9rem; color: var(--gray-500); }
.dir-count strong { color: var(--black); }
.dir-sort { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--gray-500); }
.dir-sort select { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px 10px; font-size: .85rem; color: var(--black); outline: none; cursor: pointer; }
.dir-view-toggle { display: flex; gap: 4px; }
.view-btn { padding: 6px 10px; border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: .8rem; color: var(--gray-500); transition: .15s; }
.view-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }

/* CARDS DIRECTORIO */
.dir-grid { display: flex; flex-direction: column; gap: 16px; }
.dir-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.dir-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.dir-card.sponsored { border-color: var(--green); }
.dir-card-img { position: relative; height: 180px; overflow: hidden; background: var(--gray-100); }
.dir-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.dir-card:hover .dir-card-img img { transform: scale(1.04); }
.dir-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, var(--green-lt), #C0EDE0); }
.dir-card-badge { position: absolute; top: 10px; left: 10px; font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 99px; text-transform: uppercase; letter-spacing: .06em; }
.dir-card-badge.premium { background: var(--orange); color: white; }
.dir-card-badge.verified { background: var(--green); color: white; }
.dir-card-badge.sponsored { background: var(--black); color: white; }
.dir-card-gallery { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,.55); color: white; font-size: .72rem; padding: 3px 8px; border-radius: 99px; display: flex; align-items: center; gap: 4px; }
.dir-card-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.dir-card-rank { font-size: .72rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .08em; }
.dir-card-name { font-size: 1.15rem; font-weight: 700; color: var(--black); line-height: 1.25; }
.dir-card-cat { font-size: .82rem; color: var(--gray-500); }
.dir-card-rating { display: flex; align-items: center; gap: 8px; }
.rating-bubbles { display: flex; gap: 2px; }
.bubble { width: 14px; height: 14px; border-radius: 50%; background: var(--gray-200); }
.bubble.filled { background: var(--rating); }
.bubble.half { background: linear-gradient(to right, var(--rating) 50%, var(--gray-200) 50%); }
.rating-num { font-size: .9rem; font-weight: 700; color: var(--black); }
.rating-count { font-size: .82rem; color: var(--gray-400); }
.dir-card-desc { font-size: .88rem; color: var(--gray-600); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dir-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.dir-tag { font-size: .75rem; padding: 3px 9px; border-radius: 99px; background: var(--gray-100); color: var(--gray-600); border: 1px solid var(--border); }
.dir-tag.green { background: var(--green-lt); color: var(--green-dk); border-color: #B2E0D5; }
.dir-card-meta { display: flex; align-items: center; gap: 16px; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--gray-100); }
.dir-meta-item { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--gray-500); }
.dir-meta-item.open { color: var(--rating); font-weight: 600; }
.dir-meta-item i { font-size: 14px; }
.dir-card-coupon { display: flex; align-items: center; gap: 8px; background: var(--green-lt); border-radius: var(--radius-sm); padding: 7px 10px; border: 1px dashed var(--green); margin-top: 4px; }
.coupon-code { font-family: 'Courier New', monospace; font-size: .82rem; font-weight: 700; color: var(--green-dk); background: white; padding: 2px 8px; border-radius: 4px; border: 1px solid #B2E0D5; }
.coupon-desc { font-size: .8rem; color: var(--green-dk); flex: 1; }
.copy-btn { font-size: .75rem; font-weight: 600; color: var(--white); background: var(--green); padding: 4px 10px; border-radius: 4px; transition: background .15s; }
.copy-btn:hover { background: var(--green-dk); }
.copy-btn.copied { background: var(--rating); }

/* ── MAPA ────────────────────────────────────────────────── */
.dir-map-wrap { position: sticky; top: calc(var(--nav-h) + 16px); }
.dir-map { height: calc(100vh - var(--nav-h) - 32px); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--gray-100); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; position: relative; }
.dir-map-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px,transparent 1px), linear-gradient(90deg,var(--border) 1px,transparent 1px); background-size: 32px 32px; opacity: .5; }
.dir-map-pin { position: absolute; display: flex; flex-direction: column; align-items: center; cursor: pointer; transition: transform .15s; }
.dir-map-pin:hover { transform: scale(1.1); z-index: 10; }
.dir-map-pin .pin-icon { width: 36px; height: 36px; border-radius: 50% 50% 50% 0; background: var(--green); transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.dir-map-pin .pin-icon i { transform: rotate(45deg); font-size: 16px; color: white; }
.dir-map-pin.restaurant .pin-icon { background: var(--green); }
.dir-map-pin.store .pin-icon { background: var(--orange); }
.dir-map-pin.beauty .pin-icon { background: #9B59B6; }
.dir-map-pin .pin-label { font-size: .72rem; font-weight: 700; color: white; background: var(--black); padding: 2px 8px; border-radius: 99px; margin-top: 4px; white-space: nowrap; opacity: 0; transform: translateY(4px); transition: .15s; }
.dir-map-pin:hover .pin-label { opacity: 1; transform: none; }
.map-toggle { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); background: var(--white); border: 1px solid var(--border); border-radius: 99px; padding: 9px 18px; font-size: .85rem; font-weight: 600; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-md); cursor: pointer; transition: all .15s; }
.map-toggle:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── FICHA DETALLE ──────────────────────────────────────── */
.ficha-hero { padding-top: var(--nav-h); background: var(--black); min-height: 300px; position: relative; overflow: hidden; }
.ficha-gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 4px; }
.ficha-gallery-grid .g-main { grid-row: span 2; }
.g-img { width: 100%; height: 100%; object-fit: cover; }
.ficha-gallery-grid > div:first-child { border-radius: var(--radius) 0 0 var(--radius); overflow: hidden; }
.ficha-gallery-grid > div:nth-child(2) { border-radius: 0 var(--radius) 0 0; overflow: hidden; }
.ficha-gallery-grid > div:last-child { border-radius: 0 0 var(--radius) 0; overflow: hidden; position: relative; }
.gallery-more { position: absolute; inset: 0; background: rgba(0,0,0,.45); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.1rem; cursor: pointer; }
.ficha-breadcrumb { font-size: .8rem; color: var(--gray-400); padding: 14px 5vw; display: flex; align-items: center; gap: 6px; background: white; border-bottom: 1px solid var(--border); }
.ficha-breadcrumb a { color: var(--green); }
.ficha-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; padding: 32px 5vw; max-width: 1200px; margin: 0 auto; align-items: start; }
.ficha-main {}
.ficha-header { margin-bottom: 20px; }
.ficha-badges { display: flex; gap: 8px; margin-bottom: 10px; }
.ficha-badge { font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; text-transform: uppercase; }
.ficha-badge.premium { background: var(--orange); color: white; }
.ficha-badge.open { background: var(--green-lt); color: var(--green-dk); border: 1px solid #B2E0D5; }
.ficha-badge.verified { background: var(--green); color: white; }
.ficha-name { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: var(--black); margin-bottom: 6px; }
.ficha-cat { font-size: .9rem; color: var(--gray-500); margin-bottom: 10px; }
.ficha-rating-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rating-big { display: flex; align-items: center; gap: 8px; }
.rating-big .bubbles-lg { display: flex; gap: 3px; }
.bubble-lg { width: 18px; height: 18px; border-radius: 50%; background: var(--gray-200); }
.bubble-lg.filled { background: var(--rating); }
.rating-n { font-size: 1.1rem; font-weight: 700; color: var(--black); }
.rating-c { font-size: .85rem; color: var(--gray-400); }
.ficha-rank { font-size: .85rem; font-weight: 700; color: var(--green); }
.ficha-actions { display: flex; gap: 10px; margin: 20px 0; flex-wrap: wrap; }
.ficha-tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.ficha-tag { font-size: .82rem; padding: 5px 12px; border-radius: 99px; background: var(--gray-100); border: 1px solid var(--border); color: var(--gray-700); }
.ficha-tag.vc { background: var(--green-lt); color: var(--green-dk); border-color: #B2E0D5; }
.ficha-desc { font-size: .95rem; line-height: 1.75; color: var(--gray-700); margin-bottom: 24px; }
.ficha-coupon-box { background: var(--green-lt); border: 1.5px dashed var(--green); border-radius: var(--radius-lg); padding: 18px 20px; margin-bottom: 24px; }
.ficha-coupon-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--green-dk); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.ficha-coupon-title { font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.ficha-coupon-row { display: flex; align-items: center; gap: 10px; }
.ficha-coupon-code { font-family: 'Courier New', monospace; font-size: 1.1rem; font-weight: 700; letter-spacing: .08em; background: white; border: 1.5px solid #B2E0D5; border-radius: var(--radius-sm); padding: 6px 14px; color: var(--green-dk); }
.ficha-coupon-btn { background: var(--green); color: white; padding: 8px 18px; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 700; transition: background .15s; }
.ficha-coupon-btn:hover { background: var(--green-dk); }
.ficha-coupon-validity { font-size: .78rem; color: var(--green-dk); margin-top: 8px; opacity: .7; }

/* RESEÑAS */
.reviews-section { margin-top: 28px; }
.reviews-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.reviews-summary { display: flex; align-items: center; gap: 24px; background: var(--gray-100); border-radius: var(--radius); padding: 18px; margin-bottom: 20px; }
.rev-big-n { font-size: 3rem; font-weight: 800; color: var(--black); line-height: 1; }
.rev-big-stars { color: var(--rating); font-size: 1.2rem; }
.rev-big-count { font-size: .82rem; color: var(--gray-400); }
.rev-bars { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.rev-bar-row { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--gray-500); }
.rev-bar-track { flex: 1; height: 6px; background: var(--gray-200); border-radius: 99px; overflow: hidden; }
.rev-bar-fill { height: 100%; background: var(--rating); border-radius: 99px; }
.review-card { border-bottom: 1px solid var(--border); padding: 18px 0; }
.review-card:last-child { border-bottom: none; }
.rev-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rev-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 700; color: white; flex-shrink: 0; }
.rev-name { font-size: .92rem; font-weight: 700; color: var(--black); }
.rev-date { font-size: .78rem; color: var(--gray-400); margin-left: auto; }
.rev-stars { color: var(--rating); font-size: .9rem; margin-bottom: 6px; }
.rev-text { font-size: .9rem; color: var(--gray-700); line-height: 1.65; }
.rev-response { background: var(--gray-100); border-radius: var(--radius-sm); padding: 12px 14px; margin-top: 12px; }
.rev-response-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; color: var(--gray-500); margin-bottom: 6px; }
.rev-response-text { font-size: .85rem; color: var(--gray-700); line-height: 1.6; }

/* SIDEBAR FICHA */
.ficha-side {}
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; }
.info-card-header { background: var(--black); color: var(--white); padding: 14px 18px; font-size: .88rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.info-row { display: flex; align-items: flex-start; gap: 12px; padding: 13px 18px; border-bottom: 1px solid var(--gray-100); }
.info-row:last-child { border-bottom: none; }
.info-icon { width: 32px; height: 32px; border-radius: var(--radius-sm); background: var(--gray-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; color: var(--gray-500); }
.info-label { font-size: .72rem; color: var(--gray-400); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .05em; }
.info-val { font-size: .9rem; color: var(--black); font-weight: 500; }
.info-val a { color: var(--green); }
.info-val.open { color: var(--rating); }
.horario-row { display: flex; justify-content: space-between; font-size: .82rem; padding: 3px 0; }
.horario-row .dia { color: var(--gray-500); }
.horario-row .hora { color: var(--black); font-weight: 500; }
.horario-row.today .dia { color: var(--green); font-weight: 700; }
.map-mini { height: 160px; background: var(--gray-100); border-radius: var(--radius); overflow: hidden; margin: 0 18px 14px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; position: relative; cursor: pointer; }
.map-mini-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px,transparent 1px), linear-gradient(90deg,var(--border) 1px,transparent 1px); background-size: 20px 20px; opacity: .6; }
.map-mini-pin { position: relative; z-index: 2; font-size: 2.2rem; }
.map-mini-label { position: relative; z-index: 2; font-size: .78rem; font-weight: 600; color: var(--black); background: white; padding: 3px 10px; border-radius: 99px; border: 1px solid var(--border); }
.map-mini-link { position: relative; z-index: 2; font-size: .78rem; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.similares-grid { display: flex; flex-direction: column; gap: 0; }
.sim-card { display: flex; gap: 12px; align-items: center; padding: 12px 18px; border-bottom: 1px solid var(--gray-100); cursor: pointer; transition: background .15s; text-decoration: none; color: inherit; }
.sim-card:last-child { border-bottom: none; }
.sim-card:hover { background: var(--gray-100); }
.sim-img { width: 50px; height: 50px; border-radius: var(--radius-sm); background: var(--gray-100); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.sim-img img { width: 100%; height: 100%; object-fit: cover; }
.sim-name { font-size: .88rem; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.sim-loc { font-size: .78rem; color: var(--gray-400); }
.sim-rating { font-size: .8rem; color: var(--rating); font-weight: 600; margin-left: auto; white-space: nowrap; }

/* ── NEWSLETTER ─────────────────────────────────────────── */
.nl-section { background: linear-gradient(135deg, #003D2E, #006B52); padding: 60px 5vw; text-align: center; }
.nl-section .eyebrow { color: var(--green-neon); justify-content: center; display: block; }
.nl-title { font-size: clamp(1.5rem,3vw,2.2rem); color: white; margin-bottom: .75rem; }
.nl-sub { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 2rem; }
.nl-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.nl-input { flex: 1; padding: 13px 16px; border-radius: var(--radius); border: none; font-size: .95rem; outline: none; }
.nl-btn { background: var(--green-neon); color: var(--black); padding: 13px 22px; border-radius: var(--radius); font-size: .92rem; font-weight: 700; transition: opacity .15s; white-space: nowrap; }
.nl-btn:hover { opacity: .88; }
.nl-msg { font-size: .85rem; color: var(--green-neon); margin-top: .75rem; min-height: 1.2em; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--black); color: rgba(255,255,255,.6); padding: 48px 5vw 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-top: 12px; max-width: 240px; }
.footer-col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: white; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col a:hover { color: var(--green-neon); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: rgba(255,255,255,.4); font-size: .8rem; transition: color .15s; }
.footer-social a:hover { color: var(--green-neon); }

/* ── REVEAL ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dir-layout { grid-template-columns: 1fr; }
  .dir-sidebar { position: static; padding-right: 0; }
  .dir-map-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ficha-layout { grid-template-columns: 1fr; }
  .ficha-gallery-grid { grid-template-rows: 180px; grid-template-columns: 1fr; }
  .ficha-gallery-grid > div:not(:first-child) { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 54px; }
  .nav-links, .nav-search-mini { display: none; }
  .hamburger { display: flex; }
  .hero-photo { display: none; }
  .dir-card { grid-template-columns: 1fr; }
  .dir-card-img { height: 200px; }
  .nl-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 36px 5vw; }
}
@media (max-width: 480px) {
  .hero-search-body { flex-direction: column; gap: 10px; padding: 14px; }
  .hs-divider { display: none; }
  .hs-btn { width: 100%; justify-content: center; }
}
