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

:root {
    --bg-main: #111827;
    --bg-secondary: #1f2937;
    --accent-gold: #c5a880;
    --accent-gold-hover: #b39266;
    --text-dark: #374151;
    --text-light: #f9fafb;
    --bg-clean: #ffffff;
    --bg-soft-gray: #f3f4f6;
    --border: #e5e7eb;
    --font: 'Segoe UI', system-ui, sans-serif;
}

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

header { background-color: var(--bg-main); color: var(--text-light); padding: 20px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--accent-gold); }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 22px; font-weight: 700; color: var(--text-light); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; }
.logo span { color: var(--accent-gold); }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 25px; }
nav ul li a { color: var(--text-light); text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 6px 12px; transition: all 0.3s ease; }
nav ul li a:hover, nav ul li a.active { color: var(--accent-gold); border-bottom: 2px solid var(--accent-gold); }

.gov-disclaimer { background-color: #fefcf3; border: 1px solid #f1e4c3; border-left: 5px solid #d4af37; padding: 18px; margin: 25px 0; font-size: 0.88rem; color: #7c612b; border-radius: 4px; text-align: justify; }

main { padding: 40px 0; }
h1 { font-size: 2.4rem; color: var(--bg-main); margin-bottom: 20px; font-weight: 800; }
h2 { font-size: 1.7rem; color: var(--bg-secondary); margin: 35px 0 15px 0; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
p { margin-bottom: 18px; text-align: justify; font-size: 1.05rem; color: #4b5563; }
ul, ol { margin-bottom: 25px; padding-left: 20px; color: #4b5563; }
li { margin-bottom: 10px; }

.image-wrapper { margin: 30px 0; border-radius: 6px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.responsive-img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 400px; }

.data-table { width: 100%; border-collapse: collapse; margin: 30px 0; background-color: var(--bg-clean); box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.data-table th { background-color: var(--bg-secondary); color: var(--text-light); font-weight: 600; padding: 14px; border: 1px solid var(--border); text-align: left; }
.data-table td { padding: 14px; border: 1px solid var(--border); font-size: 0.95rem; }
.data-table tr:nth-child(even) { background-color: #f9fafb; }

.btn-primary { display: inline-block; background-color: var(--accent-gold); color: var(--bg-main); padding: 14px 32px; text-decoration: none; font-weight: 700; border-radius: 4px; border: none; cursor: pointer; transition: background-color 0.3s; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; }
.btn-primary:hover { background-color: var(--accent-gold-hover); }

.lead-form { background-color: var(--bg-clean); padding: 40px; border-radius: 6px; border: 1px solid var(--border); box-shadow: 0 10px 25px rgba(0,0,0,0.03); max-width: 650px; margin: 40px auto; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--bg-main); font-size: 0.95rem; }
.form-control { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 4px; font-size: 1rem; color: var(--text-dark); }
.form-control:focus { outline: none; border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.25); }
textarea.form-control { resize: vertical; min-height: 130px; }

footer { background-color: var(--bg-main); color: #9ca3af; padding: 45px 0 25px 0; font-size: 0.82rem; margin-top: 60px; border-top: 3px solid var(--accent-gold); }
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: #d1d5db; text-decoration: none; transition: color 0.3s; }
.footer-links li a:hover { color: var(--accent-gold); }
.footer-notice { max-width: 950px; margin: 25px auto 0 auto; padding-top: 20px; border-top: 1px solid #374151; text-align: center; line-height: 1.5; color: #6b7280; }