/*
Theme Name: Grupo Mexico
Description: Tema personalizado para la intranet de VMTEC - Grupo Mexico
Version: 1.0.0
Author: VMTEC
Text Domain: grupo-mexico
*/

/* 
Este archivo contiene los estilos básicos del tema.
Los estilos específicos están organizados en archivos separados en assets/css/
*/

/* Reset básico */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilidades */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Botones básicos */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn:hover {
    background: #005a87;
}

.btn-primary {
    background: #0073aa;
}

.btn-primary:hover {
    background: #005a87;
}
