/* ============================================================
   DFILANDIA — Estilos principales
   Paleta: Verde cafetero · Terracota · Crema · Dorado
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --verde:      #2D5016;
  --verde-med:  #4A7C2F;
  --verde-light:#7BAD52;
  --terracota:  #C4622D;
  --dorado:     #D4A843;
  --crema:      #F5F0E8;
  --blanco:     #FAFAF7;
  --gris-suave: #F0EDE6;
  --gris-texto: #6B6560;
  --oscuro:     #1A1208;

  --sidebar-w:  260px;
  --radius:     14px;
  --shadow:     0 4px 24px rgba(26,18,8,.10);
  --shadow-lg:  0 12px 48px rgba(26,18,8,.16);
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--blanco);
  color: var(--oscuro);
  min-height: 100vh;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ── LAYOUT PRINCIPAL ──────────────────────────────────── */
.layout {
  display: flex;
  min-height: 100vh;
}

/* ── SIDEBAR ────────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  background: linear-gradient(180deg, var(--verde) 0%, #1a3409 100%);
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: transform var(--transition);
  overflow-y: auto;
}

.sidebar-logo {
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.sidebar-logo .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dorado);
  letter-spacing: -.5px;
}

.sidebar-logo .tagline {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.sidebar nav { padding: 16px 0; flex: 1; }

.nav-section {
  padding: 8px 16px 4px;
  font-size: .68rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  font-weight: 600;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  font-weight: 400;
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
}

.nav-item:hover,
.nav-item.active {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 60%;
  background: var(--dorado);
  border-radius: 0 3px 3px 0;
}

.nav-item .icon { font-size: 1.1rem; width: 20px; text-align: center; }

.sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.btn-register {
  display: block;
  background: var(--dorado);
  color: var(--oscuro) !important;
  text-align: center;
  padding: 11px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .88rem;
  transition: all var(--transition);
}

.btn-register:hover { background: #e8be56; transform: translateY(-1px); }

/* ── CONTENIDO PRINCIPAL ────────────────────────────────── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-width: 0;
}

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(250,250,247,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.menu-toggle,
.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--verde);
  padding: 6px;
  border-radius: 8px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: background .2s;
}
.sidebar-toggle:hover { background: var(--gris-suave); }
.sidebar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--verde);
  border-radius: 2px;
  transition: all .3s;
}

.search-bar {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gris-suave);
  border-radius: 50px;
  padding: 10px 18px;
  transition: all var(--transition);
}

.search-bar:focus-within {
  background: #fff;
  box-shadow: 0 0 0 2px var(--verde-light);
}

.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  flex: 1;
  color: var(--oscuro);
}

.search-bar .icon { color: var(--gris-texto); }

.topbar-actions { display: flex; align-items: center; gap: 12px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 540px;
  overflow: hidden;
}

.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.15) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  color: #fff;
}

.hero-badge {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--dorado);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  margin-bottom: 14px;
}

.hero p {
  font-size: 1.1rem;
  opacity: .88;
  max-width: 500px;
  margin-bottom: 28px;
}

/* ── BUSCADOR HERO ──────────────────────────────────────── */
.hero-search {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
}

.hero-search select,
.hero-search input {
  border: none;
  background: transparent;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--oscuro);
}

.hero-search select { font-weight: 500; }

.hero-search .divider {
  width: 1px; height: 28px;
  background: rgba(0,0,0,.12);
  flex-shrink: 0;
}

.hero-search .btn-search {
  background: var(--verde);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 22px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.hero-search .btn-search:hover { background: var(--verde-med); transform: translateY(-1px); }

/* ── SECCIONES ──────────────────────────────────────────── */
.section { padding: 60px 32px; }
.section-alt { background: var(--gris-suave); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-size: 1.8rem;
  color: var(--verde);
}

.section-subtitle {
  font-size: .9rem;
  color: var(--gris-texto);
  margin-top: 4px;
}

.ver-todos {
  font-size: .85rem;
  color: var(--verde-med);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.ver-todos:hover { gap: 8px; }

/* ── CARDS NEGOCIO ──────────────────────────────────────── */
.negocios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.negocio-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,.05);
}

.negocio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  height: 180px;
  overflow: hidden;
  background: var(--gris-suave);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.negocio-card:hover .card-img img { transform: scale(1.06); }

.card-body { padding: 16px; }

.card-tipo {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--terracota);
  font-weight: 600;
  margin-bottom: 4px;
}

.card-nombre {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--oscuro);
  margin-bottom: 6px;
}

.card-descripcion {
  font-size: .82rem;
  color: var(--gris-texto);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--gris-suave);
  font-size: .78rem;
  color: var(--gris-texto);
}

.plan-badge {
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
}
.plan-basico   { background: #E8F5E9; color: #2E7D32; }
.plan-medio    { background: #FFF3E0; color: #E65100; }
.plan-premium  { background: #FFF8E1; color: #F57F17; }

/* ── LOGOS GRID ─────────────────────────────────────────── */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.logo-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
}

.logo-card:hover {
  border-color: var(--verde-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.logo-card img {
  width: 80px; height: 80px;
  object-fit: contain;
  border-radius: 10px;
}

.logo-placeholder {
  width: 80px; height: 80px;
  background: var(--gris-suave);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gris-texto);
}

.logo-nombre {
  font-size: .88rem;
  font-weight: 600;
  color: var(--oscuro);
  line-height: 1.3;
}

/* ── BOTONES ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--verde);
  color: #fff;
}
.btn-primary:hover { background: var(--verde-med); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--verde);
  border: 2px solid var(--verde);
}
.btn-secondary:hover { background: var(--verde); color: #fff; }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-1px); }

.btn-dorado {
  background: var(--dorado);
  color: var(--oscuro);
}
.btn-dorado:hover { background: #e8be56; }

/* ── STATS / CHIPS ──────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: var(--verde);
  color: #fff;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dorado);
}

.stat-label { font-size: .78rem; opacity: .75; text-transform: uppercase; letter-spacing: .5px; }

/* ── MAPA ────────────────────────────────────────────────── */
.mapa-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.mapa-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── GALERÍA ────────────────────────────────────────────── */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.galeria-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform var(--transition);
}

.galeria-item:hover { transform: scale(1.02); }

.galeria-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── PÁGINA NEGOCIO ─────────────────────────────────────── */
.negocio-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.negocio-header-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
  margin: -60px 32px 0;
  position: relative;
  z-index: 10;
}

.negocio-logo {
  width: 100px; height: 100px;
  border-radius: 14px;
  object-fit: contain;
  border: 3px solid var(--gris-suave);
  flex-shrink: 0;
}

/* ── SERVICIOS ──────────────────────────────────────────── */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.servicio-chip {
  background: var(--gris-suave);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: .82rem;
  font-weight: 500;
  transition: all var(--transition);
}

.servicio-chip:hover { background: var(--verde); color: #fff; }

/* ── RESERVAS FORM ──────────────────────────────────────── */
.reserva-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--oscuro);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #E0DDD6;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition);
  background: var(--blanco);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--verde-light);
  box-shadow: 0 0 0 3px rgba(123,173,82,.15);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── QR MENU ────────────────────────────────────────────── */
.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--gris-suave);
  border-radius: var(--radius);
}

.qr-container img { width: 200px; height: 200px; border-radius: 10px; }

/* ── RESEÑAS ────────────────────────────────────────────── */
.resena-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.resena-estrellas { color: var(--dorado); font-size: 1.1rem; margin-bottom: 8px; }

/* ── ADMIN PANEL ────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 240px;
  background: var(--oscuro);
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}

.admin-sidebar .brand {
  padding: 24px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--dorado);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.admin-sidebar .nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: all var(--transition);
}

.admin-sidebar .nav-item:hover,
.admin-sidebar .nav-item.active {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.admin-main { margin-left: 240px; flex: 1; background: var(--gris-suave); min-height: 100vh; }

.admin-topbar {
  background: #fff;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}

.admin-page { padding: 28px; }

.admin-page h1 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--verde);
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-card .stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stat-card .stat-val { font-size: 1.6rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.stat-card .stat-lbl { font-size: .78rem; color: var(--gris-texto); }

.table-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.table-card table { width: 100%; border-collapse: collapse; }

.table-card th {
  background: var(--gris-suave);
  padding: 12px 16px;
  text-align: left;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gris-texto);
}

.table-card td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gris-suave);
  font-size: .88rem;
}

.table-card tr:last-child td { border-bottom: none; }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
}

.badge-success { background: #E8F5E9; color: #2E7D32; }
.badge-warning { background: #FFF3E0; color: #E65100; }
.badge-danger  { background: #FFEBEE; color: #C62828; }
.badge-info    { background: #E3F2FD; color: #1565C0; }

/* ── ALERTAS ────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: .88rem;
}

.alert-success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.alert-error   { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; }
.alert-info    { background: #E3F2FD; color: #1565C0; border: 1px solid #90CAF9; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--oscuro);
  color: rgba(255,255,255,.7);
  padding: 48px 32px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dorado);
  margin-bottom: 8px;
}

.footer-brand p { font-size: .85rem; line-height: 1.6; }

.footer-col h4 {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}

.footer-col a {
  display: block;
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--dorado); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main-content { margin-left: 0; }
  .menu-toggle { display: block; }
  .sidebar-toggle { display: flex; }
  .topbar-search { display: none; }
  .topbar-actions .lang-selector-wrap { display: flex; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .negocio-header-card { flex-direction: column; text-align: center; margin: -40px 16px 0; }
  .stats-row { justify-content: center; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
}

@media (max-width: 600px) {
  .section { padding: 40px 16px; }
  .hero { height: 420px; }
  .hero h1 { font-size: 2rem; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-search { flex-direction: column; border-radius: 14px; }
  .topbar { padding: 0 12px; gap: 8px; }
  /* Ocultar botones de texto en móvil muy pequeño — quedan en el sidebar */
  .topbar-actions .btn-secondary,
  .topbar-actions .btn-primary { display: none; }
  .topbar-actions .lang-selector-wrap { display: flex; }
}

@media (min-width: 601px) and (max-width: 900px) {
  /* Tablet: mostrar botones pero más pequeños */
  .topbar-actions .btn-secondary,
  .topbar-actions .btn-primary {
    padding: 6px 10px !important;
    font-size: .78rem !important;
  }
}

/* ── ANIMACIONES ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp .5s ease forwards; }

.fade-up-1 { animation-delay: .1s; opacity: 0; }
.fade-up-2 { animation-delay: .2s; opacity: 0; }
.fade-up-3 { animation-delay: .3s; opacity: 0; }

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ── OVERLAY SIDEBAR MOBILE ─────────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 99;
}
.sidebar-overlay.active { display: block; }
/* ============================================================
   DFILANDIA — Tarjetas responsivas para móvil
   Agrega esto al final de assets/css/main.css
   ============================================================ */

/* ── TABLET: 2 columnas ─────────────────────────────────── */
@media (max-width: 860px) {
  .negocios-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .logos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── MÓVIL: tarjetas horizontales ───────────────────────── */
@media (max-width: 600px) {

  /* 1 columna — tarjetas horizontales */
  .negocios-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* Tarjeta horizontal: foto izquierda + texto derecha */
  .negocio-card {
    display: grid !important;
    grid-template-columns: 120px 1fr !important;
    grid-template-rows: 1fr auto !important;
    height: 100px !important;
    overflow: hidden !important;
  }

  .negocio-card .card-img {
    width: 120px !important;
    height: 100px !important;
    grid-row: 1 / 3 !important;
    border-radius: 14px 0 0 14px !important;
    flex-shrink: 0 !important;
  }

  .negocio-card .card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .negocio-card .card-body {
    padding: 10px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .negocio-card .card-tipo {
    font-size: .68rem !important;
    margin-bottom: 2px !important;
  }

  .negocio-card .card-nombre {
    font-size: .9rem !important;
    margin-bottom: 3px !important;
    white-space: normal !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
  }

  .negocio-card .card-descripcion {
    display: none !important;
  }

  .negocio-card .card-footer {
    padding: 5px 12px !important;
    font-size: .7rem !important;
    border-top: 1px solid #f0f0f0 !important;
  }

  /* Logos grid — 2 columnas */
  .logos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .logo-card {
    padding: 14px 10px !important;
  }
  .logo-card img,
  .logo-placeholder {
    width: 56px !important;
    height: 56px !important;
  }
  .logo-nombre { font-size: .78rem !important; }

  /* Stats */
  .stats-row {
    gap: 10px !important;
    padding: 14px !important;
    justify-content: space-around !important;
  }
  .stat-num { font-size: 1.3rem !important; }

  /* Hero */
  .hero { height: auto !important; min-height: 180px !important; }

  /* Secciones */
  .section { padding: 28px 14px !important; }
  .section-title { font-size: 1.4rem !important; }
}