/* ==========================================================================
   HOJA DE ESTILOS - ASESORIACITASRELAEXT.LAT
   ========================================================================== */

:root {
    --charcoal: #1e2229;
    --steel-gray: #2d323f;
    --electric-blue: #2563eb;
    --sand-bg: #fafaf9;
    --text-primary: #1f2937;
    --text-white: #ffffff;
    --border-line: #cbd5e1;
    --font: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); color: var(--text-primary); background-color: var(--sand-bg); line-height: 1.6; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

header { background-color: var(--charcoal); color: var(--text-white); padding: 16px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 4px solid var(--electric-blue); }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 22px; font-weight: 800; color: var(--text-white); text-decoration: none; }
.logo span { color: var(--electric-blue); }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { color: var(--text-white); text-decoration: none; font-weight: 500; padding: 6px 12px; transition: color 0.3s; }
nav ul li a:hover, nav ul li a.active { color: var(--electric-blue); }

.gov-disclaimer { background-color: #eff6ff; border-left: 5px solid var(--electric-blue); padding: 20px; margin: 25px 0; font-size: 0.9rem; color: #1e3a8a; text-align: justify; }

main { padding: 40px 0; }
h1 { font-size: 2.6rem; color: var(--charcoal); margin-bottom: 20px; letter-spacing: -0.5px; }
h2 { font-size: 1.8rem; color: var(--steel-gray); margin: 35px 0 15px 0; padding-bottom: 10px; border-bottom: 1px solid var(--border-line); }
p { margin-bottom: 18px; text-align: justify; color: #4b5563; }
ul { margin-bottom: 25px; padding-left: 20px; }
li { margin-bottom: 8px; }

.image-wrapper { margin: 30px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-radius: 4px; overflow: hidden; }
.responsive-img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 440px; }

.data-table { width: 100%; border-collapse: collapse; margin: 30px 0; background-color: #ffffff; }
.data-table th { background-color: var(--steel-gray); color: var(--text-white); padding: 14px; text-align: left; }
.data-table td { padding: 14px; border: 1px solid var(--border-line); }
.data-table tr:nth-child(even) { background-color: #f8fafc; }

.btn-primary { display: inline-block; background-color: var(--electric-blue); color: var(--text-white); padding: 14px 35px; text-decoration: none; font-weight: 600; border-radius: 4px; transition: background 0.3s; }
.btn-primary:hover { background-color: #1d4ed8; }

.lead-form { background-color: #ffffff; padding: 40px; border-radius: 4px; border: 1px solid var(--border-line); max-width: 700px; margin: 30px auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--charcoal); }
.form-control { width: 100%; padding: 12px; border: 1px solid var(--border-line); border-radius: 4px; font-size: 1rem; }
.form-control:focus { outline: none; border-color: var(--electric-blue); }

footer { background-color: var(--charcoal); color: #9ca3af; padding: 40px 0 20px 0; font-size: 0.8rem; margin-top: 60px; }
footer p { text-align: center; margin-bottom: 15px; }
.footer-links { display: flex; justify-content: center; list-style: none; margin-bottom: 25px; }
.footer-links li { margin: 0 15px; }
.footer-links li a { color: #f3f4f6; text-decoration: none; transition: color 0.3s; }
.footer-links li a:hover { color: var(--electric-blue); }
.footer-notice { max-width: 950px; margin: 25px auto 0 auto; padding-top: 20px; border-top: 1px solid var(--steel-gray); text-align: center; line-height: 1.5; }