/* ====== ESTILO GENERAL ====== */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0f172a;
    color: white;
}

/* ====== HERO SUPERIOR ====== */
.cv-hero {
    text-align: center;
    padding: 20px 20px 80px 20px;
    background: #111c36;
}

.cv-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.cv-hero h1::after {
    content: "";
    display: block;
    width: 60%;
    height: 3px;
    background: #ffd54f;
    margin: 10px auto 0 auto;
    border-radius: 10px;
}

.cv-hero p {
    max-width: 700px;
    margin: 20px auto 0 auto;
    color: #cbd5e1;
    line-height: 1.7;
}

/* ====== CONTENEDOR ====== */
.cv-container {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

/* ====== VISOR PDF ====== */
.cv-viewer {
    background: #1e293b;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.cv-viewer iframe {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    border: none;
}

/* ====== BOTÓN ====== */
.actions {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    background: #ffd54f;
    color: black;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    background: #ffca28;
    transform: translateY(-3px);
}

/* ====== SEPARACIÓN CON FOOTER ====== */
footer {
    margin-top: 80px;
}