/* PALETA DE COLORES: Azul Índigo (#1E3A8A), Cian Precisión (#06B6D4), Gris Antirreflejante (#F3F4F6), Texto (#1F2937) */
:root {
    --primary-color: #1E3A8A;
    --secondary-color: #06B6D4;
    --accent-color: #3B82F6;
    --text-color: #1F2937;
    --bg-light: #F3F4F6;
    --white: #FFFFFF;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header Navbar */
.main-header {
    background-color: var(--primary-color);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

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

.nav-menu a {
    color: #E5E7EB;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0F172A 100%);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #9CA3AF;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

/* Disclaimer Box */
.disclaimer-container {
    background-color: #EFF6FF;
    border-bottom: 1px solid #DBEAFE;
    padding: 15px 0;
}

.gov-disclaimer {
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    margin: 0;
    font-size: 14px;
    color: #1E40AF;
    text-align: justify;
}

/* Services */
.services-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.services-section h2, .niche-content-section h2, .page-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
}

/* Niche Content */
.niche-content-section {
    padding: 60px 0;
}

.info-block {
    margin-bottom: 40px;
    text-align: justify;
}

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 22px;
}

.info-block ul {
    margin-left: 20px;
}

.info-block li {
    margin-bottom: 8px;
}

/* Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

/* Footer */
.main-footer {
    background-color: #0F172A;
    color: #6B7280;
    text-align: center;
    padding: 30px 0;
    font-size: 13.5px;
    margin-top: 40px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
}