/* PALETA INDEPENDIENTE - MATICES AZULES PROFUNDOS Y GRISES CORPORATIVOS */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --primary: #0369a1;
    --secondary: #1e293b;
    --text-main: #475569;
    --text-dark: #0f172a;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --warning-bg: #fef3c7;
    --warning-text: #78350f;
    --warning-border: #fcd34d;
    --border-color: #cbd5e1;
}
body { font-family: system-ui, -apple-system, sans-serif; color: var(--text-main); background: var(--bg-white); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.main-header { background: var(--bg-white); border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 100; }
.header-container { padding: 15px 20px; display: table; width: 100%; }
.logo-container { display: table-cell; vertical-align: middle; text-decoration: none; width: 250px; }
.logo-text { font-size: 20px; color: var(--secondary); text-decoration: none; }
.logo-bold { font-weight: 700; color: var(--primary); }
.main-nav { display: table-cell; vertical-align: middle; text-align: center; }
.nav-link { color: var(--text-main); text-decoration: none; margin: 0 15px; font-weight: 500; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.header-cta { display: table-cell; vertical-align: middle; text-align: right; width: 200px; }
.btn { display: inline-block; padding: 10px 20px; font-weight: 600; text-decoration: none; border-radius: 6px; }
.btn-secondary { background: var(--secondary); color: white; }
.top-disclaimer-box { background: var(--warning-bg); border-bottom: 1px solid var(--warning-border); padding: 12px 20px; }
.disclaimer-container { display: table; width: 100%; }
.disclaimer-icon { display: table-cell; vertical-align: top; width: 34px; padding-right: 10px; }
.disclaimer-text { display: table-cell; vertical-align: middle; font-size: 13px; color: var(--warning-text); }
.about-hero { padding: 80px 0 50px 0; background: var(--bg-light); text-align: center; }
.about-badge { display: inline-block; background: #dbeafe; color: #1e40af; padding: 6px 12px; font-size: 13px; font-weight: 600; border-radius: 4px; margin-bottom: 15px; }
.about-hero h1 { font-size: 36px; color: var(--text-dark); margin-bottom: 20px; font-weight: 800; }
.about-lead { font-size: 18px; max-width: 800px; margin: 0 auto; }
.pillars-section { padding: 80px 0; }
.grid-2-cols { display: table; width: 100%; table-layout: fixed; }
.pillar-text { display: table-cell; width: 50%; padding-right: 40px; vertical-align: middle; }
.pillar-text h2 { font-size: 26px; color: var(--text-dark); margin-bottom: 20px; }
.pillar-text p { margin-bottom: 15px; font-size: 15px; }
.pillar-visual { display: table-cell; width: 50%; vertical-align: middle; text-align: right; }
.about-img { border-radius: 8px; max-width: 100%; height: auto; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); }
.main-footer { background: #0b0f19; color: #94a3b8; padding: 60px 0 30px 0; font-size: 14px; margin-top: 60px; }
.footer-grid { display: table; width: 100%; table-layout: fixed; margin-bottom: 40px; }
.footer-brand-col { display: table-cell; width: 50%; padding-right: 40px; }
.footer-links-col { display: table-cell; width: 25%; }
.text-white { color: white; }
.footer-description { margin-top: 15px; font-size: 13px; }
.footer-links-col h4 { color: white; margin-bottom: 15px; }
.footer-links-col a { display: block; color: #94a3b8; text-decoration: none; margin-bottom: 10px; }
.footer-links-col a:hover { color: white; }
.footer-divider { border: 0; border-top: 1px solid #1e293b; margin-bottom: 30px; }
.footer-disclaimer-box { background: #141b2d; padding: 20px; border-radius: 6px; margin-bottom: 30px; }
.footer-disclaimer-box p { font-size: 12px; color: #64748b; line-height: 1.6; }
.footer-bottom { text-align: center; font-size: 12px; color: #475569; }