/*
Theme Name: Marketing Innova - Custom Theme
Theme URI: https://marketinginnova.com
Author: Marketing Innova
Author URI: https://marketinginnova.com
Description: Tema a la medida de alto rendimiento y estabilidad visual para Marketing Innova. Diseñado específicamente para gestión de contenido mediante editor nativo de WordPress, sin page builders visuales pesados.
Version: 1.1.4
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: marketing-innova
*/

/* Reset y configuración inicial */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-dark);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}
