@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@600;700;800&family=Lato:wght@300;400;500;600&display=swap');

:root {
    --primary: #1a3a5c;
    --primary-light: #2457a0;
    --accent: #f4a020;
    --accent-dark: #d4870a;
    --bg: #f0f4fa;
    --surface: #ffffff;
    --text: #1e2a38;
    --text-muted: #5a6e85;
}

/* ── Body ── */
body {
    font-family: 'Lato', sans-serif;
    background: var(--bg);
    margin: 0;
    padding: 60px 20px;
    color: var(--text);
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

/* Decorative blobs (igual que tu login) */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .15;
    pointer-events: none;
    z-index: 0;
}

body::before {
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    top: -150px;
    left: -150px;
}

body::after {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -120px;
    right: -120px;
}

/* ── Container ── */
.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: auto;
    background: var(--surface);
    padding: 50px;
    border-radius: 24px;
    box-shadow:
        0 6px 12px rgba(0,0,0,.05),
        0 25px 60px rgba(26,58,92,.15);
    animation: fadeIn .6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Headings ── */
h1 {
    font-family: 'Raleway', sans-serif;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.9rem;
    margin-bottom: 8px;
}

h2 {
    font-family: 'Raleway', sans-serif;
    margin-top: 35px;
    color: var(--primary-light);
    font-size: 1.2rem;
    font-weight: 700;
    border-left: 4px solid var(--accent);
    padding-left: 12px;
}

/* ── Text ── */
p {
    margin-top: 12px;
    font-size: .95rem;
    color: var(--text);
}

ul {
    margin-top: 12px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    font-size: .95rem;
    color: var(--text-muted);
}

/* ── Fecha ── */
.fecha {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-weight: 500;
}

/* ── Divider elegante ── */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #dde5f0, transparent);
    margin: 30px 0;
}

/* ── Botón Volver ── */
.btn-volver {
    display: inline-block;
    margin-top: 45px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: .04em;
    box-shadow: 0 6px 20px rgba(26,58,92,.3);
    transition: transform .2s, box-shadow .2s;
}

.btn-volver:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(26,58,92,.4);
}