/* IDENTIDAD VISUAL: GUATEMALA ESTRATEGIAS 
   DISEÑO: BOUTIQUE TECH (PREMIUM)
   UBICACIÓN: ZONA 13, GUATEMALA
*/

:root {
    --night-blue: #05080f;      /* Fondo Principal */
    --surface-dark: #0f1420;    /* Superficie de Tarjetas */
    --gold-premium: #c5a059;    /* Acentos y Botones */
    --ivory-white: #f4f7f6;     /* Texto Principal */
    --dim-text: #a1b0cc;        /* Texto Secundario */
    --border-soft: rgba(197, 160, 89, 0.2); /* Bordes de Lujo */
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--night-blue);
    color: var(--ivory-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Contenedor Maestro */
.main-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Navegación Élite (Sticky) */
.nav-elite {
    background: rgba(5, 8, 15, 0.98);
    padding: 22px 0;
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-weight: 800;
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-logo span {
    color: var(--gold-premium);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--ivory-white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-premium);
}

/* Botón de Conversión (Call to Action) */
.btn-cta {
    border: 1px solid var(--gold-premium);
    color: var(--gold-premium) !important;
    padding: 12px 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
}

.btn-cta:hover {
    background: var(--gold-premium);
    color: var(--night-blue) !important;
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.4);
}

/* Secciones Hero */
.hero-section {
    padding: 130px 0 90px;
    text-align: center;
    background: radial-gradient(circle at center, #161e2e 0%, var(--night-blue) 75%);
}

.section-headline {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Tarjetas Informativas (Cards) */
.info-card {
    background: var(--surface-dark);
    border: 1px solid var(--border-soft);
    padding: 45px;
    margin-bottom: 30px;
    border-radius: 2px;
    transition: 0.4s ease;
}

.info-card:hover {
    border-color: var(--gold-premium);
    background: rgba(197, 160, 89, 0.03);
}

.info-card h2, .info-card h3 {
    color: var(--gold-premium);
    font-weight: 700;
    margin-bottom: 20px;
}

/* Footer Global */
.footer-elite {
    padding: 80px 0 40px;
    background: #030509;
    border-top: 1px solid var(--border-soft);
    text-align: center;
    margin-top: 100px;
}

.footer-elite p {
    color: var(--dim-text);
    font-size: 0.9rem;
}

/* Utilidades para Imagenes y Mapas */
.frame-media {
    width: 100%;
    border: 1px solid var(--border-soft);
    filter: grayscale(1) contrast(1.1);
}

/* Responsive (Mobile Fix) */
@media (max-width: 768px) {
    .nav-links { display: none; } /* En una implementación real usarías un menú hamburguesa */
    .section-headline { font-size: 2rem; }
    .hero-section { padding: 100px 0 60px; }
}