/**
  @license Copyleft
  @copyright MetodologIA
  @author Javier Montaño
  @technology Antigravity | GoogleAI Studio | Gemini 3 Pro | Gemini 3 Flash
  @poweredBy Pristino Agent
 */

/**
 * MetodologIA Base Styles
 * Reset, tipografía base y contenedores.
 */

body {
    background-color: var(--bg-body);
    color: var(--text-secondary);
    overflow-x: hidden;
    font-family: var(--font-secondary);
    margin: 0;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, .nav-link, .premium-nav, .nav-logo-link h1 {
    font-family: var(--font-primary);
    color: var(--text-primary) !important; /* Force Pure White on dark backgrounds */
}

.modal-content, .card-glass {
    font-family: var(--font-tertiary);
}

/* 1280px Standard Container */
.container-max {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1080px) {
    .container {
        max-width: 1080px;
    }
}

/* Scroll Smoothing */
html {
    scroll-behavior: smooth;
}

/* Utility Base Classes */
.font-primary { font-family: var(--font-primary); } 
.font-secondary { font-family: var(--font-secondary); } 
.font-heading { font-family: var(--font-primary); }
