/* ==========================================================================
   Nowdii · Native feel (shared)
   Aplicado en: index, resultados, mapa, profile
   - Tipografía IG/TikTok (pesos 700-800, tracking ajustado)
   - Feedback iOS (scale 0.96 + aclarado) en elementos tocables
   - Scroll suave estilo Google Maps
   ========================================================================== */

/* Scroll suave global */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

/* --------- Tipografía (pesos calibrados, sin empalme de letras) --------- */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.005em;
}

.section-title,
.seccion-titulo,
.titulo-seccion,
.titulo-principal {
  font-weight: 800;
  letter-spacing: -0.005em;
}

.card-title,
.negocio-nombre,
.resultado-nombre,
.item-title {
  font-weight: 700;
  letter-spacing: 0;
}

/* --------- Feedback iOS nativo en cards y botones tocables --------- */
.card,
.negocio-card,
.resultado-card,
.cat-tile,
.grid-item,
.tappable,
button,
.btn,
a.btn {
  transition: transform 0.12s cubic-bezier(.4,0,.2,1),
              background 0.12s cubic-bezier(.4,0,.2,1),
              box-shadow 0.12s cubic-bezier(.4,0,.2,1);
}

.card:active,
.negocio-card:active,
.resultado-card:active,
.cat-tile:active,
.grid-item:active,
.tappable:active {
  transform: scale(0.96);
  filter: brightness(1.1);
}

/* will-change para performance en elementos con parallax/scroll anim */
.cover-photo,
.hero-image,
.parallax {
  will-change: transform;
}
