/* ==========================================================================
   DNCMEXICO - HOJA DE ESTILOS MAESTRA (UI/UX PREMIUM)
   ========================================================================== */

/* 1. Importaci¨®n de Tipograf¨ªa Corporativa (Inter) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;800&display=swap');

/* 2. Reset Global y Fuente por Defecto */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Esto obligar¨¢ a TODO el sistema a usar una letra moderna y limpia */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f4f7fb;
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 3. Utilidades R¨¢pidas */
a { transition: 0.3s ease; }
input, select, textarea, button { font-family: inherit; }