/* ONEST (Logo / Títulos) */
@font-face {
  font-family: Onest;
  src: url("/fonts/Onest/Onest-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900; /* todos los pesos disponibles */
  font-style: normal;
  font-display: swap;
}

/* LEXEND (Texto Secundario) */
@font-face {
  font-family: Lexend;
  src: url("/fonts/Lexend/Lexend-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900; /* todos los pesos disponibles */
  font-style: normal;
  font-display: swap;
}

/* USO DE LAS FUENTES */
body,
p,
span,
h1 {
  font-family: Lexend, sans-serif;
}

.logo {
  font-family: Onest, sans-serif;
  font-weight: 700; /* peso para títulos y logo */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Shared wrapper for navbar across pages */
.home-inner {
  max-width: clamp(1200px, 90vw, 1800px);
  width: 100%;
  margin: 0 auto;
  padding: clamp(0.5rem, 1.2vw, 1.5rem);
}
