@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

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

body {
    background-color: #030d14;
    color: #a4cbd6;
    line-height: 1.9;
    font-family: 'Crimson Text', Georgia, serif;
    -webkit-font-smoothing: antialiased;
}

.contenedor {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    position: relative;
    z-index: 1;
}

header {
    background: #051622;
    border-bottom: 1px solid #00dae6;
    box-shadow: 0 4px 30px rgba(0, 218, 230, 0.1);
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #00dae6;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 218, 230, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    color: #538092;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

nav a:hover {
    color: #26e653;
    text-shadow: 0 0 8px rgba(38, 230, 83, 0.5);
}

.contenedor-imagen-principal {
    max-width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(0, 218, 230, 0.3);
}

.imagen-hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.75;
    filter: brightness(0.85) contrast(1.1);
}

.seccion-intro h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    color: #00dae6;
    line-height: 1.15;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -1px;
    text-shadow: 0 0 15px rgba(0, 218, 230, 0.3);
}

.subtitulo {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: #26e653;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.divisor {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #00dae6, transparent);
    margin: 40px 0;
}

.texto-informativo {
    font-size: 1.35rem;
    color: #8bb3c2;
    text-align: justify;
    font-style: italic;
    font-weight: 400;
    line-height: 1.8;
}

.texto-informativo::first-letter {
    font-family: 'Cinzel', serif;
    font-size: 4.2rem;
    float: left;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 4px;
    color: #00dae6;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 218, 230, 0.4);
}

.seccion-subtemas {
    margin-top: 100px;
}

.seccion-subtemas h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #26e653;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(38, 230, 83, 0.2);
}

.bloque-informativo {
    background: transparent;
    padding: 0;
    margin-bottom: 80px;
    border: none;
}

.bloque-informativo h3 {
    font-family: 'Cinzel', serif;
    color: #00dae6;
    margin-bottom: 24px;
    font-size: 1.3rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(0, 218, 230, 0.2);
    padding-bottom: 10px;
}

.bloque-informativo p {
    font-size: 1.2rem;
    color: #8bb3c2;
    margin-bottom: 20px;
    text-align: justify;
}

.bloque-informativo strong {
    color: #26e653;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    display: block;
    margin-top: 30px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.seccion-linea {
    margin: 100px 0 40px;
    border-top: 1px solid rgba(0, 218, 230, 0.2);
    padding-top: 60px;
}

.seccion-linea h2 {
    font-family: 'Cinzel', serif;
    color: #00dae6;
    margin-bottom: 60px;
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
}

.contenedor-linea {
    position: relative;
    padding-left: 40px;
}

.linea-eje {
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00dae6, rgba(38, 230, 83, 0.3));
}

.hito {
    position: relative;
    margin-bottom: 50px;
}

.hito:last-child {
    margin-bottom: 0;
}

.hito-punto {
    position: absolute;
    left: -40px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #26e653;
    box-shadow: 0 0 10px #26e653;
    border: 2px solid #030d14;
}

.hito-contenido h4 {
    font-family: 'Cinzel', serif;
    color: #00dae6;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.hito-contenido h5 {
    font-family: 'Cinzel', serif;
    color: #26e653;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hito-contenido p {
    font-size: 1.15rem;
    color: #8bb3c2;
    text-align: justify;
}

.seccion-tabla {
    margin: 100px 0 40px;
    border-top: 1px solid rgba(0, 218, 230, 0.2);
    padding-top: 60px;
}

.seccion-tabla h2 {
    font-family: 'Cinzel', serif;
    color: #00dae6;
    margin-bottom: 40px;
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
}

.contenedor-tabla {
    width: 100%;
    overflow-x: auto;
    border: 1px solid rgba(0, 218, 230, 0.15);
    background: rgba(5, 22, 34, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1.1rem;
}

th, td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 218, 230, 0.1);
}

th {
    font-family: 'Cinzel', serif;
    color: #26e653;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 218, 230, 0.04);
    border-bottom: 2px solid #00dae6;
}

td {
    color: #8bb3c2;
}

tr:hover td {
    color: #ffffff;
    background: rgba(0, 218, 230, 0.02);
}

.seccion-fuentes {
    margin-top: 100px;
    border-top: 1px solid rgba(0, 218, 230, 0.2);
    padding-top: 60px;
}

.seccion-fuentes h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #00dae6;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.fuentes-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fuente-card {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.fuente-card .fuente-num {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    color: #26e653;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    min-width: 80px;
    padding-top: 4px;
}

.fuente-card p {
    font-size: 1.05rem;
    color: #79a4b5;
    line-height: 1.6;
}