/**
 * Estilos globales principales
 * NW Group - Estilos base de la aplicación
 */

/* Importar fuentes */
@import url('./utilities/fonts.css');

/* Reset y estilos base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Exo 2', 'Segoe UI', Arial, sans-serif;
    background: #f5f6fa;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Utilidades globales */
.container {
    max-width: 800px;
    margin: 80px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

h1 {
    color: #0066cc;
    margin-bottom: 10px;
}

/* Botones globales */
button {
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Inputs globales */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Utilidades de espaciado */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Utilidades de texto */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Utilidades de display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

