/* ALMADA · Tienda pública - base */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --negro:        #0a0a0a;
  --negro-2:      #141414;
  --negro-3:      #1c1c1c;
  --gris:         #2a2a2a;
  --gris-2:       #3a3a3a;
  --gris-txt:     #9a9a9a;
  --blanco:       #ffffff;
  --acento:       #ffffff;
  --acento-txt:   #0a0a0a;
  --acento-glow:  rgba(255, 255, 255, 0.22);
  --radio:        14px;
  --radio-sm:     8px;
  --shadow:       0 8px 24px rgba(0,0,0,0.5);
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
}

html, body {
  background: var(--negro);
  color: var(--blanco);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body { padding-bottom: 78px; }   /* espacio para bottom navbar */

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.contenedor { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.seccion-titulo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  margin: 28px 0 16px;
  text-transform: uppercase;
}
.seccion-titulo span { color: var(--acento); }
