
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff; 
    color: #333333;
    padding-top: 30px;        
}

.sitio-contenedor {
    width: 90%;
    max-width: 1100px;       
    margin: 0 auto;          
}

.bloque-encabezado {
    width: 100%;
    background-color: #0f364a; /* Azul marino */
    color: #ffffff;
    padding: 40px;
    border-radius: 6px;      
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 5px solid #f29111; 
    margin-bottom: 40px;
}

.nombre-persona {
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 700;
}

.puesto-persona {
    font-size: 14px;
    color: #f29111;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 5px;
}

.bloque-contacto {
    text-align: right;
    font-size: 13px;
    line-height: 1.6;
}

.dato-contacto {
    color: #d1dbe0;
}


.seccion-sobre-mi {
    margin-bottom: 40px;
    padding: 10px 0;
}

.texto-descripcion {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    text-align: justify;
}

.cuerpo-columnas {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.columna-izquierda {
    width: 65%;
}

.columna-derecha {
    width: 35%;
}


.titulo-bloque {
    font-size: 16px;
    color: #0f364a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 6px;
    border-bottom: 2px solid #e0e0e0;
}

.seccion-cuerpo {
    margin-bottom: 35px;
}

.item-historial {
    margin-bottom: 20px;
}

.cargo-empresa {
    font-size: 15px;
    color: #111111;
    font-weight: bold;
}

.detalles-historial {
    font-size: 12px;
    color: #777777;
    margin-bottom: 8px;
}

.lista-tareas {
    padding-left: 20px;
    font-size: 13.5px;
    color: #4c555a;
    line-height: 1.6;
}

.lista-tareas li {
    margin-bottom: 4px;
}


.subtitulo-habilidad {
    font-size: 12px;
    color: #777777;
    margin: 15px 0 8px 0;
    text-transform: uppercase;
}

.etiqueta-contenedor {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.etiqueta {
    background-color: #e9f0f4;
    color: #0f364a;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}


.item-idioma {
    margin-bottom: 15px;
}

.nombre-idioma {
    font-size: 13px;
    color: #444444;
    margin-bottom: 5px;
}

.linea-nivel {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
}

.nivel-lleno {
    height: 100%;
    background-color: #0f364a;
    border-radius: 3px;
}


@media (max-width: 768px) {
    .bloque-encabezado {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .bloque-contacto {
        text-align: center;
    }
    .cuerpo-columnas {
        flex-direction: column;
        gap: 30px;
    }
    .columna-izquierda, .columna-derecha {
        width: 100%;
    }
}
.boton-primario {
    background-color: #0056b3; /* Puedes cambiar este color por el tono principal de tu CV */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.boton-primario:hover {
    background-color: #004085; /* Un tono más oscuro cuando pasas el cursor */
}