/* ==========================================================================
   GLOBAL STYLES & VARIABLES
   ========================================================================== */
:root {
    --primary-color: #0c1c2e;    /* Azul medianoche profundo, corporativo */
    --secondary-color: #8c7853;  /* Bronce/Dorado desaturado elegante */
    --accent-color: #c9a054;     /* Oro metálico para acentos */
    --text-dark: #222222;        /* Texto principal */
    --text-light: #555555;       /* Texto secundario */
    --bg-light: #f7f9fb;         /* Fondo gris claro muy limpio */
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --max-width: 1100px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
    background-color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: table;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}

.logo-area {
    display: table-cell;
    vertical-align: middle;
}

.logo-area a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 18pt;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.logo-area span {
    color: var(--accent-color);
}

nav {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

nav ul {
    list-style: none;
    display: inline-block;
}

nav ul li {
    display: inline-block;
    margin-left: 25px;
}

nav ul li a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 11pt;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 5px 0;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* ==========================================================================
   HERO & BANNERS
   ========================================================================== */
.hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0;
    position: relative;
}

.hero h1 {
    font-size: 24pt;
    color: var(--bg-white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 12pt;
    color: #cbd5e1;
    max-width: 800px;
    margin-bottom: 25px;
}

/* ==========================================================================
   GOVERNMENT DISCLAIMER BLOCK
   ========================================================================== */
.gov-disclaimer {
    background-color: #fffbeb;
    border-left: 4px solid #d97706;
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.gov-disclaimer p {
    font-size: 10pt;
    color: #92400e;
    line-height: 1.5;
}

.gov-disclaimer strong {
    color: #78350f;
}

/* ==========================================================================
   MAIN CONTENT ARCHITECTURE
   ========================================================================== */
main {
    padding: 40px 0;
}

.content-block {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

h2 {
    font-size: 16pt;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 12px;
}

h3 {
    font-size: 13pt;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

p {
    font-size: 11pt;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: justify;
}

ul, ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

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

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.image-wrapper {
    margin: 25px 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    padding: 12px 28px;
    font-size: 11pt;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #736243;
}

/* Data Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 10.5pt;
}

.data-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: left;
    padding: 12px;
    font-weight: 600;
}

.data-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.data-table tr:nth-child(even) {
    background-color: #f8fafc;
}

/* Two Column Table Layout Alternative */
.two-col-layout {
    display: table;
    width: 100%;
    margin-top: 20px;
}

.col-left, .col-right {
    display: table-cell;
    width: 50%;
    vertical-align: top;
    padding-right: 15px;
}

.col-right {
    padding-right: 0;
    padding-left: 15px;
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 10.5pt;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    font-size: 11pt;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: var(--font-family);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: #08121f;
    color: #94a3b8;
    padding: 40px 0 20px 0;
    border-top: 4px solid var(--secondary-color);
    font-size: 9.5pt;
}

footer p {
    color: #94a3b8;
    font-size: 9.5pt;
    text-align: center;
    margin-bottom: 15px;
}

.footer-nav {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 20px;
}

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    font-size: 8.5pt;
    line-height: 1.4;
    text-align: justify;
    color: #64748b;
}