/* base.css — Reset y estructura global de la página. */

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden; /* evita scroll horizontal por la sección de reseñas a 100vw */
}

/* Contenedor central — todo el contenido vive dentro de .page */
.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 48px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
