/* ============================================================
   TIMBAX — Base Stylesheet
   Compartido por todas las páginas del sitio
   ============================================================ */

/* Google Fonts - Inter (400, 500, 600, 700, 800) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Color Tokens ── */
:root {
    --bg:              #000000;
    --container:       #002211;
    --surface:         #13492C;
    --surface-variant: #256B4A;
    --border:          #3A6B4E;
    --primary:         #FFBF00;
    --primary-hover:   #E6AC00;
    --text:            #E8F5E9;
    --text-muted:      #6BAA7F;
}

/* ── Reset ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Body ── */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding: 20px;
}

/* ── Container ── */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--container);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ── Back link ── */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.back-link:hover { opacity: 0.7; }
.back-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Header ── */
header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.logo-image { width: 40px; height: auto; }
.logo {
    font-size: 32px;
    font-weight: 900;
    color: var(--text);
}

/* ── Typography ── */
h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-top: 32px;
    margin-bottom: 16px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-top: 24px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text);
}

ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text);
}

a {
    color: var(--primary);
}

/* ── Divider ── */
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}

/* ── Footer ── */
footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.8;
}

/* ── Utility: muted text ── */
.text-muted {
    font-size: 14px;
    color: var(--text-muted);
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .container { padding: 24px; }
    .logo-image { width: 32px; }
    h1 { font-size: 24px; }
    h2 { font-size: 20px; }
    h3 { font-size: 16px; }
    p, li { font-size: 15px; }
    footer { font-size: 10px; }
    footer p { font-size: 10px; }
}
