   /* ==============================
   RESET.CSS – MODERN RESET
   ============================== */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margins */
* {
  margin: 0;
  padding: 0;
}

/* Improve text rendering */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: var(--font-main);
  background: var(--color-bg-main);
  color: var(--color-text-main);
} 

/* Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove button styles */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Anchor defaults */
a {
  text-decoration: none;
  color: inherit;
}

/* Table reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Avoid text overflow */
/* p, */


h1,
h2,
h3,
h4,
h5,
h6 {
   /*overflow-wrap: break-word; */
  font-family: var(--font-title);
  
} 


img {
  height: auto;
}
.container {
  max-width: 1200px; /* o 1300px si quieres más aire */
  margin: 0 auto;
  padding: 0 20px; /* importante para móviles */
}