/* Servicios Menetan — reset.css — Normalize y estilos base */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-base);
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: var(--size-base);
}

/* Scroll offset para navbar fija */
[id] { scroll-margin-top: calc(var(--navbar-height) + var(--trust-bar-height) + 16px); }

/* Protección global anti-desborde */
*,
*::before,
*::after {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  width: 100%;
  table-layout: auto;
}
