body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #e5e5e5; /* Fondo tipo hardboard */
    color: #333;
    ;
}

/* Contenedor principal estilo tarjeta */
.container {
    max-width: 900px;
    margin: 50px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 
        0 4px 10px rgba(0,0,0,0.15),
        0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #dcdcdc;
}

/* Títulos */
h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #1f2d3d;
}

h2 {
    text-align: center;
    font-size: 22px;
    margin-top: 30px;
    color: #2c3e50;
    border-left: 5px solid #2c3e50;
    padding-left: 10px;
}

/* Secciones */
.section {
    margin-bottom: 35px;
}

/* Chips de habilidades */
.skills span {
    display: inline-block;
    background: #f0f0f0;
    padding: 8px 14px;
    margin: 5px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid #d0d0d0;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

/* Enlaces */
a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}
a:hover {
    text-decoration: underline;
}

/* Botón flotante de idioma */
.language-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1f2d3d;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    z-index: 999;
}
.language-switch a {
    color: white;
    font-weight: bold;
}
.language-switch a:hover {
    text-decoration: underline;
}

.download_pdf {
    position: fixed;
    top: 70px;
    right: 20px;
    background: #1f2d3d;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    z-index: 999;
}
.download_pdf a {
    color: white;
    font-weight: bold;
}
.download_pdf a:hover {
    text-decoration: underline;
}

hr {
    border: 1px solid #2c3e50;
    margin: 1px 1;
}

