/* --- IDENTITY & VARIABLES --- */
:root {
    --bg-color: #050505;       /* Negro Profundo */
    --surface-color: #111111;  /* Gris Carbón */
    --accent-cyan: #00E5CC;    /* TU CIAN ELÉCTRICO (Anillo) */
    --accent-gold: #FFC107;    /* TU DORADO/AMARILLO (La P Rúnica) */
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --border-color: #222222;
    
    /* Spacing Standard */
    --container-width: 1200px;
    --header-height: 80px;
}

/* --- RESET & BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand, .btn {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }

/* --- LAYOUT UTILS --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HEADER --- */
header {
    height: var(--header-height);
    border-bottom: 1px solid var(--border-color);
    position: sticky; /* Mantiene el header visible */
    top: 0;
    background-color: rgba(5, 5, 5, 0.9); /* Transparencia sutil */
    backdrop-filter: blur(10px);
    z-index: 100;
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px; /* Espacio para el logo */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ajuste para que el Logo PNG se vea nítido */
.brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}
.nav-link:hover { color: var(--accent-cyan); }

/* --- HERO SECTION --- */
.hero {
    padding: 120px 0;
    max-width: 900px;
    margin: 0 auto; /* Centrado si es necesario */
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

/* Estilo genérico para highlight en Hero (no afecta al manifiesto) */
.hero .highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 229, 204, 0.2);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 48px;
    font-weight: 300;
}

/* --- BUTTONS --- */
.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: var(--accent-cyan);
    color: #000;
    font-weight: 800;
    border-radius: 2px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid var(--accent-cyan);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 229, 204, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}
.btn-outline:hover { 
    border-color: var(--accent-gold); /* ACENTO DORADO AL PASAR EL MOUSE */
    color: var(--accent-gold);
    background-color: rgba(255, 193, 7, 0.05);
    transform: translateY(-2px);
}

/* --- FEATURES GRID --- */
.grid-section { 
    padding: 100px 0; 
    border-top: 1px solid var(--border-color); 
}

.section-title {
    font-size: 0.9rem;
    color: var(--accent-gold); /* DORADO para los subtítulos */
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading {
    font-size: 2rem; 
    max-width: 600px;
    margin-bottom: 60px;
}

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

.card {
    background: var(--surface-color);
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.card:hover { 
    border-color: var(--accent-cyan); 
    transform: translateY(-5px);
}

.card h3 { font-size: 1.25rem; margin-bottom: 16px; color: #fff; }
.card p { font-size: 1rem; color: var(--text-muted); }

/* --- FOOTER --- */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-link {
    color: var(--text-main);
    font-weight: bold;
    border-bottom: 1px solid var(--accent-cyan);
    padding-bottom: 2px;
}
.contact-link:hover { color: var(--accent-cyan); }

/* --- RESPONSIVE GLOBAL --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero { padding: 60px 0; }
    .cta-group { flex-direction: column; }
    .btn { width: 100%; }
}

/* =========================================
   MANIFESTO STYLES (NO OVERLAP FIX)
   ========================================= */

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px;
    display: block; /* Asegura comportamiento de bloque estándar */
}

/* EL CONTENEDOR DEL TÍTULO */
.article-header {
    display: block;
    width: 100%;
    height: auto; /* CRÍTICO: Permite que crezca según el texto */
    min-height: 200px; /* Altura mínima */
    margin-bottom: 80px; /* Margen gigante para separar del texto */
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    position: relative; /* Mantiene el flujo normal */
}

.article-meta {
    color: var(--accent-gold); /* DORADO para los metadatos */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
}

/* EL TÍTULO (H1) */
.article-header h1 {
    font-size: 4rem;       /* Grande e impactante */
    line-height: 1.2;      /* Espacio entre líneas del propio título */
    margin-top: 0;
    margin-bottom: 0;      /* El margen lo maneja el padre (.article-header) */
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
}

/* EL TEXTO CIAN */
.article-header .highlight {
    color: var(--accent-cyan);
    display: inline-block; /* Evita roturas raras */
}

/* EL CUERPO DEL TEXTO (Párrafos) */
.article-body {
    display: block;
    position: relative;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #dddddd;
    font-weight: 300;
    margin-top: 20px; /* Espacio extra de seguridad */
}

/* Resto de estilos de texto... */
.article-body h2 { color: #fff; margin-top: 60px; margin-bottom: 20px; font-size: 1.8rem; }
.article-body p { margin-bottom: 25px; }
.article-body ul { margin-bottom: 25px; padding-left: 20px; }
.article-body li { margin-bottom: 10px; }
.highlight-box { 
    border-left: 4px solid var(--accent-gold); /* Cita con borde DORADO */
    padding: 20px 30px; 
    margin: 40px 0; 
    font-style: italic; 
    color: #ffffff; 
    font-size: 1.2rem; 
    background: rgba(255, 193, 7, 0.05); /* Fondo dorado sutil */
}

/* AJUSTE MÓVIL */
@media (max-width: 768px) {
    .article-header h1 { font-size: 2.5rem; line-height: 1.3; }
    .article-header { margin-bottom: 50px; }
}
