/* PALETA DE COLORES: Gris Grafito (#252525), Azul Mineral (#3A506B), Platino (#E0E1DD), Oro (#D4AF37) */
:root {
    --primary-color: #252525;
    --secondary-color: #3A506B;
    --accent-color: #D4AF37;
    --text-color: #333333;
    --bg-light: #E0E1DD;
    --white: #FFFFFF;
    --font-base: 'Century Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

/* Header styling */
.main-header {
    background-color: var(--primary-color);
    color: var(--white);
    border-bottom: 4px solid var(--secondary-color);
    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: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #CCCCCC;
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(37, 37, 37, 0.95), rgba(58, 80, 107, 0.95));
    color: var(--white);
    padding: 110px 0;
    text-align: center;
}

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

.hero-section p {
    font-size: 19px;
    max-width: 850px;
    margin: 0 auto 35px auto;
    color: #E0E1DD;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 14px 35px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

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

/* Disclaimer Fuerte */
.disclaimer-container {
    background-color: #FFF3CD;
    border-top: 1px solid #FFEBAA;
    border-bottom: 1px solid #FFEBAA;
    padding: 15px 0;
}

.gov-disclaimer {
    border-left: 6px solid var(--secondary-color);
    padding-left: 20px;
    margin: 0;
    font-size: 13.5px;
    color: #664D03;
    text-align: justify;
}

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

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

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--accent-color);
}

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

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

.info-block h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 23px;
}

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

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #CCCCCC;
    background-color: #F9F9F9;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

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

/* Footer Section */
.main-footer {
    background-color: var(--primary-color);
    color: #A0A0A0;
    text-align: center;
    padding: 40px 0;
    font-size: 13px;
    border-top: 4px solid var(--secondary-color);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px;
}