/* ==========================================
   VARIABLES GLOBALES Y FUENTES (Fullmuebles)
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

:root {
  /* Tipografías */
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Paleta de Colores Base */
  --color-primary: #0038a8;      /* Azul principal */
  --color-primary-dark: #002673; /* Azul oscuro para hovers */
  --color-secondary: #38bdf8;    /* Azul claro / acento */
  --color-text-main: #1e293b;    /* Texto principal */
  --color-text-muted: #64748b;   /* Texto secundario */
  --color-bg-light: #f8fafc;     /* Fondo claro */
}

/* Reseteo básico y tipografía base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Tipografía unificada para Encabezados */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.2;
}

/* Párrafos y Botones generales */
p, span, a, li, input, button {
  font-family: var(--font-body);
}

a {
  text-decoration: none;
  color: inherit;
}